Add support for Universal Dependency annotations
Change-Id: I2d55192cdc2c442aa27a6c600ae989771c2c7898
diff --git a/Changes b/Changes
index 9693f7d..f3cb76f 100644
--- a/Changes
+++ b/Changes
@@ -1,3 +1,6 @@
+ - Support for UDPipe POS, lemma and dependency
+ annotations (kupietz).
+
0.48 2022-11-15
- Improve support for text siglen including
underscore in corpus parts.
diff --git a/lib/KorAP/XML/Annotation/UDPipe/Dependency.pm b/lib/KorAP/XML/Annotation/UDPipe/Dependency.pm
new file mode 100644
index 0000000..10a05ad
--- /dev/null
+++ b/lib/KorAP/XML/Annotation/UDPipe/Dependency.pm
@@ -0,0 +1,105 @@
+package KorAP::XML::Annotation::UDPipe::Dependency;
+use KorAP::XML::Annotation::Base;
+use strict;
+use warnings;
+
+sub parse {
+ my $self = shift;
+
+ # TODO: Create UD tree here - for indirect dependency
+ # >>:xip/d:SUBJ<i>566<i>789
+
+ # Relation data
+ $$self->add_tokendata(
+ foundry => 'ud',
+ layer => 'dependency',
+ cb => sub {
+ my ($stream, $source, $tokens) = @_;
+
+ # Get MultiTermToken from stream for source
+ my $mtt = $stream->pos($source->get_pos);
+
+ # Serialized information from token
+ my $content = $source->get_hash;
+
+ # Get relation information
+ my $rel = $content->{rel};
+ $rel = [$rel] unless ref $rel eq 'ARRAY';
+
+ my $mt;
+
+ # Iterate over relations
+ foreach (@$rel) {
+ my $label = $_->{-label};
+
+ #my $target = $stream->tui($source->pos);
+ my $from = $_->{span}->{-from};
+ my $to = $_->{span}->{-to};
+
+ # Target
+ my $target = $tokens->token($from, $to);
+
+ # Relation is term-to-term with a found target!
+ if ($target) {
+
+ # Unary means, it refers to itself!
+ $mt = $mtt->add_by_term('>:ud/d:' . $label);
+ $mt->set_pti(32); # term-to-term relation
+ $mt->set_payload(
+ '<i>' . $target->get_pos # . # right part token position
+ # '<s>0' . # $source_term->tui . # left part tui
+ # '<s>0' # . $target_term->tui # right part tui
+ );
+
+ my $target_mtt = $stream->pos($target->get_pos);
+
+ $mt = $target_mtt->add_by_term('<:ud/d:' . $label);
+ $mt->set_pti(32); # term-to-term relation
+ $mt->set_payload(
+ '<i>' . $source->get_pos # . # left part token position
+ # '<s>0' . # $source_term->tui . # left part tui
+ # '<s>0' # . $target_term->tui # right part tui
+ );
+ }
+
+ # Relation is possibly term-to-element with a found target!
+ elsif ($target = $tokens->span($from, $to)) {
+ $mt = $mtt->add_by_term('>:ud/d:' . $label);
+ $mt->set_pti(33); # term-to-element relation
+ $mt->set_payload(
+ '<i>' . $target->get_o_start . # end position
+ '<i>' . $target->get_o_end . # end position
+ '<i>' . $target->get_p_start . # right part start position
+ '<i>' . $target->get_p_end # . # right part end position
+ # '<s>0' . # $source_term->tui . # left part tui
+ # '<s>0' # . $target_span->tui # right part tui
+ );
+
+ my $target_mtt = $stream->pos($target->get_p_start);
+ $mt = $target_mtt->add_by_term('<:ud/d:' . $label);
+ $mt->set_pti(34); # element-to-term relation
+ $mt->set_payload(
+ '<i>' . $target->get_o_start . # end position
+ '<i>' . $target->get_o_end . # end position
+ '<i>' . $target->get_p_end . # right part end position
+ '<i>' . $source->get_pos # . # left part token position
+ # '<s>0' . # $source_term->tui . # left part tui
+ # '<s>0' # . $target_span->tui # right part tui
+ );
+ }
+ else {
+ use Data::Dumper;
+ $$self->log->warn('Relation currently not supported: ' . Dumper($content));
+ };
+ };
+ }) or return;
+
+ return 1;
+};
+
+sub layer_info {
+ ['ud/d=rels']
+};
+
+
+1;
diff --git a/lib/KorAP/XML/Annotation/UDPipe/Morpho.pm b/lib/KorAP/XML/Annotation/UDPipe/Morpho.pm
new file mode 100644
index 0000000..3c80b87
--- /dev/null
+++ b/lib/KorAP/XML/Annotation/UDPipe/Morpho.pm
@@ -0,0 +1,56 @@
+package KorAP::XML::Annotation::UDPipe::Morpho;
+use KorAP::XML::Annotation::Base;
+
+sub parse {
+ my $self = shift;
+
+ $$self->add_tokendata(
+ foundry => 'ud',
+ layer => 'morpho',
+ cb => sub {
+ my ($stream, $token) = @_;
+ my $mtt = $stream->pos($token->get_pos);
+
+ my $content = $token->get_hash->{fs}->{f};
+
+ my $found;
+
+ # If no array - make array
+ my $fs_array = ref($content->{fs}->{f}) eq 'ARRAY' ?
+ $content->{fs}->{f} : [$content->{fs}->{f}];
+
+ foreach my $f (@$fs_array) {
+
+ # pos tag
+ if (($f->{-name} eq 'pos') &&
+ ($found = $f->{'#text'})) {
+ $mtt->add_by_term('ud/p:' . $found);
+ }
+
+ # lemma tag
+ elsif (($f->{-name} eq 'lemma') &&
+ ($found = $f->{'#text'})) {
+ $mtt->add_by_term('ud/l:' . $found);
+ }
+
+ # msd tag
+ elsif ($f->{-name} eq 'msd' &&
+ ($found = $f->{'#text'})) {
+
+ # Split all values
+ foreach (split '\|', $found) {
+ my ($x, $y) = split "=", lc($_);
+ # case, tense, number, mood, person, degree, gender
+ $mtt->add_by_term('ud/m:' . $x . ($y ? ':' . $y : ''));
+ };
+ };
+ };
+ }) or return;
+ return 1;
+};
+
+sub layer_info {
+ ['ud/p=tokens', 'ud/l=tokens', 'ud/m=tokens']
+}
+
+1;
diff --git a/lib/KorAP/XML/Meta/I5.pm b/lib/KorAP/XML/Meta/I5.pm
index a675e4f..14999b8 100644
--- a/lib/KorAP/XML/Meta/I5.pm
+++ b/lib/KorAP/XML/Meta/I5.pm
@@ -242,7 +242,7 @@
# text title
elsif ($type eq 'text') {
unless ($self->{T_title}) {
- if ($titles = $dom->find('fileDesc > titleStmt > t\.title')) {
+ if ($titles = $dom->find('fileDesc > titleStmt > t\.title, fileDesc > titleStmt > title')) {
if ($lang) {
$title = $titles->first(sub{ $_->attr('xml:lang') && lc($_->attr('xml:lang')) eq lc($lang) });
};
diff --git a/script/korapxml2krill b/script/korapxml2krill
old mode 100644
new mode 100755
index 7e19644..f443615
--- a/script/korapxml2krill
+++ b/script/korapxml2krill
@@ -512,6 +512,11 @@
['TreeTagger', 'Morpho'],
['TreeTagger', 'Sentences']);
+# UDPipe
+push(@layers,
+ ['UDPipe', 'Morpho'],
+ ['UDPipe', 'Dependency']);
+
# XIP
push(@layers,
['XIP', 'Morpho'],
diff --git a/t/real/corpus/ICCGER/DeReKo-WPD17/A00-82293/base/tokens.xml b/t/real/corpus/ICCGER/DeReKo-WPD17/A00-82293/base/tokens.xml
new file mode 100644
index 0000000..aa825bd
--- /dev/null
+++ b/t/real/corpus/ICCGER/DeReKo-WPD17/A00-82293/base/tokens.xml
@@ -0,0 +1,2207 @@
+<?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="ICCGER_DeReKo-WPD17.A00-82293"
+ xmlns="http://ids-mannheim.de/ns/KorAP"
+ version="KorAP-0.4">
+ <spanList>
+ <span id="t_0" from="0" to="2" />
+ <span id="t_1" from="3" to="6" />
+ <span id="t_2" from="7" to="11" />
+ <span id="t_3" from="12" to="19" />
+ <span id="t_4" from="19" to="20" />
+ <span id="t_5" from="21" to="24" />
+ <span id="t_6" from="25" to="41" />
+ <span id="t_7" from="42" to="51" />
+ <span id="t_8" from="52" to="57" />
+ <span id="t_9" from="58" to="67" />
+ <span id="t_10" from="68" to="74" />
+ <span id="t_11" from="75" to="78" />
+ <span id="t_12" from="79" to="84" />
+ <span id="t_13" from="85" to="94" />
+ <span id="t_14" from="95" to="100" />
+ <span id="t_15" from="101" to="105" />
+ <span id="t_16" from="106" to="111" />
+ <span id="t_17" from="112" to="119" />
+ <span id="t_18" from="120" to="124" />
+ <span id="t_19" from="125" to="130" />
+ <span id="t_20" from="131" to="133" />
+ <span id="t_21" from="134" to="144" />
+ <span id="t_22" from="144" to="145" />
+ <span id="t_23" from="146" to="150" />
+ <span id="t_24" from="151" to="157" />
+ <span id="t_25" from="158" to="165" />
+ <span id="t_26" from="166" to="172" />
+ <span id="t_27" from="173" to="176" />
+ <span id="t_28" from="177" to="190" />
+ <span id="t_29" from="191" to="201" />
+ <span id="t_30" from="202" to="206" />
+ <span id="t_31" from="207" to="214" />
+ <span id="t_32" from="215" to="226" />
+ <span id="t_33" from="227" to="237" />
+ <span id="t_34" from="238" to="241" />
+ <span id="t_35" from="242" to="247" />
+ <span id="t_36" from="248" to="252" />
+ <span id="t_37" from="253" to="264" />
+ <span id="t_38" from="265" to="272" />
+ <span id="t_39" from="273" to="283" />
+ <span id="t_40" from="283" to="284" />
+ <span id="t_41" from="285" to="288" />
+ <span id="t_42" from="289" to="295" />
+ <span id="t_43" from="296" to="301" />
+ <span id="t_44" from="302" to="306" />
+ <span id="t_45" from="307" to="327" />
+ <span id="t_46" from="328" to="330" />
+ <span id="t_47" from="331" to="352" />
+ <span id="t_48" from="352" to="353" />
+ <span id="t_49" from="354" to="358" />
+ <span id="t_50" from="359" to="362" />
+ <span id="t_51" from="363" to="373" />
+ <span id="t_52" from="374" to="384" />
+ <span id="t_53" from="385" to="390" />
+ <span id="t_54" from="391" to="407" />
+ <span id="t_55" from="408" to="419" />
+ <span id="t_56" from="419" to="420" />
+ <span id="t_57" from="421" to="425" />
+ <span id="t_58" from="426" to="431" />
+ <span id="t_59" from="432" to="435" />
+ <span id="t_60" from="436" to="446" />
+ <span id="t_61" from="447" to="450" />
+ <span id="t_62" from="451" to="457" />
+ <span id="t_63" from="458" to="462" />
+ <span id="t_64" from="463" to="475" />
+ <span id="t_65" from="476" to="483" />
+ <span id="t_66" from="483" to="484" />
+ <span id="t_67" from="485" to="491" />
+ <span id="t_68" from="492" to="499" />
+ <span id="t_69" from="500" to="503" />
+ <span id="t_70" from="504" to="514" />
+ <span id="t_71" from="515" to="518" />
+ <span id="t_72" from="519" to="534" />
+ <span id="t_73" from="534" to="535" />
+ <span id="t_74" from="536" to="540" />
+ <span id="t_75" from="541" to="545" />
+ <span id="t_76" from="546" to="559" />
+ <span id="t_77" from="560" to="576" />
+ <span id="t_78" from="577" to="587" />
+ <span id="t_79" from="588" to="592" />
+ <span id="t_80" from="592" to="593" />
+ <span id="t_81" from="594" to="606" />
+ <span id="t_82" from="607" to="610" />
+ <span id="t_83" from="611" to="623" />
+ <span id="t_84" from="624" to="629" />
+ <span id="t_85" from="630" to="640" />
+ <span id="t_86" from="641" to="648" />
+ <span id="t_87" from="649" to="661" />
+ <span id="t_88" from="662" to="675" />
+ <span id="t_89" from="676" to="680" />
+ <span id="t_90" from="681" to="685" />
+ <span id="t_91" from="686" to="693" />
+ <span id="t_92" from="693" to="694" />
+ <span id="t_93" from="695" to="698" />
+ <span id="t_94" from="699" to="702" />
+ <span id="t_95" from="703" to="711" />
+ <span id="t_96" from="711" to="712" />
+ <span id="t_97" from="713" to="716" />
+ <span id="t_98" from="717" to="731" />
+ <span id="t_99" from="732" to="737" />
+ <span id="t_100" from="738" to="745" />
+ <span id="t_101" from="746" to="754" />
+ <span id="t_102" from="754" to="755" />
+ <span id="t_103" from="756" to="761" />
+ <span id="t_104" from="762" to="766" />
+ <span id="t_105" from="767" to="777" />
+ <span id="t_106" from="778" to="781" />
+ <span id="t_107" from="781" to="782" />
+ <span id="t_108" from="784" to="800" />
+ <span id="t_109" from="801" to="807" />
+ <span id="t_110" from="810" to="820" />
+ <span id="t_111" from="821" to="831" />
+ <span id="t_112" from="833" to="837" />
+ <span id="t_113" from="837" to="838" />
+ <span id="t_114" from="838" to="846" />
+ <span id="t_115" from="846" to="847" />
+ <span id="t_116" from="847" to="850" />
+ <span id="t_117" from="850" to="851" />
+ <span id="t_118" from="851" to="861" />
+ <span id="t_119" from="862" to="872" />
+ <span id="t_120" from="873" to="880" />
+ <span id="t_121" from="880" to="881" />
+ <span id="t_122" from="881" to="892" />
+ <span id="t_123" from="892" to="893" />
+ <span id="t_124" from="894" to="901" />
+ <span id="t_125" from="902" to="906" />
+ <span id="t_126" from="906" to="907" />
+ <span id="t_127" from="907" to="915" />
+ <span id="t_128" from="915" to="916" />
+ <span id="t_129" from="916" to="919" />
+ <span id="t_130" from="919" to="920" />
+ <span id="t_131" from="920" to="923" />
+ <span id="t_132" from="924" to="927" />
+ <span id="t_133" from="928" to="937" />
+ <span id="t_134" from="938" to="945" />
+ <span id="t_135" from="946" to="949" />
+ <span id="t_136" from="949" to="950" />
+ <span id="t_137" from="951" to="957" />
+ <span id="t_138" from="958" to="963" />
+ <span id="t_139" from="964" to="976" />
+ <span id="t_140" from="977" to="985" />
+ <span id="t_141" from="986" to="988" />
+ <span id="t_142" from="989" to="994" />
+ <span id="t_143" from="995" to="1006" />
+ <span id="t_144" from="1007" to="1029" />
+ <span id="t_145" from="1030" to="1036" />
+ <span id="t_146" from="1036" to="1037" />
+ <span id="t_147" from="1038" to="1041" />
+ <span id="t_148" from="1042" to="1047" />
+ <span id="t_149" from="1048" to="1051" />
+ <span id="t_150" from="1052" to="1058" />
+ <span id="t_151" from="1059" to="1067" />
+ <span id="t_152" from="1068" to="1079" />
+ <span id="t_153" from="1080" to="1101" />
+ <span id="t_154" from="1102" to="1105" />
+ <span id="t_155" from="1106" to="1117" />
+ <span id="t_156" from="1117" to="1118" />
+ <span id="t_157" from="1119" to="1122" />
+ <span id="t_158" from="1123" to="1133" />
+ <span id="t_159" from="1134" to="1144" />
+ <span id="t_160" from="1144" to="1145" />
+ <span id="t_161" from="1146" to="1150" />
+ <span id="t_162" from="1151" to="1165" />
+ <span id="t_163" from="1166" to="1170" />
+ <span id="t_164" from="1171" to="1190" />
+ <span id="t_165" from="1191" to="1198" />
+ <span id="t_166" from="1198" to="1199" />
+ <span id="t_167" from="1200" to="1203" />
+ <span id="t_168" from="1204" to="1207" />
+ <span id="t_169" from="1208" to="1221" />
+ <span id="t_170" from="1222" to="1232" />
+ <span id="t_171" from="1232" to="1233" />
+ <span id="t_172" from="1234" to="1238" />
+ <span id="t_173" from="1239" to="1251" />
+ <span id="t_174" from="1252" to="1263" />
+ <span id="t_175" from="1264" to="1268" />
+ <span id="t_176" from="1269" to="1272" />
+ <span id="t_177" from="1273" to="1281" />
+ <span id="t_178" from="1282" to="1293" />
+ <span id="t_179" from="1294" to="1297" />
+ <span id="t_180" from="1298" to="1301" />
+ <span id="t_181" from="1302" to="1311" />
+ <span id="t_182" from="1312" to="1317" />
+ <span id="t_183" from="1318" to="1328" />
+ <span id="t_184" from="1329" to="1342" />
+ <span id="t_185" from="1343" to="1347" />
+ <span id="t_186" from="1348" to="1351" />
+ <span id="t_187" from="1352" to="1361" />
+ <span id="t_188" from="1362" to="1367" />
+ <span id="t_189" from="1368" to="1371" />
+ <span id="t_190" from="1372" to="1378" />
+ <span id="t_191" from="1379" to="1384" />
+ <span id="t_192" from="1385" to="1388" />
+ <span id="t_193" from="1389" to="1396" />
+ <span id="t_194" from="1397" to="1409" />
+ <span id="t_195" from="1410" to="1415" />
+ <span id="t_196" from="1415" to="1416" />
+ <span id="t_197" from="1417" to="1420" />
+ <span id="t_198" from="1421" to="1427" />
+ <span id="t_199" from="1428" to="1433" />
+ <span id="t_200" from="1434" to="1439" />
+ <span id="t_201" from="1440" to="1442" />
+ <span id="t_202" from="1443" to="1448" />
+ <span id="t_203" from="1449" to="1454" />
+ <span id="t_204" from="1455" to="1463" />
+ <span id="t_205" from="1463" to="1464" />
+ <span id="t_206" from="1465" to="1467" />
+ <span id="t_207" from="1468" to="1479" />
+ <span id="t_208" from="1480" to="1483" />
+ <span id="t_209" from="1484" to="1487" />
+ <span id="t_210" from="1488" to="1498" />
+ <span id="t_211" from="1499" to="1503" />
+ <span id="t_212" from="1504" to="1511" />
+ <span id="t_213" from="1511" to="1512" />
+ <span id="t_214" from="1513" to="1521" />
+ <span id="t_215" from="1522" to="1527" />
+ <span id="t_216" from="1528" to="1531" />
+ <span id="t_217" from="1532" to="1538" />
+ <span id="t_218" from="1539" to="1547" />
+ <span id="t_219" from="1547" to="1548" />
+ <span id="t_220" from="1549" to="1552" />
+ <span id="t_221" from="1553" to="1565" />
+ <span id="t_222" from="1567" to="1570" />
+ <span id="t_223" from="1571" to="1582" />
+ <span id="t_224" from="1583" to="1590" />
+ <span id="t_225" from="1591" to="1595" />
+ <span id="t_226" from="1596" to="1599" />
+ <span id="t_227" from="1600" to="1616" />
+ <span id="t_228" from="1617" to="1622" />
+ <span id="t_229" from="1623" to="1627" />
+ <span id="t_230" from="1628" to="1634" />
+ <span id="t_231" from="1635" to="1643" />
+ <span id="t_232" from="1644" to="1651" />
+ <span id="t_233" from="1651" to="1652" />
+ <span id="t_234" from="1654" to="1659" />
+ <span id="t_235" from="1660" to="1663" />
+ <span id="t_236" from="1665" to="1668" />
+ <span id="t_237" from="1669" to="1680" />
+ <span id="t_238" from="1680" to="1681" />
+ <span id="t_239" from="1682" to="1685" />
+ <span id="t_240" from="1686" to="1689" />
+ <span id="t_241" from="1690" to="1693" />
+ <span id="t_242" from="1694" to="1700" />
+ <span id="t_243" from="1701" to="1703" />
+ <span id="t_244" from="1704" to="1707" />
+ <span id="t_245" from="1708" to="1714" />
+ <span id="t_246" from="1715" to="1723" />
+ <span id="t_247" from="1723" to="1724" />
+ <span id="t_248" from="1725" to="1728" />
+ <span id="t_249" from="1730" to="1737" />
+ <span id="t_250" from="1738" to="1744" />
+ <span id="t_251" from="1745" to="1748" />
+ <span id="t_252" from="1749" to="1760" />
+ <span id="t_253" from="1761" to="1771" />
+ <span id="t_254" from="1772" to="1777" />
+ <span id="t_255" from="1778" to="1785" />
+ <span id="t_256" from="1786" to="1788" />
+ <span id="t_257" from="1788" to="1789" />
+ <span id="t_258" from="1791" to="1794" />
+ <span id="t_259" from="1795" to="1798" />
+ <span id="t_260" from="1799" to="1808" />
+ <span id="t_261" from="1809" to="1821" />
+ <span id="t_262" from="1822" to="1825" />
+ <span id="t_263" from="1826" to="1844" />
+ <span id="t_264" from="1844" to="1845" />
+ <span id="t_265" from="1846" to="1855" />
+ <span id="t_266" from="1856" to="1859" />
+ <span id="t_267" from="1860" to="1871" />
+ <span id="t_268" from="1872" to="1882" />
+ <span id="t_269" from="1883" to="1890" />
+ <span id="t_270" from="1891" to="1901" />
+ <span id="t_271" from="1902" to="1906" />
+ <span id="t_272" from="1907" to="1910" />
+ <span id="t_273" from="1911" to="1915" />
+ <span id="t_274" from="1916" to="1924" />
+ <span id="t_275" from="1924" to="1925" />
+ <span id="t_276" from="1926" to="1930" />
+ <span id="t_277" from="1931" to="1944" />
+ <span id="t_278" from="1945" to="1952" />
+ <span id="t_279" from="1952" to="1953" />
+ <span id="t_280" from="1954" to="1956" />
+ <span id="t_281" from="1957" to="1965" />
+ <span id="t_282" from="1966" to="1969" />
+ <span id="t_283" from="1970" to="1979" />
+ <span id="t_284" from="1980" to="1988" />
+ <span id="t_285" from="1989" to="1998" />
+ <span id="t_286" from="1998" to="1999" />
+ <span id="t_287" from="2000" to="2003" />
+ <span id="t_288" from="2004" to="2014" />
+ <span id="t_289" from="2015" to="2023" />
+ <span id="t_290" from="2024" to="2032" />
+ <span id="t_291" from="2033" to="2038" />
+ <span id="t_292" from="2039" to="2041" />
+ <span id="t_293" from="2042" to="2064" />
+ <span id="t_294" from="2064" to="2065" />
+ <span id="t_295" from="2066" to="2072" />
+ <span id="t_296" from="2073" to="2076" />
+ <span id="t_297" from="2077" to="2080" />
+ <span id="t_298" from="2081" to="2087" />
+ <span id="t_299" from="2088" to="2091" />
+ <span id="t_300" from="2092" to="2097" />
+ <span id="t_301" from="2098" to="2114" />
+ <span id="t_302" from="2115" to="2121" />
+ <span id="t_303" from="2122" to="2137" />
+ <span id="t_304" from="2138" to="2146" />
+ <span id="t_305" from="2147" to="2157" />
+ <span id="t_306" from="2157" to="2158" />
+ <span id="t_307" from="2159" to="2161" />
+ <span id="t_308" from="2162" to="2166" />
+ <span id="t_309" from="2167" to="2176" />
+ <span id="t_310" from="2176" to="2177" />
+ <span id="t_311" from="2178" to="2183" />
+ <span id="t_312" from="2184" to="2194" />
+ <span id="t_313" from="2195" to="2205" />
+ <span id="t_314" from="2206" to="2218" />
+ <span id="t_315" from="2219" to="2221" />
+ <span id="t_316" from="2222" to="2227" />
+ <span id="t_317" from="2228" to="2234" />
+ <span id="t_318" from="2235" to="2242" />
+ <span id="t_319" from="2243" to="2253" />
+ <span id="t_320" from="2254" to="2258" />
+ <span id="t_321" from="2258" to="2259" />
+ <span id="t_322" from="2260" to="2262" />
+ <span id="t_323" from="2263" to="2266" />
+ <span id="t_324" from="2267" to="2279" />
+ <span id="t_325" from="2280" to="2283" />
+ <span id="t_326" from="2284" to="2290" />
+ <span id="t_327" from="2291" to="2294" />
+ <span id="t_328" from="2295" to="2300" />
+ <span id="t_329" from="2301" to="2304" />
+ <span id="t_330" from="2305" to="2308" />
+ <span id="t_331" from="2309" to="2316" />
+ <span id="t_332" from="2317" to="2319" />
+ <span id="t_333" from="2320" to="2325" />
+ <span id="t_334" from="2326" to="2334" />
+ <span id="t_335" from="2335" to="2343" />
+ <span id="t_336" from="2343" to="2344" />
+ <span id="t_337" from="2345" to="2348" />
+ <span id="t_338" from="2349" to="2354" />
+ <span id="t_339" from="2355" to="2361" />
+ <span id="t_340" from="2361" to="2362" />
+ <span id="t_341" from="2363" to="2366" />
+ <span id="t_342" from="2367" to="2370" />
+ <span id="t_343" from="2371" to="2381" />
+ <span id="t_344" from="2381" to="2382" />
+ <span id="t_345" from="2382" to="2394" />
+ <span id="t_346" from="2394" to="2395" />
+ <span id="t_347" from="2396" to="2405" />
+ <span id="t_348" from="2406" to="2410" />
+ <span id="t_349" from="2411" to="2425" />
+ <span id="t_350" from="2426" to="2433" />
+ <span id="t_351" from="2434" to="2441" />
+ <span id="t_352" from="2441" to="2442" />
+ <span id="t_353" from="2443" to="2447" />
+ <span id="t_354" from="2448" to="2456" />
+ <span id="t_355" from="2457" to="2460" />
+ <span id="t_356" from="2461" to="2472" />
+ <span id="t_357" from="2473" to="2483" />
+ <span id="t_358" from="2484" to="2490" />
+ <span id="t_359" from="2491" to="2496" />
+ <span id="t_360" from="2497" to="2503" />
+ <span id="t_361" from="2504" to="2513" />
+ <span id="t_362" from="2514" to="2523" />
+ <span id="t_363" from="2524" to="2525" />
+ <span id="t_364" from="2525" to="2530" />
+ <span id="t_365" from="2531" to="2543" />
+ <span id="t_366" from="2544" to="2550" />
+ <span id="t_367" from="2550" to="2551" />
+ <span id="t_368" from="2551" to="2552" />
+ <span id="t_369" from="2553" to="2556" />
+ <span id="t_370" from="2557" to="2562" />
+ <span id="t_371" from="2563" to="2575" />
+ <span id="t_372" from="2576" to="2586" />
+ <span id="t_373" from="2587" to="2592" />
+ <span id="t_374" from="2593" to="2598" />
+ <span id="t_375" from="2599" to="2603" />
+ <span id="t_376" from="2604" to="2617" />
+ <span id="t_377" from="2618" to="2622" />
+ <span id="t_378" from="2623" to="2626" />
+ <span id="t_379" from="2627" to="2630" />
+ <span id="t_380" from="2631" to="2641" />
+ <span id="t_381" from="2642" to="2652" />
+ <span id="t_382" from="2653" to="2659" />
+ <span id="t_383" from="2660" to="2671" />
+ <span id="t_384" from="2671" to="2672" />
+ <span id="t_385" from="2673" to="2683" />
+ <span id="t_386" from="2684" to="2687" />
+ <span id="t_387" from="2688" to="2691" />
+ <span id="t_388" from="2692" to="2701" />
+ <span id="t_389" from="2702" to="2707" />
+ <span id="t_390" from="2708" to="2723" />
+ <span id="t_391" from="2724" to="2741" />
+ <span id="t_392" from="2742" to="2745" />
+ <span id="t_393" from="2746" to="2751" />
+ <span id="t_394" from="2752" to="2760" />
+ <span id="t_395" from="2761" to="2764" />
+ <span id="t_396" from="2765" to="2768" />
+ <span id="t_397" from="2769" to="2778" />
+ <span id="t_398" from="2779" to="2789" />
+ <span id="t_399" from="2790" to="2807" />
+ <span id="t_400" from="2807" to="2808" />
+ <span id="t_401" from="2809" to="2812" />
+ <span id="t_402" from="2813" to="2818" />
+ <span id="t_403" from="2819" to="2826" />
+ <span id="t_404" from="2827" to="2838" />
+ <span id="t_405" from="2839" to="2846" />
+ <span id="t_406" from="2847" to="2853" />
+ <span id="t_407" from="2854" to="2857" />
+ <span id="t_408" from="2858" to="2861" />
+ <span id="t_409" from="2862" to="2870" />
+ <span id="t_410" from="2870" to="2871" />
+ <span id="t_411" from="2872" to="2876" />
+ <span id="t_412" from="2877" to="2881" />
+ <span id="t_413" from="2882" to="2905" />
+ <span id="t_414" from="2906" to="2909" />
+ <span id="t_415" from="2910" to="2915" />
+ <span id="t_416" from="2916" to="2920" />
+ <span id="t_417" from="2920" to="2921" />
+ <span id="t_418" from="2922" to="2925" />
+ <span id="t_419" from="2926" to="2938" />
+ <span id="t_420" from="2939" to="2969" />
+ <span id="t_421" from="2969" to="2970" />
+ <span id="t_422" from="2971" to="2974" />
+ <span id="t_423" from="2975" to="2981" />
+ <span id="t_424" from="2982" to="2985" />
+ <span id="t_425" from="2986" to="2996" />
+ <span id="t_426" from="2997" to="3009" />
+ <span id="t_427" from="3010" to="3016" />
+ <span id="t_428" from="3017" to="3033" />
+ <span id="t_429" from="3034" to="3037" />
+ <span id="t_430" from="3038" to="3056" />
+ <span id="t_431" from="3056" to="3057" />
+ <span id="t_432" from="3058" to="3060" />
+ <span id="t_433" from="3061" to="3064" />
+ <span id="t_434" from="3065" to="3079" />
+ <span id="t_435" from="3080" to="3083" />
+ <span id="t_436" from="3084" to="3091" />
+ <span id="t_437" from="3092" to="3101" />
+ <span id="t_438" from="3102" to="3109" />
+ <span id="t_439" from="3110" to="3124" />
+ <span id="t_440" from="3125" to="3133" />
+ <span id="t_441" from="3134" to="3138" />
+ <span id="t_442" from="3138" to="3139" />
+ <span id="t_443" from="3140" to="3151" />
+ <span id="t_444" from="3152" to="3156" />
+ <span id="t_445" from="3157" to="3159" />
+ <span id="t_446" from="3160" to="3169" />
+ <span id="t_447" from="3169" to="3170" />
+ <span id="t_448" from="3171" to="3179" />
+ <span id="t_449" from="3180" to="3185" />
+ <span id="t_450" from="3186" to="3194" />
+ <span id="t_451" from="3195" to="3198" />
+ <span id="t_452" from="3199" to="3209" />
+ <span id="t_453" from="3210" to="3211" />
+ <span id="t_454" from="3211" to="3218" />
+ <span id="t_455" from="3218" to="3219" />
+ <span id="t_456" from="3219" to="3231" />
+ <span id="t_457" from="3231" to="3232" />
+ <span id="t_458" from="3233" to="3235" />
+ <span id="t_459" from="3236" to="3240" />
+ <span id="t_460" from="3241" to="3245" />
+ <span id="t_461" from="3246" to="3267" />
+ <span id="t_462" from="3267" to="3268" />
+ <span id="t_463" from="3269" to="3275" />
+ <span id="t_464" from="3276" to="3282" />
+ <span id="t_465" from="3283" to="3295" />
+ <span id="t_466" from="3296" to="3304" />
+ <span id="t_467" from="3305" to="3311" />
+ <span id="t_468" from="3311" to="3312" />
+ <span id="t_469" from="3313" to="3320" />
+ <span id="t_470" from="3321" to="3327" />
+ <span id="t_471" from="3328" to="3333" />
+ <span id="t_472" from="3334" to="3342" />
+ <span id="t_473" from="3343" to="3363" />
+ <span id="t_474" from="3364" to="3375" />
+ <span id="t_475" from="3376" to="3381" />
+ <span id="t_476" from="3382" to="3393" />
+ <span id="t_477" from="3393" to="3394" />
+ <span id="t_478" from="3395" to="3398" />
+ <span id="t_479" from="3399" to="3404" />
+ <span id="t_480" from="3405" to="3408" />
+ <span id="t_481" from="3409" to="3414" />
+ <span id="t_482" from="3415" to="3419" />
+ <span id="t_483" from="3420" to="3424" />
+ <span id="t_484" from="3425" to="3430" />
+ <span id="t_485" from="3431" to="3435" />
+ <span id="t_486" from="3436" to="3444" />
+ <span id="t_487" from="3445" to="3455" />
+ <span id="t_488" from="3455" to="3456" />
+ <span id="t_489" from="3456" to="3459" />
+ <span id="t_490" from="3460" to="3465" />
+ <span id="t_491" from="3466" to="3470" />
+ <span id="t_492" from="3471" to="3473" />
+ <span id="t_493" from="3474" to="3477" />
+ <span id="t_494" from="3478" to="3484" />
+ <span id="t_495" from="3485" to="3495" />
+ <span id="t_496" from="3495" to="3496" />
+ <span id="t_497" from="3497" to="3500" />
+ <span id="t_498" from="3501" to="3504" />
+ <span id="t_499" from="3505" to="3509" />
+ <span id="t_500" from="3510" to="3527" />
+ <span id="t_501" from="3528" to="3532" />
+ <span id="t_502" from="3532" to="3533" />
+ <span id="t_503" from="3534" to="3537" />
+ <span id="t_504" from="3538" to="3545" />
+ <span id="t_505" from="3546" to="3552" />
+ <span id="t_506" from="3553" to="3563" />
+ <span id="t_507" from="3564" to="3570" />
+ <span id="t_508" from="3571" to="3573" />
+ <span id="t_509" from="3574" to="3594" />
+ <span id="t_510" from="3595" to="3601" />
+ <span id="t_511" from="3602" to="3612" />
+ <span id="t_512" from="3612" to="3613" />
+ <span id="t_513" from="3614" to="3617" />
+ <span id="t_514" from="3618" to="3623" />
+ <span id="t_515" from="3624" to="3627" />
+ <span id="t_516" from="3628" to="3641" />
+ <span id="t_517" from="3642" to="3651" />
+ <span id="t_518" from="3651" to="3652" />
+ <span id="t_519" from="3653" to="3659" />
+ <span id="t_520" from="3660" to="3676" />
+ <span id="t_521" from="3677" to="3683" />
+ <span id="t_522" from="3684" to="3686" />
+ <span id="t_523" from="3687" to="3702" />
+ <span id="t_524" from="3703" to="3723" />
+ <span id="t_525" from="3724" to="3737" />
+ <span id="t_526" from="3738" to="3747" />
+ <span id="t_527" from="3747" to="3748" />
+ <span id="t_528" from="3749" to="3751" />
+ <span id="t_529" from="3752" to="3759" />
+ <span id="t_530" from="3760" to="3766" />
+ <span id="t_531" from="3767" to="3771" />
+ <span id="t_532" from="3772" to="3776" />
+ <span id="t_533" from="3777" to="3798" />
+ <span id="t_534" from="3799" to="3802" />
+ <span id="t_535" from="3803" to="3807" />
+ <span id="t_536" from="3808" to="3818" />
+ <span id="t_537" from="3819" to="3828" />
+ <span id="t_538" from="3829" to="3837" />
+ <span id="t_539" from="3838" to="3841" />
+ <span id="t_540" from="3842" to="3851" />
+ <span id="t_541" from="3852" to="3859" />
+ <span id="t_542" from="3860" to="3862" />
+ <span id="t_543" from="3863" to="3867" />
+ <span id="t_544" from="3868" to="3879" />
+ <span id="t_545" from="3880" to="3884" />
+ <span id="t_546" from="3885" to="3893" />
+ <span id="t_547" from="3893" to="3894" />
+ <span id="t_548" from="3895" to="3898" />
+ <span id="t_549" from="3899" to="3904" />
+ <span id="t_550" from="3905" to="3908" />
+ <span id="t_551" from="3909" to="3922" />
+ <span id="t_552" from="3923" to="3942" />
+ <span id="t_553" from="3943" to="3949" />
+ <span id="t_554" from="3950" to="3964" />
+ <span id="t_555" from="3965" to="3977" />
+ <span id="t_556" from="3978" to="3982" />
+ <span id="t_557" from="3983" to="3986" />
+ <span id="t_558" from="3987" to="3996" />
+ <span id="t_559" from="3997" to="4004" />
+ <span id="t_560" from="4005" to="4008" />
+ <span id="t_561" from="4009" to="4019" />
+ <span id="t_562" from="4019" to="4020" />
+ <span id="t_563" from="4021" to="4023" />
+ <span id="t_564" from="4024" to="4027" />
+ <span id="t_565" from="4028" to="4043" />
+ <span id="t_566" from="4044" to="4053" />
+ <span id="t_567" from="4054" to="4059" />
+ <span id="t_568" from="4060" to="4064" />
+ <span id="t_569" from="4065" to="4070" />
+ <span id="t_570" from="4071" to="4089" />
+ <span id="t_571" from="4090" to="4099" />
+ <span id="t_572" from="4100" to="4106" />
+ <span id="t_573" from="4106" to="4107" />
+ <span id="t_574" from="4108" to="4114" />
+ <span id="t_575" from="4115" to="4118" />
+ <span id="t_576" from="4119" to="4129" />
+ <span id="t_577" from="4130" to="4140" />
+ <span id="t_578" from="4141" to="4144" />
+ <span id="t_579" from="4145" to="4163" />
+ <span id="t_580" from="4164" to="4172" />
+ <span id="t_581" from="4172" to="4173" />
+ <span id="t_582" from="4174" to="4178" />
+ <span id="t_583" from="4179" to="4185" />
+ <span id="t_584" from="4186" to="4191" />
+ <span id="t_585" from="4192" to="4201" />
+ <span id="t_586" from="4202" to="4205" />
+ <span id="t_587" from="4206" to="4209" />
+ <span id="t_588" from="4210" to="4220" />
+ <span id="t_589" from="4221" to="4227" />
+ <span id="t_590" from="4228" to="4238" />
+ <span id="t_591" from="4239" to="4245" />
+ <span id="t_592" from="4245" to="4246" />
+ <span id="t_593" from="4247" to="4250" />
+ <span id="t_594" from="4251" to="4254" />
+ <span id="t_595" from="4255" to="4264" />
+ <span id="t_596" from="4265" to="4267" />
+ <span id="t_597" from="4268" to="4273" />
+ <span id="t_598" from="4274" to="4285" />
+ <span id="t_599" from="4286" to="4297" />
+ <span id="t_600" from="4298" to="4306" />
+ <span id="t_601" from="4307" to="4310" />
+ <span id="t_602" from="4311" to="4327" />
+ <span id="t_603" from="4327" to="4328" />
+ <span id="t_604" from="4329" to="4335" />
+ <span id="t_605" from="4336" to="4341" />
+ <span id="t_606" from="4342" to="4345" />
+ <span id="t_607" from="4346" to="4351" />
+ <span id="t_608" from="4352" to="4363" />
+ <span id="t_609" from="4363" to="4364" />
+ <span id="t_610" from="4366" to="4379" />
+ <span id="t_611" from="4380" to="4388" />
+ <span id="t_612" from="4389" to="4395" />
+ <span id="t_613" from="4397" to="4401" />
+ <span id="t_614" from="4401" to="4402" />
+ <span id="t_615" from="4402" to="4410" />
+ <span id="t_616" from="4410" to="4411" />
+ <span id="t_617" from="4411" to="4412" />
+ <span id="t_618" from="4412" to="4413" />
+ <span id="t_619" from="4413" to="4426" />
+ <span id="t_620" from="4426" to="4427" />
+ <span id="t_621" from="4428" to="4435" />
+ <span id="t_622" from="4435" to="4436" />
+ <span id="t_623" from="4437" to="4440" />
+ <span id="t_624" from="4441" to="4453" />
+ <span id="t_625" from="4454" to="4463" />
+ <span id="t_626" from="4464" to="4469" />
+ <span id="t_627" from="4470" to="4476" />
+ <span id="t_628" from="4476" to="4477" />
+ <span id="t_629" from="4478" to="4484" />
+ <span id="t_630" from="4485" to="4493" />
+ <span id="t_631" from="4494" to="4504" />
+ <span id="t_632" from="4504" to="4505" />
+ <span id="t_633" from="4506" to="4513" />
+ <span id="t_634" from="4514" to="4518" />
+ <span id="t_635" from="4519" to="4522" />
+ <span id="t_636" from="4523" to="4536" />
+ <span id="t_637" from="4537" to="4548" />
+ <span id="t_638" from="4549" to="4551" />
+ <span id="t_639" from="4552" to="4566" />
+ <span id="t_640" from="4567" to="4568" />
+ <span id="t_641" from="4568" to="4569" />
+ <span id="t_642" from="4569" to="4570" />
+ <span id="t_643" from="4571" to="4574" />
+ <span id="t_644" from="4575" to="4588" />
+ <span id="t_645" from="4589" to="4590" />
+ <span id="t_646" from="4590" to="4591" />
+ <span id="t_647" from="4591" to="4592" />
+ <span id="t_648" from="4592" to="4593" />
+ <span id="t_649" from="4595" to="4608" />
+ <span id="t_650" from="4609" to="4612" />
+ <span id="t_651" from="4613" to="4616" />
+ <span id="t_652" from="4617" to="4630" />
+ <span id="t_653" from="4630" to="4631" />
+ <span id="t_654" from="4632" to="4642" />
+ <span id="t_655" from="4643" to="4646" />
+ <span id="t_656" from="4647" to="4652" />
+ <span id="t_657" from="4653" to="4664" />
+ <span id="t_658" from="4665" to="4675" />
+ <span id="t_659" from="4676" to="4679" />
+ <span id="t_660" from="4680" to="4686" />
+ <span id="t_661" from="4687" to="4689" />
+ <span id="t_662" from="4690" to="4693" />
+ <span id="t_663" from="4694" to="4713" />
+ <span id="t_664" from="4714" to="4728" />
+ <span id="t_665" from="4729" to="4737" />
+ <span id="t_666" from="4737" to="4738" />
+ <span id="t_667" from="4739" to="4744" />
+ <span id="t_668" from="4745" to="4748" />
+ <span id="t_669" from="4749" to="4757" />
+ <span id="t_670" from="4758" to="4769" />
+ <span id="t_671" from="4770" to="4773" />
+ <span id="t_672" from="4774" to="4787" />
+ <span id="t_673" from="4788" to="4803" />
+ <span id="t_674" from="4803" to="4804" />
+ <span id="t_675" from="4805" to="4807" />
+ <span id="t_676" from="4808" to="4816" />
+ <span id="t_677" from="4817" to="4820" />
+ <span id="t_678" from="4821" to="4836" />
+ <span id="t_679" from="4837" to="4838" />
+ <span id="t_680" from="4838" to="4839" />
+ <span id="t_681" from="4839" to="4840" />
+ <span id="t_682" from="4840" to="4841" />
+ <span id="t_683" from="4842" to="4848" />
+ <span id="t_684" from="4849" to="4852" />
+ <span id="t_685" from="4853" to="4866" />
+ <span id="t_686" from="4867" to="4874" />
+ <span id="t_687" from="4874" to="4875" />
+ <span id="t_688" from="4876" to="4879" />
+ <span id="t_689" from="4880" to="4883" />
+ <span id="t_690" from="4884" to="4889" />
+ <span id="t_691" from="4890" to="4904" />
+ <span id="t_692" from="4905" to="4913" />
+ <span id="t_693" from="4913" to="4914" />
+ <span id="t_694" from="4915" to="4932" />
+ <span id="t_695" from="4933" to="4942" />
+ <span id="t_696" from="4943" to="4952" />
+ <span id="t_697" from="4953" to="4956" />
+ <span id="t_698" from="4957" to="4960" />
+ <span id="t_699" from="4961" to="4968" />
+ <span id="t_700" from="4969" to="4972" />
+ <span id="t_701" from="4973" to="4980" />
+ <span id="t_702" from="4981" to="4989" />
+ <span id="t_703" from="4989" to="4990" />
+ <span id="t_704" from="4991" to="4997" />
+ <span id="t_705" from="4998" to="5008" />
+ <span id="t_706" from="5009" to="5013" />
+ <span id="t_707" from="5014" to="5021" />
+ <span id="t_708" from="5022" to="5032" />
+ <span id="t_709" from="5032" to="5033" />
+ <span id="t_710" from="5034" to="5039" />
+ <span id="t_711" from="5040" to="5045" />
+ <span id="t_712" from="5045" to="5046" />
+ <span id="t_713" from="5047" to="5051" />
+ <span id="t_714" from="5052" to="5054" />
+ <span id="t_715" from="5055" to="5058" />
+ <span id="t_716" from="5059" to="5066" />
+ <span id="t_717" from="5067" to="5068" />
+ <span id="t_718" from="5068" to="5070" />
+ <span id="t_719" from="5071" to="5074" />
+ <span id="t_720" from="5075" to="5077" />
+ <span id="t_721" from="5077" to="5078" />
+ <span id="t_722" from="5079" to="5084" />
+ <span id="t_723" from="5085" to="5091" />
+ <span id="t_724" from="5091" to="5092" />
+ <span id="t_725" from="5093" to="5100" />
+ <span id="t_726" from="5101" to="5112" />
+ <span id="t_727" from="5113" to="5115" />
+ <span id="t_728" from="5116" to="5119" />
+ <span id="t_729" from="5120" to="5127" />
+ <span id="t_730" from="5128" to="5135" />
+ <span id="t_731" from="5136" to="5151" />
+ <span id="t_732" from="5152" to="5158" />
+ <span id="t_733" from="5158" to="5159" />
+ <span id="t_734" from="5160" to="5165" />
+ <span id="t_735" from="5166" to="5174" />
+ <span id="t_736" from="5175" to="5178" />
+ <span id="t_737" from="5179" to="5182" />
+ <span id="t_738" from="5183" to="5189" />
+ <span id="t_739" from="5190" to="5193" />
+ <span id="t_740" from="5194" to="5200" />
+ <span id="t_741" from="5201" to="5212" />
+ <span id="t_742" from="5213" to="5223" />
+ <span id="t_743" from="5224" to="5231" />
+ <span id="t_744" from="5232" to="5235" />
+ <span id="t_745" from="5236" to="5240" />
+ <span id="t_746" from="5240" to="5241" />
+ <span id="t_747" from="5242" to="5244" />
+ <span id="t_748" from="5245" to="5250" />
+ <span id="t_749" from="5251" to="5265" />
+ <span id="t_750" from="5266" to="5271" />
+ <span id="t_751" from="5272" to="5277" />
+ <span id="t_752" from="5278" to="5288" />
+ <span id="t_753" from="5289" to="5293" />
+ <span id="t_754" from="5294" to="5297" />
+ <span id="t_755" from="5298" to="5300" />
+ <span id="t_756" from="5301" to="5306" />
+ <span id="t_757" from="5307" to="5312" />
+ <span id="t_758" from="5313" to="5318" />
+ <span id="t_759" from="5319" to="5326" />
+ <span id="t_760" from="5327" to="5341" />
+ <span id="t_761" from="5342" to="5345" />
+ <span id="t_762" from="5345" to="5346" />
+ <span id="t_763" from="5347" to="5351" />
+ <span id="t_764" from="5352" to="5355" />
+ <span id="t_765" from="5356" to="5362" />
+ <span id="t_766" from="5363" to="5369" />
+ <span id="t_767" from="5370" to="5373" />
+ <span id="t_768" from="5374" to="5383" />
+ <span id="t_769" from="5384" to="5394" />
+ <span id="t_770" from="5395" to="5403" />
+ <span id="t_771" from="5403" to="5404" />
+ <span id="t_772" from="5405" to="5411" />
+ <span id="t_773" from="5412" to="5416" />
+ <span id="t_774" from="5417" to="5420" />
+ <span id="t_775" from="5421" to="5427" />
+ <span id="t_776" from="5428" to="5437" />
+ <span id="t_777" from="5438" to="5440" />
+ <span id="t_778" from="5441" to="5452" />
+ <span id="t_779" from="5453" to="5461" />
+ <span id="t_780" from="5462" to="5463" />
+ <span id="t_781" from="5463" to="5466" />
+ <span id="t_782" from="5466" to="5467" />
+ <span id="t_783" from="5468" to="5475" />
+ <span id="t_784" from="5475" to="5476" />
+ <span id="t_785" from="5477" to="5483" />
+ <span id="t_786" from="5484" to="5488" />
+ <span id="t_787" from="5489" to="5492" />
+ <span id="t_788" from="5493" to="5496" />
+ <span id="t_789" from="5497" to="5501" />
+ <span id="t_790" from="5502" to="5505" />
+ <span id="t_791" from="5506" to="5509" />
+ <span id="t_792" from="5510" to="5522" />
+ <span id="t_793" from="5523" to="5533" />
+ <span id="t_794" from="5534" to="5545" />
+ <span id="t_795" from="5546" to="5555" />
+ <span id="t_796" from="5556" to="5558" />
+ <span id="t_797" from="5559" to="5569" />
+ <span id="t_798" from="5570" to="5578" />
+ <span id="t_799" from="5579" to="5580" />
+ <span id="t_800" from="5580" to="5584" />
+ <span id="t_801" from="5584" to="5585" />
+ <span id="t_802" from="5585" to="5586" />
+ <span id="t_803" from="5587" to="5597" />
+ <span id="t_804" from="5598" to="5607" />
+ <span id="t_805" from="5608" to="5612" />
+ <span id="t_806" from="5613" to="5619" />
+ <span id="t_807" from="5619" to="5620" />
+ <span id="t_808" from="5621" to="5623" />
+ <span id="t_809" from="5624" to="5627" />
+ <span id="t_810" from="5628" to="5633" />
+ <span id="t_811" from="5634" to="5637" />
+ <span id="t_812" from="5638" to="5648" />
+ <span id="t_813" from="5649" to="5654" />
+ <span id="t_814" from="5655" to="5665" />
+ <span id="t_815" from="5666" to="5670" />
+ <span id="t_816" from="5670" to="5671" />
+ <span id="t_817" from="5672" to="5675" />
+ <span id="t_818" from="5676" to="5684" />
+ <span id="t_819" from="5685" to="5702" />
+ <span id="t_820" from="5703" to="5707" />
+ <span id="t_821" from="5709" to="5714" />
+ <span id="t_822" from="5715" to="5724" />
+ <span id="t_823" from="5725" to="5735" />
+ <span id="t_824" from="5736" to="5737" />
+ <span id="t_825" from="5738" to="5753" />
+ <span id="t_826" from="5754" to="5758" />
+ <span id="t_827" from="5759" to="5762" />
+ <span id="t_828" from="5763" to="5776" />
+ <span id="t_829" from="5777" to="5782" />
+ <span id="t_830" from="5783" to="5786" />
+ <span id="t_831" from="5787" to="5800" />
+ <span id="t_832" from="5801" to="5810" />
+ <span id="t_833" from="5810" to="5811" />
+ <span id="t_834" from="5812" to="5815" />
+ <span id="t_835" from="5816" to="5823" />
+ <span id="t_836" from="5824" to="5835" />
+ <span id="t_837" from="5836" to="5847" />
+ <span id="t_838" from="5847" to="5848" />
+ <span id="t_839" from="5849" to="5855" />
+ <span id="t_840" from="5856" to="5862" />
+ <span id="t_841" from="5863" to="5866" />
+ <span id="t_842" from="5867" to="5876" />
+ <span id="t_843" from="5877" to="5884" />
+ <span id="t_844" from="5885" to="5888" />
+ <span id="t_845" from="5889" to="5901" />
+ <span id="t_846" from="5902" to="5912" />
+ <span id="t_847" from="5913" to="5922" />
+ <span id="t_848" from="5923" to="5928" />
+ <span id="t_849" from="5928" to="5929" />
+ <span id="t_850" from="5930" to="5933" />
+ <span id="t_851" from="5934" to="5946" />
+ <span id="t_852" from="5946" to="5947" />
+ <span id="t_853" from="5948" to="5951" />
+ <span id="t_854" from="5952" to="5963" />
+ <span id="t_855" from="5964" to="5967" />
+ <span id="t_856" from="5968" to="5986" />
+ <span id="t_857" from="5986" to="5987" />
+ <span id="t_858" from="5988" to="5990" />
+ <span id="t_859" from="5991" to="5996" />
+ <span id="t_860" from="5997" to="6006" />
+ <span id="t_861" from="6007" to="6009" />
+ <span id="t_862" from="6010" to="6019" />
+ <span id="t_863" from="6020" to="6022" />
+ <span id="t_864" from="6023" to="6037" />
+ <span id="t_865" from="6038" to="6050" />
+ <span id="t_866" from="6051" to="6056" />
+ <span id="t_867" from="6057" to="6066" />
+ <span id="t_868" from="6067" to="6087" />
+ <span id="t_869" from="6088" to="6091" />
+ <span id="t_870" from="6092" to="6098" />
+ <span id="t_871" from="6099" to="6111" />
+ <span id="t_872" from="6112" to="6126" />
+ <span id="t_873" from="6126" to="6127" />
+ <span id="t_874" from="6128" to="6134" />
+ <span id="t_875" from="6135" to="6147" />
+ <span id="t_876" from="6148" to="6153" />
+ <span id="t_877" from="6154" to="6156" />
+ <span id="t_878" from="6157" to="6168" />
+ <span id="t_879" from="6169" to="6172" />
+ <span id="t_880" from="6173" to="6179" />
+ <span id="t_881" from="6180" to="6187" />
+ <span id="t_882" from="6188" to="6191" />
+ <span id="t_883" from="6192" to="6201" />
+ <span id="t_884" from="6202" to="6205" />
+ <span id="t_885" from="6206" to="6224" />
+ <span id="t_886" from="6225" to="6232" />
+ <span id="t_887" from="6232" to="6233" />
+ <span id="t_888" from="6234" to="6239" />
+ <span id="t_889" from="6240" to="6243" />
+ <span id="t_890" from="6244" to="6255" />
+ <span id="t_891" from="6256" to="6259" />
+ <span id="t_892" from="6260" to="6269" />
+ <span id="t_893" from="6270" to="6278" />
+ <span id="t_894" from="6279" to="6282" />
+ <span id="t_895" from="6283" to="6290" />
+ <span id="t_896" from="6291" to="6297" />
+ <span id="t_897" from="6298" to="6305" />
+ <span id="t_898" from="6306" to="6331" />
+ <span id="t_899" from="6331" to="6332" />
+ <span id="t_900" from="6333" to="6340" />
+ <span id="t_901" from="6341" to="6344" />
+ <span id="t_902" from="6345" to="6348" />
+ <span id="t_903" from="6349" to="6356" />
+ <span id="t_904" from="6357" to="6368" />
+ <span id="t_905" from="6369" to="6383" />
+ <span id="t_906" from="6384" to="6388" />
+ <span id="t_907" from="6389" to="6402" />
+ <span id="t_908" from="6402" to="6403" />
+ <span id="t_909" from="6404" to="6407" />
+ <span id="t_910" from="6408" to="6417" />
+ <span id="t_911" from="6418" to="6424" />
+ <span id="t_912" from="6425" to="6429" />
+ <span id="t_913" from="6430" to="6432" />
+ <span id="t_914" from="6433" to="6444" />
+ <span id="t_915" from="6445" to="6451" />
+ <span id="t_916" from="6451" to="6452" />
+ <span id="t_917" from="6452" to="6456" />
+ <span id="t_918" from="6457" to="6478" />
+ <span id="t_919" from="6479" to="6489" />
+ <span id="t_920" from="6490" to="6494" />
+ <span id="t_921" from="6495" to="6505" />
+ <span id="t_922" from="6506" to="6512" />
+ <span id="t_923" from="6512" to="6513" />
+ <span id="t_924" from="6514" to="6520" />
+ <span id="t_925" from="6521" to="6528" />
+ <span id="t_926" from="6529" to="6535" />
+ <span id="t_927" from="6536" to="6548" />
+ <span id="t_928" from="6548" to="6549" />
+ <span id="t_929" from="6550" to="6555" />
+ <span id="t_930" from="6556" to="6567" />
+ <span id="t_931" from="6568" to="6571" />
+ <span id="t_932" from="6572" to="6575" />
+ <span id="t_933" from="6576" to="6580" />
+ <span id="t_934" from="6581" to="6592" />
+ <span id="t_935" from="6593" to="6602" />
+ <span id="t_936" from="6602" to="6603" />
+ <span id="t_937" from="6604" to="6612" />
+ <span id="t_938" from="6613" to="6619" />
+ <span id="t_939" from="6620" to="6623" />
+ <span id="t_940" from="6624" to="6632" />
+ <span id="t_941" from="6633" to="6643" />
+ <span id="t_942" from="6644" to="6647" />
+ <span id="t_943" from="6648" to="6652" />
+ <span id="t_944" from="6653" to="6656" />
+ <span id="t_945" from="6657" to="6684" />
+ <span id="t_946" from="6685" to="6693" />
+ <span id="t_947" from="6693" to="6694" />
+ <span id="t_948" from="6695" to="6699" />
+ <span id="t_949" from="6700" to="6708" />
+ <span id="t_950" from="6709" to="6716" />
+ <span id="t_951" from="6717" to="6720" />
+ <span id="t_952" from="6721" to="6735" />
+ <span id="t_953" from="6736" to="6737" />
+ <span id="t_954" from="6738" to="6742" />
+ <span id="t_955" from="6743" to="6749" />
+ <span id="t_956" from="6750" to="6753" />
+ <span id="t_957" from="6754" to="6778" />
+ <span id="t_958" from="6779" to="6780" />
+ <span id="t_959" from="6781" to="6784" />
+ <span id="t_960" from="6784" to="6785" />
+ <span id="t_961" from="6786" to="6789" />
+ <span id="t_962" from="6790" to="6795" />
+ <span id="t_963" from="6796" to="6799" />
+ <span id="t_964" from="6800" to="6806" />
+ <span id="t_965" from="6807" to="6816" />
+ <span id="t_966" from="6817" to="6831" />
+ <span id="t_967" from="6831" to="6832" />
+ <span id="t_968" from="6833" to="6836" />
+ <span id="t_969" from="6837" to="6840" />
+ <span id="t_970" from="6841" to="6854" />
+ <span id="t_971" from="6855" to="6864" />
+ <span id="t_972" from="6865" to="6875" />
+ <span id="t_973" from="6876" to="6880" />
+ <span id="t_974" from="6881" to="6884" />
+ <span id="t_975" from="6885" to="6902" />
+ <span id="t_976" from="6903" to="6906" />
+ <span id="t_977" from="6907" to="6924" />
+ <span id="t_978" from="6925" to="6934" />
+ <span id="t_979" from="6934" to="6935" />
+ <span id="t_980" from="6936" to="6941" />
+ <span id="t_981" from="6942" to="6954" />
+ <span id="t_982" from="6955" to="6958" />
+ <span id="t_983" from="6959" to="6964" />
+ <span id="t_984" from="6965" to="6971" />
+ <span id="t_985" from="6972" to="6984" />
+ <span id="t_986" from="6985" to="6988" />
+ <span id="t_987" from="6989" to="7009" />
+ <span id="t_988" from="7009" to="7010" />
+ <span id="t_989" from="7011" to="7015" />
+ <span id="t_990" from="7016" to="7020" />
+ <span id="t_991" from="7021" to="7023" />
+ <span id="t_992" from="7024" to="7031" />
+ <span id="t_993" from="7032" to="7044" />
+ <span id="t_994" from="7045" to="7051" />
+ <span id="t_995" from="7051" to="7052" />
+ <span id="t_996" from="7053" to="7060" />
+ <span id="t_997" from="7061" to="7064" />
+ <span id="t_998" from="7065" to="7072" />
+ <span id="t_999" from="7073" to="7079" />
+ <span id="t_1000" from="7080" to="7085" />
+ <span id="t_1001" from="7086" to="7090" />
+ <span id="t_1002" from="7091" to="7102" />
+ <span id="t_1003" from="7103" to="7106" />
+ <span id="t_1004" from="7106" to="7107" />
+ <span id="t_1005" from="7108" to="7115" />
+ <span id="t_1006" from="7116" to="7119" />
+ <span id="t_1007" from="7120" to="7134" />
+ <span id="t_1008" from="7135" to="7144" />
+ <span id="t_1009" from="7145" to="7149" />
+ <span id="t_1010" from="7150" to="7162" />
+ <span id="t_1011" from="7163" to="7168" />
+ <span id="t_1012" from="7169" to="7179" />
+ <span id="t_1013" from="7180" to="7184" />
+ <span id="t_1014" from="7185" to="7193" />
+ <span id="t_1015" from="7194" to="7199" />
+ <span id="t_1016" from="7200" to="7217" />
+ <span id="t_1017" from="7217" to="7218" />
+ <span id="t_1018" from="7220" to="7240" />
+ <span id="t_1019" from="7242" to="7255" />
+ <span id="t_1020" from="7256" to="7262" />
+ <span id="t_1021" from="7262" to="7263" />
+ <span id="t_1022" from="7264" to="7267" />
+ <span id="t_1023" from="7268" to="7273" />
+ <span id="t_1024" from="7274" to="7281" />
+ <span id="t_1025" from="7282" to="7304" />
+ <span id="t_1026" from="7305" to="7308" />
+ <span id="t_1027" from="7309" to="7317" />
+ <span id="t_1028" from="7318" to="7323" />
+ <span id="t_1029" from="7324" to="7328" />
+ <span id="t_1030" from="7328" to="7329" />
+ <span id="t_1031" from="7330" to="7336" />
+ <span id="t_1032" from="7337" to="7341" />
+ <span id="t_1033" from="7342" to="7355" />
+ <span id="t_1034" from="7356" to="7374" />
+ <span id="t_1035" from="7375" to="7377" />
+ <span id="t_1036" from="7377" to="7378" />
+ <span id="t_1037" from="7379" to="7382" />
+ <span id="t_1038" from="7383" to="7394" />
+ <span id="t_1039" from="7395" to="7399" />
+ <span id="t_1040" from="7400" to="7402" />
+ <span id="t_1041" from="7403" to="7407" />
+ <span id="t_1042" from="7408" to="7420" />
+ <span id="t_1043" from="7421" to="7424" />
+ <span id="t_1044" from="7425" to="7431" />
+ <span id="t_1045" from="7432" to="7433" />
+ <span id="t_1046" from="7433" to="7442" />
+ <span id="t_1047" from="7443" to="7447" />
+ <span id="t_1048" from="7447" to="7448" />
+ <span id="t_1049" from="7449" to="7459" />
+ <span id="t_1050" from="7459" to="7460" />
+ <span id="t_1051" from="7461" to="7467" />
+ <span id="t_1052" from="7468" to="7474" />
+ <span id="t_1053" from="7475" to="7481" />
+ <span id="t_1054" from="7482" to="7484" />
+ <span id="t_1055" from="7485" to="7488" />
+ <span id="t_1056" from="7489" to="7499" />
+ <span id="t_1057" from="7500" to="7503" />
+ <span id="t_1058" from="7504" to="7507" />
+ <span id="t_1059" from="7508" to="7523" />
+ <span id="t_1060" from="7524" to="7528" />
+ <span id="t_1061" from="7529" to="7542" />
+ <span id="t_1062" from="7543" to="7548" />
+ <span id="t_1063" from="7548" to="7549" />
+ <span id="t_1064" from="7550" to="7553" />
+ <span id="t_1065" from="7554" to="7564" />
+ <span id="t_1066" from="7565" to="7569" />
+ <span id="t_1067" from="7570" to="7573" />
+ <span id="t_1068" from="7574" to="7581" />
+ <span id="t_1069" from="7582" to="7595" />
+ <span id="t_1070" from="7596" to="7601" />
+ <span id="t_1071" from="7602" to="7606" />
+ <span id="t_1072" from="7607" to="7612" />
+ <span id="t_1073" from="7613" to="7624" />
+ <span id="t_1074" from="7625" to="7628" />
+ <span id="t_1075" from="7629" to="7634" />
+ <span id="t_1076" from="7635" to="7637" />
+ <span id="t_1077" from="7638" to="7648" />
+ <span id="t_1078" from="7649" to="7652" />
+ <span id="t_1079" from="7653" to="7665" />
+ <span id="t_1080" from="7666" to="7671" />
+ <span id="t_1081" from="7672" to="7687" />
+ <span id="t_1082" from="7688" to="7701" />
+ <span id="t_1083" from="7702" to="7713" />
+ <span id="t_1084" from="7714" to="7715" />
+ <span id="t_1085" from="7715" to="7727" />
+ <span id="t_1086" from="7728" to="7730" />
+ <span id="t_1087" from="7731" to="7734" />
+ <span id="t_1088" from="7735" to="7741" />
+ <span id="t_1089" from="7741" to="7742" />
+ <span id="t_1090" from="7743" to="7752" />
+ <span id="t_1091" from="7753" to="7755" />
+ <span id="t_1092" from="7756" to="7775" />
+ <span id="t_1093" from="7775" to="7776" />
+ <span id="t_1094" from="7776" to="7777" />
+ <span id="t_1095" from="7778" to="7781" />
+ <span id="t_1096" from="7782" to="7791" />
+ <span id="t_1097" from="7792" to="7795" />
+ <span id="t_1098" from="7796" to="7806" />
+ <span id="t_1099" from="7807" to="7810" />
+ <span id="t_1100" from="7811" to="7821" />
+ <span id="t_1101" from="7822" to="7827" />
+ <span id="t_1102" from="7828" to="7841" />
+ <span id="t_1103" from="7842" to="7844" />
+ <span id="t_1104" from="7845" to="7855" />
+ <span id="t_1105" from="7855" to="7856" />
+ <span id="t_1106" from="7857" to="7861" />
+ <span id="t_1107" from="7862" to="7866" />
+ <span id="t_1108" from="7867" to="7871" />
+ <span id="t_1109" from="7872" to="7881" />
+ <span id="t_1110" from="7882" to="7902" />
+ <span id="t_1111" from="7903" to="7911" />
+ <span id="t_1112" from="7911" to="7912" />
+ <span id="t_1113" from="7914" to="7918" />
+ <span id="t_1114" from="7920" to="7924" />
+ <span id="t_1115" from="7924" to="7925" />
+ <span id="t_1116" from="7925" to="7929" />
+ <span id="t_1117" from="7930" to="7932" />
+ <span id="t_1118" from="7933" to="7938" />
+ <span id="t_1119" from="7939" to="7950" />
+ <span id="t_1120" from="7951" to="7955" />
+ <span id="t_1121" from="7955" to="7956" />
+ <span id="t_1122" from="7956" to="7961" />
+ <span id="t_1123" from="7961" to="7962" />
+ <span id="t_1124" from="7962" to="7970" />
+ <span id="t_1125" from="7970" to="7971" />
+ <span id="t_1126" from="7971" to="7980" />
+ <span id="t_1127" from="7981" to="7986" />
+ <span id="t_1128" from="7987" to="7993" />
+ <span id="t_1129" from="7994" to="8004" />
+ <span id="t_1130" from="8004" to="8005" />
+ <span id="t_1131" from="8006" to="8011" />
+ <span id="t_1132" from="8012" to="8017" />
+ <span id="t_1133" from="8018" to="8021" />
+ <span id="t_1134" from="8022" to="8031" />
+ <span id="t_1135" from="8032" to="8035" />
+ <span id="t_1136" from="8036" to="8054" />
+ <span id="t_1137" from="8055" to="8070" />
+ <span id="t_1138" from="8070" to="8071" />
+ <span id="t_1139" from="8072" to="8074" />
+ <span id="t_1140" from="8075" to="8077" />
+ <span id="t_1141" from="8078" to="8089" />
+ <span id="t_1142" from="8090" to="8099" />
+ <span id="t_1143" from="8099" to="8100" />
+ <span id="t_1144" from="8101" to="8104" />
+ <span id="t_1145" from="8105" to="8109" />
+ <span id="t_1146" from="8110" to="8111" />
+ <span id="t_1147" from="8111" to="8127" />
+ <span id="t_1148" from="8127" to="8128" />
+ <span id="t_1149" from="8129" to="8132" />
+ <span id="t_1150" from="8133" to="8136" />
+ <span id="t_1151" from="8136" to="8137" />
+ <span id="t_1152" from="8138" to="8142" />
+ <span id="t_1153" from="8143" to="8144" />
+ <span id="t_1154" from="8144" to="8150" />
+ <span id="t_1155" from="8150" to="8151" />
+ <span id="t_1156" from="8152" to="8159" />
+ <span id="t_1157" from="8159" to="8160" />
+ <span id="t_1158" from="8160" to="8161" />
+ <span id="t_1159" from="8162" to="8170" />
+ <span id="t_1160" from="8171" to="8180" />
+ <span id="t_1161" from="8181" to="8184" />
+ <span id="t_1162" from="8185" to="8194" />
+ <span id="t_1163" from="8195" to="8200" />
+ <span id="t_1164" from="8201" to="8213" />
+ <span id="t_1165" from="8214" to="8228" />
+ <span id="t_1166" from="8229" to="8234" />
+ <span id="t_1167" from="8235" to="8251" />
+ <span id="t_1168" from="8252" to="8258" />
+ <span id="t_1169" from="8259" to="8275" />
+ <span id="t_1170" from="8275" to="8276" />
+ <span id="t_1171" from="8277" to="8280" />
+ <span id="t_1172" from="8281" to="8285" />
+ <span id="t_1173" from="8286" to="8289" />
+ <span id="t_1174" from="8290" to="8310" />
+ <span id="t_1175" from="8311" to="8320" />
+ <span id="t_1176" from="8321" to="8332" />
+ <span id="t_1177" from="8333" to="8343" />
+ <span id="t_1178" from="8344" to="8347" />
+ <span id="t_1179" from="8348" to="8351" />
+ <span id="t_1180" from="8352" to="8365" />
+ <span id="t_1181" from="8366" to="8380" />
+ <span id="t_1182" from="8380" to="8381" />
+ <span id="t_1183" from="8382" to="8390" />
+ <span id="t_1184" from="8391" to="8396" />
+ <span id="t_1185" from="8397" to="8405" />
+ <span id="t_1186" from="8406" to="8425" />
+ <span id="t_1187" from="8426" to="8434" />
+ <span id="t_1188" from="8435" to="8447" />
+ <span id="t_1189" from="8448" to="8451" />
+ <span id="t_1190" from="8452" to="8455" />
+ <span id="t_1191" from="8456" to="8460" />
+ <span id="t_1192" from="8461" to="8464" />
+ <span id="t_1193" from="8465" to="8470" />
+ <span id="t_1194" from="8471" to="8482" />
+ <span id="t_1195" from="8483" to="8484" />
+ <span id="t_1196" from="8484" to="8491" />
+ <span id="t_1197" from="8491" to="8492" />
+ <span id="t_1198" from="8492" to="8493" />
+ <span id="t_1199" from="8493" to="8496" />
+ <span id="t_1200" from="8497" to="8500" />
+ <span id="t_1201" from="8501" to="8509" />
+ <span id="t_1202" from="8510" to="8513" />
+ <span id="t_1203" from="8514" to="8519" />
+ <span id="t_1204" from="8520" to="8524" />
+ <span id="t_1205" from="8524" to="8525" />
+ <span id="t_1206" from="8526" to="8531" />
+ <span id="t_1207" from="8532" to="8541" />
+ <span id="t_1208" from="8542" to="8545" />
+ <span id="t_1209" from="8546" to="8558" />
+ <span id="t_1210" from="8559" to="8563" />
+ <span id="t_1211" from="8564" to="8567" />
+ <span id="t_1212" from="8568" to="8588" />
+ <span id="t_1213" from="8589" to="8595" />
+ <span id="t_1214" from="8595" to="8596" />
+ <span id="t_1215" from="8597" to="8600" />
+ <span id="t_1216" from="8601" to="8614" />
+ <span id="t_1217" from="8615" to="8623" />
+ <span id="t_1218" from="8624" to="8630" />
+ <span id="t_1219" from="8631" to="8637" />
+ <span id="t_1220" from="8638" to="8650" />
+ <span id="t_1221" from="8650" to="8651" />
+ <span id="t_1222" from="8652" to="8656" />
+ <span id="t_1223" from="8657" to="8661" />
+ <span id="t_1224" from="8662" to="8668" />
+ <span id="t_1225" from="8669" to="8672" />
+ <span id="t_1226" from="8673" to="8679" />
+ <span id="t_1227" from="8680" to="8683" />
+ <span id="t_1228" from="8684" to="8688" />
+ <span id="t_1229" from="8689" to="8706" />
+ <span id="t_1230" from="8707" to="8716" />
+ <span id="t_1231" from="8716" to="8717" />
+ <span id="t_1232" from="8718" to="8726" />
+ <span id="t_1233" from="8727" to="8734" />
+ <span id="t_1234" from="8735" to="8738" />
+ <span id="t_1235" from="8739" to="8744" />
+ <span id="t_1236" from="8745" to="8751" />
+ <span id="t_1237" from="8752" to="8755" />
+ <span id="t_1238" from="8756" to="8766" />
+ <span id="t_1239" from="8767" to="8777" />
+ <span id="t_1240" from="8778" to="8781" />
+ <span id="t_1241" from="8782" to="8786" />
+ <span id="t_1242" from="8787" to="8790" />
+ <span id="t_1243" from="8791" to="8795" />
+ <span id="t_1244" from="8796" to="8807" />
+ <span id="t_1245" from="8808" to="8818" />
+ <span id="t_1246" from="8819" to="8823" />
+ <span id="t_1247" from="8823" to="8824" />
+ <span id="t_1248" from="8825" to="8831" />
+ <span id="t_1249" from="8832" to="8840" />
+ <span id="t_1250" from="8840" to="8841" />
+ <span id="t_1251" from="8843" to="8858" />
+ <span id="t_1252" from="8860" to="8874" />
+ <span id="t_1253" from="8875" to="8882" />
+ <span id="t_1254" from="8883" to="8894" />
+ <span id="t_1255" from="8895" to="8910" />
+ <span id="t_1256" from="8912" to="8914" />
+ <span id="t_1257" from="8914" to="8919" />
+ <span id="t_1258" from="8919" to="8921" />
+ <span id="t_1259" from="8921" to="8942" />
+ <span id="t_1260" from="8942" to="8943" />
+ <span id="t_1261" from="8943" to="8947" />
+ <span id="t_1262" from="8947" to="8948" />
+ <span id="t_1263" from="8948" to="8951" />
+ <span id="t_1264" from="8952" to="8968" />
+ <span id="t_1265" from="8969" to="8972" />
+ <span id="t_1266" from="8973" to="8981" />
+ <span id="t_1267" from="8982" to="9009" />
+ <span id="t_1268" from="9010" to="9011" />
+ <span id="t_1269" from="9011" to="9028" />
+ <span id="t_1270" from="9028" to="9029" />
+ <span id="t_1271" from="9029" to="9030" />
+ <span id="t_1272" from="9031" to="9040" />
+ <span id="t_1273" from="9041" to="9043" />
+ <span id="t_1274" from="9044" to="9051" />
+ <span id="t_1275" from="9052" to="9056" />
+ <span id="t_1276" from="9057" to="9060" />
+ <span id="t_1277" from="9061" to="9070" />
+ <span id="t_1278" from="9071" to="9074" />
+ <span id="t_1279" from="9075" to="9090" />
+ <span id="t_1280" from="9091" to="9093" />
+ <span id="t_1281" from="9094" to="9097" />
+ <span id="t_1282" from="9098" to="9107" />
+ <span id="t_1283" from="9108" to="9111" />
+ <span id="t_1284" from="9112" to="9122" />
+ <span id="t_1285" from="9123" to="9125" />
+ <span id="t_1286" from="9126" to="9134" />
+ <span id="t_1287" from="9134" to="9135" />
+ <span id="t_1288" from="9135" to="9137" />
+ <span id="t_1289" from="9138" to="9142" />
+ <span id="t_1290" from="9143" to="9147" />
+ <span id="t_1291" from="9148" to="9153" />
+ <span id="t_1292" from="9154" to="9158" />
+ <span id="t_1293" from="9159" to="9174" />
+ <span id="t_1294" from="9175" to="9183" />
+ <span id="t_1295" from="9183" to="9184" />
+ <span id="t_1296" from="9184" to="9188" />
+ <span id="t_1297" from="9189" to="9192" />
+ <span id="t_1298" from="9193" to="9197" />
+ <span id="t_1299" from="9198" to="9203" />
+ <span id="t_1300" from="9204" to="9207" />
+ <span id="t_1301" from="9208" to="9213" />
+ <span id="t_1302" from="9214" to="9219" />
+ <span id="t_1303" from="9219" to="9220" />
+ <span id="t_1304" from="9221" to="9228" />
+ <span id="t_1305" from="9229" to="9232" />
+ <span id="t_1306" from="9233" to="9238" />
+ <span id="t_1307" from="9239" to="9254" />
+ <span id="t_1308" from="9255" to="9262" />
+ <span id="t_1309" from="9263" to="9264" />
+ <span id="t_1310" from="9265" to="9267" />
+ <span id="t_1311" from="9268" to="9271" />
+ <span id="t_1312" from="9272" to="9277" />
+ <span id="t_1313" from="9278" to="9281" />
+ <span id="t_1314" from="9282" to="9293" />
+ <span id="t_1315" from="9294" to="9304" />
+ <span id="t_1316" from="9304" to="9305" />
+ <span id="t_1317" from="9306" to="9309" />
+ <span id="t_1318" from="9310" to="9318" />
+ <span id="t_1319" from="9319" to="9322" />
+ <span id="t_1320" from="9323" to="9344" />
+ <span id="t_1321" from="9345" to="9350" />
+ <span id="t_1322" from="9351" to="9354" />
+ <span id="t_1323" from="9355" to="9364" />
+ <span id="t_1324" from="9365" to="9370" />
+ <span id="t_1325" from="9371" to="9374" />
+ <span id="t_1326" from="9375" to="9379" />
+ <span id="t_1327" from="9380" to="9383" />
+ <span id="t_1328" from="9384" to="9387" />
+ <span id="t_1329" from="9388" to="9404" />
+ <span id="t_1330" from="9404" to="9405" />
+ <span id="t_1331" from="9406" to="9409" />
+ <span id="t_1332" from="9410" to="9415" />
+ <span id="t_1333" from="9416" to="9418" />
+ <span id="t_1334" from="9419" to="9425" />
+ <span id="t_1335" from="9426" to="9433" />
+ <span id="t_1336" from="9434" to="9437" />
+ <span id="t_1337" from="9438" to="9443" />
+ <span id="t_1338" from="9444" to="9454" />
+ <span id="t_1339" from="9455" to="9458" />
+ <span id="t_1340" from="9459" to="9467" />
+ <span id="t_1341" from="9468" to="9476" />
+ <span id="t_1342" from="9477" to="9481" />
+ <span id="t_1343" from="9481" to="9482" />
+ <span id="t_1344" from="9483" to="9487" />
+ <span id="t_1345" from="9488" to="9492" />
+ <span id="t_1346" from="9493" to="9496" />
+ <span id="t_1347" from="9497" to="9500" />
+ <span id="t_1348" from="9501" to="9510" />
+ <span id="t_1349" from="9511" to="9513" />
+ <span id="t_1350" from="9514" to="9536" />
+ <span id="t_1351" from="9537" to="9538" />
+ <span id="t_1352" from="9538" to="9552" />
+ <span id="t_1353" from="9553" to="9557" />
+ <span id="t_1354" from="9558" to="9562" />
+ <span id="t_1355" from="9562" to="9563" />
+ <span id="t_1356" from="9564" to="9567" />
+ <span id="t_1357" from="9568" to="9576" />
+ <span id="t_1358" from="9577" to="9580" />
+ <span id="t_1359" from="9580" to="9581" />
+ <span id="t_1360" from="9581" to="9582" />
+ <span id="t_1361" from="9583" to="9588" />
+ <span id="t_1362" from="9589" to="9593" />
+ <span id="t_1363" from="9594" to="9597" />
+ <span id="t_1364" from="9598" to="9601" />
+ <span id="t_1365" from="9602" to="9607" />
+ <span id="t_1366" from="9608" to="9631" />
+ <span id="t_1367" from="9632" to="9635" />
+ <span id="t_1368" from="9636" to="9640" />
+ <span id="t_1369" from="9641" to="9646" />
+ <span id="t_1370" from="9647" to="9653" />
+ <span id="t_1371" from="9654" to="9666" />
+ <span id="t_1372" from="9667" to="9672" />
+ <span id="t_1373" from="9673" to="9676" />
+ <span id="t_1374" from="9677" to="9686" />
+ <span id="t_1375" from="9687" to="9693" />
+ <span id="t_1376" from="9694" to="9700" />
+ <span id="t_1377" from="9701" to="9709" />
+ <span id="t_1378" from="9709" to="9710" />
+ <span id="t_1379" from="9711" to="9715" />
+ <span id="t_1380" from="9716" to="9719" />
+ <span id="t_1381" from="9720" to="9723" />
+ <span id="t_1382" from="9724" to="9727" />
+ <span id="t_1383" from="9728" to="9737" />
+ <span id="t_1384" from="9738" to="9748" />
+ <span id="t_1385" from="9748" to="9749" />
+ <span id="t_1386" from="9750" to="9753" />
+ <span id="t_1387" from="9754" to="9757" />
+ <span id="t_1388" from="9758" to="9762" />
+ <span id="t_1389" from="9763" to="9774" />
+ <span id="t_1390" from="9775" to="9784" />
+ <span id="t_1391" from="9784" to="9785" />
+ <span id="t_1392" from="9786" to="9803" />
+ <span id="t_1393" from="9804" to="9808" />
+ <span id="t_1394" from="9809" to="9811" />
+ <span id="t_1395" from="9812" to="9817" />
+ <span id="t_1396" from="9818" to="9821" />
+ <span id="t_1397" from="9822" to="9835" />
+ <span id="t_1398" from="9835" to="9836" />
+ <span id="t_1399" from="9837" to="9844" />
+ <span id="t_1400" from="9845" to="9849" />
+ <span id="t_1401" from="9850" to="9853" />
+ <span id="t_1402" from="9854" to="9861" />
+ <span id="t_1403" from="9862" to="9871" />
+ <span id="t_1404" from="9872" to="9881" />
+ <span id="t_1405" from="9881" to="9882" />
+ <span id="t_1406" from="9883" to="9885" />
+ <span id="t_1407" from="9886" to="9888" />
+ <span id="t_1408" from="9889" to="9892" />
+ <span id="t_1409" from="9893" to="9901" />
+ <span id="t_1410" from="9902" to="9906" />
+ <span id="t_1411" from="9907" to="9918" />
+ <span id="t_1412" from="9918" to="9919" />
+ <span id="t_1413" from="9920" to="9923" />
+ <span id="t_1414" from="9924" to="9928" />
+ <span id="t_1415" from="9929" to="9935" />
+ <span id="t_1416" from="9936" to="9937" />
+ <span id="t_1417" from="9938" to="9941" />
+ <span id="t_1418" from="9942" to="9945" />
+ <span id="t_1419" from="9946" to="9953" />
+ <span id="t_1420" from="9954" to="9977" />
+ <span id="t_1421" from="9978" to="9979" />
+ <span id="t_1422" from="9980" to="9985" />
+ <span id="t_1423" from="9986" to="9995" />
+ <span id="t_1424" from="9996" to="10005" />
+ <span id="t_1425" from="10006" to="10009" />
+ <span id="t_1426" from="10010" to="10016" />
+ <span id="t_1427" from="10017" to="10022" />
+ <span id="t_1428" from="10023" to="10026" />
+ <span id="t_1429" from="10027" to="10043" />
+ <span id="t_1430" from="10044" to="10052" />
+ <span id="t_1431" from="10053" to="10059" />
+ <span id="t_1432" from="10059" to="10060" />
+ <span id="t_1433" from="10060" to="10073" />
+ <span id="t_1434" from="10073" to="10074" />
+ <span id="t_1435" from="10074" to="10075" />
+ <span id="t_1436" from="10076" to="10091" />
+ <span id="t_1437" from="10092" to="10096" />
+ <span id="t_1438" from="10097" to="10101" />
+ <span id="t_1439" from="10102" to="10105" />
+ <span id="t_1440" from="10106" to="10114" />
+ <span id="t_1441" from="10115" to="10118" />
+ <span id="t_1442" from="10119" to="10130" />
+ <span id="t_1443" from="10131" to="10143" />
+ <span id="t_1444" from="10143" to="10144" />
+ <span id="t_1445" from="10145" to="10147" />
+ <span id="t_1446" from="10148" to="10153" />
+ <span id="t_1447" from="10154" to="10161" />
+ <span id="t_1448" from="10162" to="10174" />
+ <span id="t_1449" from="10174" to="10175" />
+ <span id="t_1450" from="10176" to="10179" />
+ <span id="t_1451" from="10180" to="10187" />
+ <span id="t_1452" from="10188" to="10202" />
+ <span id="t_1453" from="10203" to="10207" />
+ <span id="t_1454" from="10208" to="10215" />
+ <span id="t_1455" from="10216" to="10234" />
+ <span id="t_1456" from="10235" to="10240" />
+ <span id="t_1457" from="10241" to="10250" />
+ <span id="t_1458" from="10251" to="10254" />
+ <span id="t_1459" from="10255" to="10269" />
+ <span id="t_1460" from="10270" to="10275" />
+ <span id="t_1461" from="10276" to="10278" />
+ <span id="t_1462" from="10279" to="10283" />
+ <span id="t_1463" from="10284" to="10293" />
+ <span id="t_1464" from="10294" to="10300" />
+ <span id="t_1465" from="10301" to="10313" />
+ <span id="t_1466" from="10313" to="10314" />
+ <span id="t_1467" from="10315" to="10329" />
+ <span id="t_1468" from="10330" to="10333" />
+ <span id="t_1469" from="10334" to="10337" />
+ <span id="t_1470" from="10338" to="10365" />
+ <span id="t_1471" from="10365" to="10366" />
+ <span id="t_1472" from="10367" to="10370" />
+ <span id="t_1473" from="10371" to="10385" />
+ <span id="t_1474" from="10386" to="10392" />
+ <span id="t_1475" from="10393" to="10401" />
+ <span id="t_1476" from="10402" to="10414" />
+ <span id="t_1477" from="10415" to="10425" />
+ <span id="t_1478" from="10426" to="10432" />
+ <span id="t_1479" from="10432" to="10433" />
+ <span id="t_1480" from="10434" to="10436" />
+ <span id="t_1481" from="10437" to="10440" />
+ <span id="t_1482" from="10441" to="10451" />
+ <span id="t_1483" from="10452" to="10466" />
+ <span id="t_1484" from="10466" to="10467" />
+ <span id="t_1485" from="10469" to="10481" />
+ <span id="t_1486" from="10483" to="10491" />
+ <span id="t_1487" from="10491" to="10492" />
+ <span id="t_1488" from="10492" to="10495" />
+ <span id="t_1489" from="10495" to="10496" />
+ <span id="t_1490" from="10496" to="10500" />
+ <span id="t_1491" from="10500" to="10501" />
+ <span id="t_1492" from="10501" to="10513" />
+ <span id="t_1493" from="10514" to="10526" />
+ <span id="t_1494" from="10527" to="10539" />
+ <span id="t_1495" from="10540" to="10543" />
+ <span id="t_1496" from="10544" to="10547" />
+ <span id="t_1497" from="10548" to="10558" />
+ <span id="t_1498" from="10559" to="10562" />
+ <span id="t_1499" from="10563" to="10571" />
+ <span id="t_1500" from="10571" to="10572" />
+ <span id="t_1501" from="10572" to="10576" />
+ <span id="t_1502" from="10577" to="10580" />
+ <span id="t_1503" from="10581" to="10589" />
+ <span id="t_1504" from="10590" to="10591" />
+ <span id="t_1505" from="10591" to="10598" />
+ <span id="t_1506" from="10599" to="10604" />
+ <span id="t_1507" from="10605" to="10615" />
+ <span id="t_1508" from="10616" to="10619" />
+ <span id="t_1509" from="10620" to="10623" />
+ <span id="t_1510" from="10624" to="10633" />
+ <span id="t_1511" from="10633" to="10634" />
+ <span id="t_1512" from="10635" to="10650" />
+ <span id="t_1513" from="10651" to="10656" />
+ <span id="t_1514" from="10657" to="10660" />
+ <span id="t_1515" from="10661" to="10664" />
+ <span id="t_1516" from="10665" to="10669" />
+ <span id="t_1517" from="10670" to="10673" />
+ <span id="t_1518" from="10674" to="10688" />
+ <span id="t_1519" from="10689" to="10708" />
+ <span id="t_1520" from="10708" to="10709" />
+ <span id="t_1521" from="10710" to="10713" />
+ <span id="t_1522" from="10714" to="10718" />
+ <span id="t_1523" from="10719" to="10723" />
+ <span id="t_1524" from="10724" to="10729" />
+ <span id="t_1525" from="10729" to="10730" />
+ <span id="t_1526" from="10731" to="10734" />
+ <span id="t_1527" from="10735" to="10752" />
+ <span id="t_1528" from="10753" to="10758" />
+ <span id="t_1529" from="10759" to="10762" />
+ <span id="t_1530" from="10763" to="10766" />
+ <span id="t_1531" from="10767" to="10771" />
+ <span id="t_1532" from="10772" to="10787" />
+ <span id="t_1533" from="10788" to="10790" />
+ <span id="t_1534" from="10790" to="10791" />
+ <span id="t_1535" from="10792" to="10795" />
+ <span id="t_1536" from="10796" to="10803" />
+ <span id="t_1537" from="10803" to="10804" />
+ <span id="t_1538" from="10805" to="10809" />
+ <span id="t_1539" from="10810" to="10814" />
+ <span id="t_1540" from="10815" to="10818" />
+ <span id="t_1541" from="10819" to="10826" />
+ <span id="t_1542" from="10827" to="10828" />
+ <span id="t_1543" from="10828" to="10837" />
+ <span id="t_1544" from="10837" to="10838" />
+ <span id="t_1545" from="10838" to="10843" />
+ <span id="t_1546" from="10844" to="10847" />
+ <span id="t_1547" from="10848" to="10861" />
+ <span id="t_1548" from="10862" to="10873" />
+ <span id="t_1549" from="10874" to="10877" />
+ <span id="t_1550" from="10878" to="10884" />
+ <span id="t_1551" from="10885" to="10895" />
+ <span id="t_1552" from="10895" to="10896" />
+ <span id="t_1553" from="10897" to="10900" />
+ <span id="t_1554" from="10901" to="10910" />
+ <span id="t_1555" from="10911" to="10914" />
+ <span id="t_1556" from="10915" to="10924" />
+ <span id="t_1557" from="10925" to="10931" />
+ <span id="t_1558" from="10931" to="10932" />
+ <span id="t_1559" from="10933" to="10941" />
+ <span id="t_1560" from="10942" to="10945" />
+ <span id="t_1561" from="10946" to="10949" />
+ <span id="t_1562" from="10950" to="10955" />
+ <span id="t_1563" from="10956" to="10963" />
+ <span id="t_1564" from="10963" to="10964" />
+ <span id="t_1565" from="10965" to="10967" />
+ <span id="t_1566" from="10968" to="10971" />
+ <span id="t_1567" from="10972" to="10975" />
+ <span id="t_1568" from="10976" to="10984" />
+ <span id="t_1569" from="10985" to="10990" />
+ <span id="t_1570" from="10991" to="11003" />
+ <span id="t_1571" from="11004" to="11013" />
+ <span id="t_1572" from="11013" to="11014" />
+ <span id="t_1573" from="11015" to="11021" />
+ <span id="t_1574" from="11022" to="11027" />
+ <span id="t_1575" from="11028" to="11032" />
+ <span id="t_1576" from="11033" to="11037" />
+ <span id="t_1577" from="11038" to="11041" />
+ <span id="t_1578" from="11042" to="11072" />
+ <span id="t_1579" from="11072" to="11073" />
+ <span id="t_1580" from="11074" to="11086" />
+ <span id="t_1581" from="11087" to="11094" />
+ <span id="t_1582" from="11094" to="11095" />
+ <span id="t_1583" from="11096" to="11100" />
+ <span id="t_1584" from="11101" to="11107" />
+ <span id="t_1585" from="11108" to="11114" />
+ <span id="t_1586" from="11114" to="11115" />
+ <span id="t_1587" from="11116" to="11127" />
+ <span id="t_1588" from="11128" to="11133" />
+ <span id="t_1589" from="11134" to="11139" />
+ <span id="t_1590" from="11140" to="11143" />
+ <span id="t_1591" from="11144" to="11153" />
+ <span id="t_1592" from="11154" to="11158" />
+ <span id="t_1593" from="11158" to="11159" />
+ <span id="t_1594" from="11160" to="11168" />
+ <span id="t_1595" from="11169" to="11188" />
+ <span id="t_1596" from="11188" to="11189" />
+ <span id="t_1597" from="11190" to="11194" />
+ <span id="t_1598" from="11195" to="11198" />
+ <span id="t_1599" from="11199" to="11216" />
+ <span id="t_1600" from="11217" to="11220" />
+ <span id="t_1601" from="11221" to="11232" />
+ <span id="t_1602" from="11233" to="11237" />
+ <span id="t_1603" from="11238" to="11245" />
+ <span id="t_1604" from="11245" to="11246" />
+ <span id="t_1605" from="11247" to="11252" />
+ <span id="t_1606" from="11253" to="11256" />
+ <span id="t_1607" from="11257" to="11261" />
+ <span id="t_1608" from="11262" to="11275" />
+ <span id="t_1609" from="11276" to="11288" />
+ <span id="t_1610" from="11288" to="11289" />
+ <span id="t_1611" from="11290" to="11294" />
+ <span id="t_1612" from="11295" to="11299" />
+ <span id="t_1613" from="11300" to="11303" />
+ <span id="t_1614" from="11304" to="11311" />
+ <span id="t_1615" from="11312" to="11315" />
+ <span id="t_1616" from="11316" to="11320" />
+ <span id="t_1617" from="11321" to="11326" />
+ <span id="t_1618" from="11327" to="11336" />
+ <span id="t_1619" from="11337" to="11353" />
+ <span id="t_1620" from="11353" to="11354" />
+ <span id="t_1621" from="11355" to="11360" />
+ <span id="t_1622" from="11361" to="11365" />
+ <span id="t_1623" from="11366" to="11370" />
+ <span id="t_1624" from="11371" to="11374" />
+ <span id="t_1625" from="11375" to="11379" />
+ <span id="t_1626" from="11380" to="11385" />
+ <span id="t_1627" from="11386" to="11389" />
+ <span id="t_1628" from="11390" to="11391" />
+ <span id="t_1629" from="11391" to="11395" />
+ <span id="t_1630" from="11395" to="11396" />
+ <span id="t_1631" from="11396" to="11397" />
+ <span id="t_1632" from="11398" to="11401" />
+ <span id="t_1633" from="11402" to="11413" />
+ <span id="t_1634" from="11414" to="11418" />
+ <span id="t_1635" from="11419" to="11424" />
+ <span id="t_1636" from="11425" to="11428" />
+ <span id="t_1637" from="11429" to="11442" />
+ <span id="t_1638" from="11443" to="11455" />
+ <span id="t_1639" from="11455" to="11456" />
+ <span id="t_1640" from="11457" to="11461" />
+ <span id="t_1641" from="11462" to="11467" />
+ <span id="t_1642" from="11468" to="11471" />
+ <span id="t_1643" from="11472" to="11479" />
+ <span id="t_1644" from="11480" to="11483" />
+ <span id="t_1645" from="11484" to="11487" />
+ <span id="t_1646" from="11488" to="11491" />
+ <span id="t_1647" from="11492" to="11502" />
+ <span id="t_1648" from="11502" to="11503" />
+ <span id="t_1649" from="11504" to="11506" />
+ <span id="t_1650" from="11507" to="11511" />
+ <span id="t_1651" from="11512" to="11516" />
+ <span id="t_1652" from="11517" to="11530" />
+ <span id="t_1653" from="11531" to="11552" />
+ <span id="t_1654" from="11552" to="11553" />
+ <span id="t_1655" from="11554" to="11558" />
+ <span id="t_1656" from="11559" to="11563" />
+ <span id="t_1657" from="11564" to="11576" />
+ <span id="t_1658" from="11577" to="11586" />
+ <span id="t_1659" from="11587" to="11590" />
+ <span id="t_1660" from="11591" to="11613" />
+ <span id="t_1661" from="11613" to="11614" />
+ <span id="t_1662" from="11615" to="11621" />
+ <span id="t_1663" from="11622" to="11628" />
+ <span id="t_1664" from="11629" to="11635" />
+ <span id="t_1665" from="11636" to="11640" />
+ <span id="t_1666" from="11641" to="11644" />
+ <span id="t_1667" from="11645" to="11657" />
+ <span id="t_1668" from="11658" to="11662" />
+ <span id="t_1669" from="11663" to="11669" />
+ <span id="t_1670" from="11670" to="11684" />
+ <span id="t_1671" from="11684" to="11685" />
+ <span id="t_1672" from="11686" to="11705" />
+ <span id="t_1673" from="11706" to="11708" />
+ <span id="t_1674" from="11709" to="11728" />
+ <span id="t_1675" from="11729" to="11730" />
+ <span id="t_1676" from="11730" to="11742" />
+ <span id="t_1677" from="11743" to="11749" />
+ <span id="t_1678" from="11750" to="11753" />
+ <span id="t_1679" from="11754" to="11764" />
+ <span id="t_1680" from="11764" to="11765" />
+ <span id="t_1681" from="11766" to="11772" />
+ <span id="t_1682" from="11773" to="11776" />
+ <span id="t_1683" from="11777" to="11791" />
+ <span id="t_1684" from="11792" to="11804" />
+ <span id="t_1685" from="11805" to="11821" />
+ <span id="t_1686" from="11822" to="11823" />
+ <span id="t_1687" from="11823" to="11831" />
+ <span id="t_1688" from="11832" to="11839" />
+ <span id="t_1689" from="11840" to="11843" />
+ <span id="t_1690" from="11844" to="11854" />
+ <span id="t_1691" from="11854" to="11855" />
+ <span id="t_1692" from="11856" to="11873" />
+ <span id="t_1693" from="11873" to="11874" />
+ <span id="t_1694" from="11875" to="11885" />
+ <span id="t_1695" from="11886" to="11906" />
+ <span id="t_1696" from="11907" to="11913" />
+ <span id="t_1697" from="11914" to="11918" />
+ <span id="t_1698" from="11919" to="11938" />
+ <span id="t_1699" from="11939" to="11951" />
+ <span id="t_1700" from="11952" to="11955" />
+ <span id="t_1701" from="11955" to="11956" />
+ <span id="t_1702" from="11957" to="11961" />
+ <span id="t_1703" from="11962" to="11965" />
+ <span id="t_1704" from="11966" to="11973" />
+ <span id="t_1705" from="11973" to="11974" />
+ <span id="t_1706" from="11975" to="11977" />
+ <span id="t_1707" from="11978" to="11988" />
+ <span id="t_1708" from="11989" to="11994" />
+ <span id="t_1709" from="11995" to="12003" />
+ <span id="t_1710" from="12004" to="12014" />
+ <span id="t_1711" from="12015" to="12026" />
+ <span id="t_1712" from="12027" to="12028" />
+ <span id="t_1713" from="12028" to="12031" />
+ <span id="t_1714" from="12032" to="12036" />
+ <span id="t_1715" from="12037" to="12040" />
+ <span id="t_1716" from="12041" to="12045" />
+ <span id="t_1717" from="12046" to="12050" />
+ <span id="t_1718" from="12051" to="12054" />
+ <span id="t_1719" from="12055" to="12060" />
+ <span id="t_1720" from="12061" to="12073" />
+ <span id="t_1721" from="12074" to="12081" />
+ <span id="t_1722" from="12081" to="12082" />
+ <span id="t_1723" from="12082" to="12083" />
+ <span id="t_1724" from="12084" to="12099" />
+ <span id="t_1725" from="12100" to="12103" />
+ <span id="t_1726" from="12104" to="12116" />
+ <span id="t_1727" from="12117" to="12120" />
+ <span id="t_1728" from="12121" to="12124" />
+ <span id="t_1729" from="12125" to="12139" />
+ <span id="t_1730" from="12140" to="12151" />
+ <span id="t_1731" from="12151" to="12152" />
+ <span id="t_1732" from="12153" to="12156" />
+ <span id="t_1733" from="12157" to="12169" />
+ <span id="t_1734" from="12170" to="12171" />
+ <span id="t_1735" from="12171" to="12182" />
+ <span id="t_1736" from="12182" to="12183" />
+ <span id="t_1737" from="12184" to="12187" />
+ <span id="t_1738" from="12188" to="12206" />
+ <span id="t_1739" from="12207" to="12210" />
+ <span id="t_1740" from="12211" to="12228" />
+ <span id="t_1741" from="12229" to="12241" />
+ <span id="t_1742" from="12242" to="12254" />
+ <span id="t_1743" from="12255" to="12264" />
+ <span id="t_1744" from="12264" to="12265" />
+ <span id="t_1745" from="12266" to="12268" />
+ <span id="t_1746" from="12269" to="12273" />
+ <span id="t_1747" from="12274" to="12286" />
+ <span id="t_1748" from="12287" to="12293" />
+ <span id="t_1749" from="12294" to="12298" />
+ <span id="t_1750" from="12299" to="12310" />
+ <span id="t_1751" from="12311" to="12319" />
+ <span id="t_1752" from="12320" to="12323" />
+ <span id="t_1753" from="12324" to="12337" />
+ <span id="t_1754" from="12338" to="12347" />
+ <span id="t_1755" from="12348" to="12362" />
+ <span id="t_1756" from="12363" to="12365" />
+ <span id="t_1757" from="12366" to="12375" />
+ <span id="t_1758" from="12375" to="12376" />
+ <span id="t_1759" from="12377" to="12380" />
+ <span id="t_1760" from="12381" to="12394" />
+ <span id="t_1761" from="12395" to="12404" />
+ <span id="t_1762" from="12405" to="12412" />
+ <span id="t_1763" from="12413" to="12419" />
+ <span id="t_1764" from="12420" to="12423" />
+ <span id="t_1765" from="12424" to="12426" />
+ <span id="t_1766" from="12427" to="12435" />
+ <span id="t_1767" from="12436" to="12437" />
+ <span id="t_1768" from="12437" to="12452" />
+ <span id="t_1769" from="12452" to="12453" />
+ <span id="t_1770" from="12454" to="12457" />
+ <span id="t_1771" from="12457" to="12458" />
+ <span id="t_1772" from="12459" to="12462" />
+ <span id="t_1773" from="12463" to="12466" />
+ <span id="t_1774" from="12467" to="12479" />
+ <span id="t_1775" from="12480" to="12487" />
+ <span id="t_1776" from="12488" to="12492" />
+ <span id="t_1777" from="12493" to="12497" />
+ <span id="t_1778" from="12498" to="12499" />
+ <span id="t_1779" from="12499" to="12501" />
+ <span id="t_1780" from="12502" to="12513" />
+ <span id="t_1781" from="12514" to="12516" />
+ <span id="t_1782" from="12517" to="12520" />
+ <span id="t_1783" from="12521" to="12522" />
+ <span id="t_1784" from="12522" to="12540" />
+ <span id="t_1785" from="12540" to="12541" />
+ <span id="t_1786" from="12542" to="12559" />
+ <span id="t_1787" from="12559" to="12560" />
+ <span id="t_1788" from="12560" to="12561" />
+ <span id="t_1789" from="12563" to="12575" />
+ <span id="t_1790" from="12576" to="12586" />
+ <span id="t_1791" from="12588" to="12592" />
+ <span id="t_1792" from="12592" to="12593" />
+ <span id="t_1793" from="12593" to="12605" />
+ <span id="t_1794" from="12606" to="12616" />
+ <span id="t_1795" from="12617" to="12620" />
+ <span id="t_1796" from="12621" to="12635" />
+ <span id="t_1797" from="12636" to="12639" />
+ <span id="t_1798" from="12640" to="12649" />
+ <span id="t_1799" from="12650" to="12654" />
+ <span id="t_1800" from="12655" to="12660" />
+ <span id="t_1801" from="12661" to="12664" />
+ <span id="t_1802" from="12665" to="12668" />
+ <span id="t_1803" from="12669" to="12680" />
+ <span id="t_1804" from="12682" to="12685" />
+ <span id="t_1805" from="12686" to="12704" />
+ <span id="t_1806" from="12705" to="12707" />
+ <span id="t_1807" from="12707" to="12708" />
+ <span id="t_1808" from="12709" to="12714" />
+ <span id="t_1809" from="12715" to="12726" />
+ <span id="t_1810" from="12727" to="12731" />
+ <span id="t_1811" from="12732" to="12742" />
+ <span id="t_1812" from="12743" to="12750" />
+ <span id="t_1813" from="12750" to="12751" />
+ <span id="t_1814" from="12752" to="12755" />
+ <span id="t_1815" from="12756" to="12759" />
+ <span id="t_1816" from="12760" to="12763" />
+ <span id="t_1817" from="12764" to="12771" />
+ <span id="t_1818" from="12772" to="12775" />
+ <span id="t_1819" from="12776" to="12779" />
+ <span id="t_1820" from="12780" to="12792" />
+ <span id="t_1821" from="12793" to="12803" />
+ <span id="t_1822" from="12803" to="12804" />
+ <span id="t_1823" from="12806" to="12820" />
+ <span id="t_1824" from="12822" to="12826" />
+ <span id="t_1825" from="12826" to="12827" />
+ <span id="t_1826" from="12827" to="12835" />
+ <span id="t_1827" from="12835" to="12836" />
+ <span id="t_1828" from="12836" to="12850" />
+ <span id="t_1829" from="12850" to="12851" />
+ <span id="t_1830" from="12851" to="12873" />
+ <span id="t_1831" from="12874" to="12877" />
+ <span id="t_1832" from="12878" to="12892" />
+ <span id="t_1833" from="12893" to="12896" />
+ <span id="t_1834" from="12897" to="12903" />
+ <span id="t_1835" from="12904" to="12909" />
+ <span id="t_1836" from="12910" to="12919" />
+ <span id="t_1837" from="12920" to="12927" />
+ <span id="t_1838" from="12928" to="12939" />
+ <span id="t_1839" from="12940" to="12943" />
+ <span id="t_1840" from="12944" to="12961" />
+ <span id="t_1841" from="12961" to="12962" />
+ <span id="t_1842" from="12963" to="12966" />
+ <span id="t_1843" from="12967" to="12972" />
+ <span id="t_1844" from="12973" to="12976" />
+ <span id="t_1845" from="12977" to="12991" />
+ <span id="t_1846" from="12992" to="12999" />
+ <span id="t_1847" from="12999" to="13000" />
+ <span id="t_1848" from="13001" to="13004" />
+ <span id="t_1849" from="13005" to="13015" />
+ <span id="t_1850" from="13015" to="13016" />
+ <span id="t_1851" from="13017" to="13020" />
+ <span id="t_1852" from="13021" to="13024" />
+ <span id="t_1853" from="13025" to="13030" />
+ <span id="t_1854" from="13031" to="13048" />
+ <span id="t_1855" from="13049" to="13068" />
+ <span id="t_1856" from="13069" to="13075" />
+ <span id="t_1857" from="13075" to="13076" />
+ <span id="t_1858" from="13077" to="13081" />
+ <span id="t_1859" from="13082" to="13089" />
+ <span id="t_1860" from="13090" to="13101" />
+ <span id="t_1861" from="13102" to="13106" />
+ <span id="t_1862" from="13106" to="13107" />
+ <span id="t_1863" from="13108" to="13114" />
+ <span id="t_1864" from="13115" to="13121" />
+ <span id="t_1865" from="13122" to="13127" />
+ <span id="t_1866" from="13128" to="13131" />
+ <span id="t_1867" from="13132" to="13146" />
+ <span id="t_1868" from="13146" to="13147" />
+ <span id="t_1869" from="13148" to="13150" />
+ <span id="t_1870" from="13151" to="13158" />
+ <span id="t_1871" from="13159" to="13168" />
+ <span id="t_1872" from="13169" to="13171" />
+ <span id="t_1873" from="13172" to="13178" />
+ <span id="t_1874" from="13179" to="13182" />
+ <span id="t_1875" from="13183" to="13193" />
+ <span id="t_1876" from="13193" to="13194" />
+ <span id="t_1877" from="13195" to="13200" />
+ <span id="t_1878" from="13201" to="13211" />
+ <span id="t_1879" from="13212" to="13218" />
+ <span id="t_1880" from="13219" to="13228" />
+ <span id="t_1881" from="13228" to="13229" />
+ <span id="t_1882" from="13230" to="13233" />
+ <span id="t_1883" from="13234" to="13238" />
+ <span id="t_1884" from="13239" to="13248" />
+ <span id="t_1885" from="13249" to="13252" />
+ <span id="t_1886" from="13253" to="13259" />
+ <span id="t_1887" from="13259" to="13260" />
+ <span id="t_1888" from="13261" to="13264" />
+ <span id="t_1889" from="13265" to="13271" />
+ <span id="t_1890" from="13272" to="13275" />
+ <span id="t_1891" from="13276" to="13285" />
+ <span id="t_1892" from="13286" to="13289" />
+ <span id="t_1893" from="13290" to="13302" />
+ <span id="t_1894" from="13303" to="13306" />
+ <span id="t_1895" from="13307" to="13314" />
+ <span id="t_1896" from="13315" to="13318" />
+ <span id="t_1897" from="13319" to="13331" />
+ <span id="t_1898" from="13331" to="13332" />
+ <span id="t_1899" from="13334" to="13349" />
+ <span id="t_1900" from="13351" to="13355" />
+ <span id="t_1901" from="13355" to="13356" />
+ <span id="t_1902" from="13356" to="13364" />
+ <span id="t_1903" from="13364" to="13365" />
+ <span id="t_1904" from="13365" to="13380" />
+ <span id="t_1905" from="13380" to="13381" />
+ <span id="t_1906" from="13382" to="13386" />
+ <span id="t_1907" from="13387" to="13396" />
+ <span id="t_1908" from="13397" to="13400" />
+ <span id="t_1909" from="13401" to="13416" />
+ <span id="t_1910" from="13417" to="13429" />
+ <span id="t_1911" from="13429" to="13430" />
+ <span id="t_1912" from="13431" to="13436" />
+ <span id="t_1913" from="13437" to="13445" />
+ <span id="t_1914" from="13446" to="13450" />
+ <span id="t_1915" from="13451" to="13454" />
+ <span id="t_1916" from="13455" to="13467" />
+ <span id="t_1917" from="13468" to="13471" />
+ <span id="t_1918" from="13472" to="13479" />
+ <span id="t_1919" from="13479" to="13480" />
+ <span id="t_1920" from="13481" to="13484" />
+ <span id="t_1921" from="13485" to="13490" />
+ <span id="t_1922" from="13491" to="13494" />
+ <span id="t_1923" from="13495" to="13502" />
+ <span id="t_1924" from="13503" to="13506" />
+ <span id="t_1925" from="13507" to="13516" />
+ <span id="t_1926" from="13517" to="13520" />
+ <span id="t_1927" from="13521" to="13528" />
+ <span id="t_1928" from="13529" to="13535" />
+ <span id="t_1929" from="13536" to="13539" />
+ <span id="t_1930" from="13540" to="13547" />
+ <span id="t_1931" from="13547" to="13548" />
+ <span id="t_1932" from="13549" to="13552" />
+ <span id="t_1933" from="13553" to="13556" />
+ <span id="t_1934" from="13557" to="13571" />
+ <span id="t_1935" from="13572" to="13575" />
+ <span id="t_1936" from="13576" to="13585" />
+ <span id="t_1937" from="13586" to="13591" />
+ <span id="t_1938" from="13592" to="13595" />
+ <span id="t_1939" from="13596" to="13599" />
+ <span id="t_1940" from="13600" to="13611" />
+ <span id="t_1941" from="13612" to="13615" />
+ <span id="t_1942" from="13616" to="13622" />
+ <span id="t_1943" from="13623" to="13631" />
+ <span id="t_1944" from="13631" to="13632" />
+ <span id="t_1945" from="13633" to="13640" />
+ <span id="t_1946" from="13641" to="13645" />
+ <span id="t_1947" from="13646" to="13649" />
+ <span id="t_1948" from="13650" to="13653" />
+ <span id="t_1949" from="13654" to="13664" />
+ <span id="t_1950" from="13665" to="13682" />
+ <span id="t_1951" from="13683" to="13694" />
+ <span id="t_1952" from="13695" to="13707" />
+ <span id="t_1953" from="13708" to="13714" />
+ <span id="t_1954" from="13715" to="13724" />
+ <span id="t_1955" from="13724" to="13725" />
+ <span id="t_1956" from="13726" to="13730" />
+ <span id="t_1957" from="13731" to="13734" />
+ <span id="t_1958" from="13735" to="13737" />
+ <span id="t_1959" from="13738" to="13761" />
+ <span id="t_1960" from="13762" to="13768" />
+ <span id="t_1961" from="13768" to="13769" />
+ <span id="t_1962" from="13770" to="13774" />
+ <span id="t_1963" from="13775" to="13780" />
+ <span id="t_1964" from="13781" to="13784" />
+ <span id="t_1965" from="13785" to="13800" />
+ <span id="t_1966" from="13800" to="13801" />
+ <span id="t_1967" from="13802" to="13804" />
+ <span id="t_1968" from="13805" to="13813" />
+ <span id="t_1969" from="13814" to="13818" />
+ <span id="t_1970" from="13819" to="13828" />
+ <span id="t_1971" from="13828" to="13829" />
+ <span id="t_1972" from="13830" to="13833" />
+ <span id="t_1973" from="13834" to="13839" />
+ <span id="t_1974" from="13840" to="13843" />
+ <span id="t_1975" from="13844" to="13847" />
+ <span id="t_1976" from="13848" to="13863" />
+ <span id="t_1977" from="13863" to="13864" />
+ <span id="t_1978" from="13866" to="13876" />
+ <span id="t_1979" from="13878" to="13881" />
+ <span id="t_1980" from="13882" to="13892" />
+ <span id="t_1981" from="13893" to="13896" />
+ <span id="t_1982" from="13897" to="13906" />
+ <span id="t_1983" from="13907" to="13913" />
+ <span id="t_1984" from="13914" to="13921" />
+ <span id="t_1985" from="13922" to="13926" />
+ <span id="t_1986" from="13927" to="13939" />
+ <span id="t_1987" from="13940" to="13947" />
+ <span id="t_1988" from="13948" to="13964" />
+ <span id="t_1989" from="13965" to="13968" />
+ <span id="t_1990" from="13969" to="13972" />
+ <span id="t_1991" from="13973" to="13984" />
+ <span id="t_1992" from="13984" to="13985" />
+ <span id="t_1993" from="13986" to="13990" />
+ <span id="t_1994" from="13991" to="13994" />
+ <span id="t_1995" from="13995" to="13999" />
+ <span id="t_1996" from="14000" to="14003" />
+ <span id="t_1997" from="14004" to="14010" />
+ <span id="t_1998" from="14011" to="14016" />
+ <span id="t_1999" from="14017" to="14027" />
+ <span id="t_2000" from="14028" to="14031" />
+ <span id="t_2001" from="14031" to="14032" />
+ <span id="t_2002" from="14033" to="14037" />
+ <span id="t_2003" from="14038" to="14041" />
+ <span id="t_2004" from="14042" to="14050" />
+ <span id="t_2005" from="14051" to="14054" />
+ <span id="t_2006" from="14055" to="14061" />
+ <span id="t_2007" from="14062" to="14067" />
+ <span id="t_2008" from="14068" to="14076" />
+ <span id="t_2009" from="14077" to="14086" />
+ <span id="t_2010" from="14087" to="14091" />
+ <span id="t_2011" from="14091" to="14092" />
+ <span id="t_2012" from="14093" to="14099" />
+ <span id="t_2013" from="14100" to="14106" />
+ <span id="t_2014" from="14107" to="14111" />
+ <span id="t_2015" from="14112" to="14115" />
+ <span id="t_2016" from="14116" to="14120" />
+ <span id="t_2017" from="14121" to="14126" />
+ <span id="t_2018" from="14127" to="14136" />
+ <span id="t_2019" from="14137" to="14158" />
+ <span id="t_2020" from="14159" to="14162" />
+ <span id="t_2021" from="14163" to="14167" />
+ <span id="t_2022" from="14168" to="14171" />
+ <span id="t_2023" from="14172" to="14175" />
+ <span id="t_2024" from="14176" to="14188" />
+ <span id="t_2025" from="14189" to="14192" />
+ <span id="t_2026" from="14193" to="14205" />
+ <span id="t_2027" from="14206" to="14228" />
+ <span id="t_2028" from="14229" to="14235" />
+ <span id="t_2029" from="14235" to="14236" />
+ <span id="t_2030" from="14237" to="14239" />
+ <span id="t_2031" from="14240" to="14244" />
+ <span id="t_2032" from="14245" to="14248" />
+ <span id="t_2033" from="14249" to="14260" />
+ <span id="t_2034" from="14261" to="14271" />
+ <span id="t_2035" from="14272" to="14282" />
+ <span id="t_2036" from="14283" to="14286" />
+ <span id="t_2037" from="14287" to="14299" />
+ <span id="t_2038" from="14300" to="14303" />
+ <span id="t_2039" from="14304" to="14314" />
+ <span id="t_2040" from="14314" to="14315" />
+ <span id="t_2041" from="14316" to="14321" />
+ <span id="t_2042" from="14322" to="14325" />
+ <span id="t_2043" from="14326" to="14337" />
+ <span id="t_2044" from="14338" to="14341" />
+ <span id="t_2045" from="14342" to="14345" />
+ <span id="t_2046" from="14346" to="14349" />
+ <span id="t_2047" from="14350" to="14363" />
+ <span id="t_2048" from="14364" to="14374" />
+ <span id="t_2049" from="14375" to="14379" />
+ <span id="t_2050" from="14379" to="14380" />
+ <span id="t_2051" from="14381" to="14385" />
+ <span id="t_2052" from="14385" to="14386" />
+ <span id="t_2053" from="14386" to="14394" />
+ <span id="t_2054" from="14395" to="14399" />
+ <span id="t_2055" from="14399" to="14400" />
+ <span id="t_2056" from="14400" to="14410" />
+ <span id="t_2057" from="14412" to="14420" />
+ <span id="t_2058" from="14422" to="14426" />
+ <span id="t_2059" from="14427" to="14429" />
+ <span id="t_2060" from="14430" to="14435" />
+ <span id="t_2061" from="14436" to="14442" />
+ <span id="t_2062" from="14443" to="14455" />
+ <span id="t_2063" from="14456" to="14459" />
+ <span id="t_2064" from="14460" to="14469" />
+ <span id="t_2065" from="14470" to="14481" />
+ <span id="t_2066" from="14482" to="14495" />
+ <span id="t_2067" from="14496" to="14507" />
+ <span id="t_2068" from="14508" to="14517" />
+ <span id="t_2069" from="14518" to="14524" />
+ <span id="t_2070" from="14524" to="14525" />
+ <span id="t_2071" from="14526" to="14530" />
+ <span id="t_2072" from="14531" to="14544" />
+ <span id="t_2073" from="14545" to="14550" />
+ <span id="t_2074" from="14551" to="14561" />
+ <span id="t_2075" from="14562" to="14568" />
+ <span id="t_2076" from="14568" to="14569" />
+ <span id="t_2077" from="14570" to="14578" />
+ <span id="t_2078" from="14579" to="14587" />
+ <span id="t_2079" from="14588" to="14591" />
+ <span id="t_2080" from="14592" to="14597" />
+ <span id="t_2081" from="14598" to="14603" />
+ <span id="t_2082" from="14604" to="14614" />
+ <span id="t_2083" from="14615" to="14618" />
+ <span id="t_2084" from="14619" to="14627" />
+ <span id="t_2085" from="14627" to="14628" />
+ <span id="t_2086" from="14629" to="14632" />
+ <span id="t_2087" from="14633" to="14636" />
+ <span id="t_2088" from="14637" to="14640" />
+ <span id="t_2089" from="14641" to="14649" />
+ <span id="t_2090" from="14650" to="14653" />
+ <span id="t_2091" from="14654" to="14666" />
+ <span id="t_2092" from="14667" to="14670" />
+ <span id="t_2093" from="14671" to="14674" />
+ <span id="t_2094" from="14675" to="14686" />
+ <span id="t_2095" from="14687" to="14690" />
+ <span id="t_2096" from="14691" to="14695" />
+ <span id="t_2097" from="14696" to="14719" />
+ <span id="t_2098" from="14719" to="14720" />
+ <span id="t_2099" from="14722" to="14732" />
+ <span id="t_2100" from="14734" to="14738" />
+ <span id="t_2101" from="14739" to="14756" />
+ <span id="t_2102" from="14757" to="14764" />
+ <span id="t_2103" from="14765" to="14767" />
+ <span id="t_2104" from="14768" to="14776" />
+ <span id="t_2105" from="14777" to="14791" />
+ <span id="t_2106" from="14792" to="14803" />
+ <span id="t_2107" from="14804" to="14813" />
+ <span id="t_2108" from="14814" to="14818" />
+ <span id="t_2109" from="14819" to="14830" />
+ <span id="t_2110" from="14831" to="14834" />
+ <span id="t_2111" from="14834" to="14835" />
+ <span id="t_2112" from="14836" to="14839" />
+ <span id="t_2113" from="14840" to="14845" />
+ <span id="t_2114" from="14846" to="14855" />
+ <span id="t_2115" from="14856" to="14859" />
+ <span id="t_2116" from="14860" to="14866" />
+ <span id="t_2117" from="14867" to="14870" />
+ <span id="t_2118" from="14871" to="14885" />
+ <span id="t_2119" from="14886" to="14906" />
+ <span id="t_2120" from="14906" to="14907" />
+ <span id="t_2121" from="14908" to="14915" />
+ <span id="t_2122" from="14916" to="14920" />
+ <span id="t_2123" from="14921" to="14924" />
+ <span id="t_2124" from="14925" to="14934" />
+ <span id="t_2125" from="14935" to="14943" />
+ <span id="t_2126" from="14944" to="14954" />
+ <span id="t_2127" from="14955" to="14961" />
+ <span id="t_2128" from="14962" to="14966" />
+ <span id="t_2129" from="14966" to="14967" />
+ <span id="t_2130" from="14968" to="14970" />
+ <span id="t_2131" from="14971" to="14974" />
+ <span id="t_2132" from="14975" to="14986" />
+ <span id="t_2133" from="14987" to="14997" />
+ <span id="t_2134" from="14998" to="15004" />
+ <span id="t_2135" from="15005" to="15010" />
+ <span id="t_2136" from="15011" to="15013" />
+ <span id="t_2137" from="15014" to="15023" />
+ <span id="t_2138" from="15023" to="15024" />
+ <span id="t_2139" from="15025" to="15032" />
+ <span id="t_2140" from="15033" to="15046" />
+ <span id="t_2141" from="15047" to="15050" />
+ <span id="t_2142" from="15051" to="15055" />
+ <span id="t_2143" from="15056" to="15068" />
+ <span id="t_2144" from="15069" to="15070" />
+ <span id="t_2145" from="15070" to="15072" />
+ <span id="t_2146" from="15073" to="15075" />
+ <span id="t_2147" from="15076" to="15079" />
+ <span id="t_2148" from="15079" to="15080" />
+ <span id="t_2149" from="15081" to="15085" />
+ <span id="t_2150" from="15086" to="15089" />
+ <span id="t_2151" from="15090" to="15094" />
+ <span id="t_2152" from="15094" to="15095" />
+ <span id="t_2153" from="15096" to="15110" />
+ <span id="t_2154" from="15110" to="15111" />
+ <span id="t_2155" from="15112" to="15119" />
+ <span id="t_2156" from="15120" to="15138" />
+ <span id="t_2157" from="15139" to="15143" />
+ <span id="t_2158" from="15144" to="15147" />
+ <span id="t_2159" from="15148" to="15153" />
+ <span id="t_2160" from="15154" to="15161" />
+ <span id="t_2161" from="15162" to="15174" />
+ <span id="t_2162" from="15175" to="15178" />
+ <span id="t_2163" from="15179" to="15195" />
+ <span id="t_2164" from="15196" to="15200" />
+ <span id="t_2165" from="15201" to="15207" />
+ <span id="t_2166" from="15208" to="15212" />
+ <span id="t_2167" from="15212" to="15213" />
+ <span id="t_2168" from="15214" to="15217" />
+ <span id="t_2169" from="15218" to="15225" />
+ <span id="t_2170" from="15226" to="15229" />
+ <span id="t_2171" from="15230" to="15232" />
+ <span id="t_2172" from="15233" to="15244" />
+ <span id="t_2173" from="15245" to="15252" />
+ <span id="t_2174" from="15253" to="15256" />
+ <span id="t_2175" from="15257" to="15262" />
+ <span id="t_2176" from="15263" to="15266" />
+ <span id="t_2177" from="15267" to="15276" />
+ <span id="t_2178" from="15277" to="15280" />
+ <span id="t_2179" from="15281" to="15284" />
+ <span id="t_2180" from="15285" to="15288" />
+ <span id="t_2181" from="15289" to="15299" />
+ <span id="t_2182" from="15299" to="15300" />
+ <span id="t_2183" from="15301" to="15304" />
+ <span id="t_2184" from="15305" to="15309" />
+ <span id="t_2185" from="15310" to="15312" />
+ <span id="t_2186" from="15313" to="15318" />
+ <span id="t_2187" from="15319" to="15324" />
+ <span id="t_2188" from="15325" to="15334" />
+ <span id="t_2189" from="15335" to="15341" />
+ <span id="t_2190" from="15342" to="15345" />
+ <span id="t_2191" from="15346" to="15367" />
+ <span id="t_2192" from="15368" to="15379" />
+ <span id="t_2193" from="15380" to="15388" />
+ <span id="t_2194" from="15388" to="15389" />
+ <span id="t_2195" from="15391" to="15396" />
+ <span id="t_2196" from="15397" to="15401" />
+ </spanList>
+</layer>
\ No newline at end of file
diff --git a/t/real/corpus/ICCGER/DeReKo-WPD17/A00-82293/data.xml b/t/real/corpus/ICCGER/DeReKo-WPD17/A00-82293/data.xml
new file mode 100644
index 0000000..8c7d1af
--- /dev/null
+++ b/t/real/corpus/ICCGER/DeReKo-WPD17/A00-82293/data.xml
@@ -0,0 +1,8 @@
+<?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="ICCGER_DeReKo-WPD17.A00-82293"
+ xmlns="http://ids-mannheim.de/ns/KorAP">
+ <text>Es ist aber möglich, die Abbildungsfehler gegenüber einem einfachen System aus einer einzelnen Linse oder einem Spiegel sehr stark zu reduzieren. Dazu werden mehrere Linsen aus verschiedenen Glassorten bzw. Spiegel miteinander kombiniert und evtl. auch asphärische Flächen eingesetzt. Sie werden durch eine Optimierungsrechnung so aufeinanderabgestimmt, dass die gemeinsame Auswirkung aller Abbildungsfehler minimalwird. Dies nennt man Korrektion der Fehler bzw. desoptischen Systems. Dieser Prozess der Korrektion ist sehrkompliziert. Alle hier beschriebenen Abbildungsfehler überlagern sich, undMaßnahmen zur Verminderung eines bestimmten Fehlers beeinflussen imAllgemeinen auch alle anderen. Nur bei Systemen, die ausschließlich durch Spiegel abbilden, tritt kein Farbfehler auf. Monochromatische Fehler Sphärische Aberration mini|hochkant=1.5|Sphärische Aberration zweiter(niedrigster) Ordnung mini|hochkant=1.5|Auf der Abbildung erkennt man, wiedie roten einfallenden Strahlen an einem sphärischen Hohlspiegelreflektiert werden. Den durch die grünen Strahlen erkennbaren Abbildungsfehlernennt man Katakaustik. Die sphärische Aberration, auch Öffnungsfehler oder Kugelgestaltsfehler genannt, ist ein Schärfefehler undbewirkt, dass achsparallel einfallende oder vom gleichen Objektpunkt auf der optischen Achse ausgehende Lichtstrahlen nach dem Durchgang durch das System nicht die gleiche Schnittweite haben. Sie laufen somit nicht in einem Punkt zusammen. Im Allgemeinen ist die Abweichung umso stärker, jeweiter außen der Strahl verläuft. Die Schnittweite des gebrochenen Strahls wird aus Symmetriegründen durch eine gerade Funktion gegeben: Dabei ist der Achsabstand, mit dem der Strahl in das System einfällt, und gibtdie Stärke der sphärischen Aberration k-ter Ordnung an. ist die paraxiale Schnittweite des gebrochenenStrahls. Objektive mit sphärischer Aberration liefern einweiches Bild mit zwar scharfen, aber kontrastarmen Details, zu denennur die achsnahen Strahlen beitragen. Die achsfernen Strahlen erzeugen Halos an Hell-Dunkel-Übergängen. Motive vor und hinter der Ebene maximalerSchärfe werden unterschiedlich unscharf gezeichnet. Es gibt Objektive, deren sphärische Aberration manstufenlos in einem weiten Bereich einstellen kann, um die Unschärfevor und hinter dem Fokus und die Schärfe im Fokus anpassen zukönnen. Mit einem System, das nur sphärische(kugelförmige) brechende oder reflektierende Flächen enthält, kann mankeine von sphärischer Aberration völlig freie reelle Abbildung erreichen (siehe aplanatische Fläche). Mit einer asphärischen Oberfläche einer Linse oder einesSpiegels kann man die sphärische Aberration völlig korrigieren. Allerdings ist das Schleifen einer Kugeloberfläche deutlicheinfacher und damit billiger als das Schleifen asphärisch gekrümmterFlächen. Der weite Einsatz sphärischer Flächen beruht auf der Tatsache, dass ihre Abbildungseigenschaften gut genug sind, bei gleichzeitig akzeptablemHerstellungsaufwand. Die Kosten für asphärisch geschliffene Linsen relativierensich bei Mehrlinsensystemen, da man gegebenenfalls mit weniger Linsendie gleiche Abbildungsgüte erzielen kann. Unterdessen gibt es Verfahren, Asphären hoher Qualität als Presslinge (Molding)herzustellen. Es gibt zwei Herstellungsverfahren: Kleine Linsen könnendirekt gepresst werden; größere werden durch Umformen einervolumengleichen sphärischen Linse hergestellt. Die Größe ist dabei nach oben durch zwei Probleme beschränkt:Zum einen gibt es nur wenige Glassorten, die für eine Umformunggeeignet sind, zum anderen neigen umgeformte Linsen zu Inhomogenitätendurch innere Spannungen, die durch den Umformprozess entstehen. Kleine Kunststofflinsen werden im Spritzgieß-oder Spritzprägeverfahren kostengünstig gefertigt. In einigen Fällen wird auch eineKunststoffschicht auf eine sphärische Glaslinse gegossen und danndurch Pressen in eine asphärische Form gebracht. Mit Hilfe des foucaultschen Schneidenverfahrens lassen sichsphärische Aberrationen auch mit einfachen Mitteln gut nachweisen. In der Massenfertigung optischer Teile sind heute interferometrische Verfahren üblich. Sofern die sphärische Aberration das Auflösungsvermögen begrenzt, kann dieses durch Abblenden bis zur kritischen Blende gesteigert werden. Bei der Reflexion an einem sphärischen Hohlspiegel entsteht ein Abbildungsfehler, dieser trägt den Namen Katakaustik. Astigmatismus schiefer Bündel mini|hochkant=2|Astigmatismus: Objekte, die außerhalbder optischen Achse liegen, werden unscharf abgebildet. Ursache sind die verschiedenen Brennweiten in derMeridional- (M) und Sagittalebene (S). Astigmatismus ist ein Schärfefehler, welcherdas von einem Objektpunkt ausgehende und schräg in das Objektiveinfallende Strahlenbündel betrifft. Dabei ist zwischen Meridional- und Sagittalebene zuunterscheiden. In Richtung der Meridionalebene (M), welche die optischeAchse enthält, ist die Linse perspektivisch verkürzt, dieEinfallswinkel variieren schneller mit dem Versatz des Strahls imBündel. Daraus resultiert eine kürzere Brennweite. Hinzu kommt, dass in den Punkten (BM und BS) keine Punkte, sondern Brennlinien in der jeweils anderen Ebeneabgebildet werden. Somit entsteht vor und hinter den beiden Brennebenen statteines Kreises ein Oval, da jedes Strahlenbündel einer Ebene zurEllipse wird und in jedem Punkt einen anderen Öffnungswinkel hat. Wird ein Schirm hinter die sagittale Brennebene gehalten, istein Oval mit langer Halbachse in meridonaler Richtung (rot) zusehen. Analog dazu ist das Oval vor der meridionalen Brennebene mitlängerer Halbachse in sagittaler Richtung (grün). Dazwischen existiert eine Stelle, wo ein Punkt als unscharfer Kreis abgebildet wird, der kleinste Zerstreuungskreis oder Kreis kleinster Verwirrung . Charakterisiert wird der Astigmatismus durch die astigmatische Differenz, den Abstand zwischenden Brennlinien. Dieser wächst mit stärkerer Neigung des einfallenden Bündelszur optischen Achse, der Linsenstärke, der Linsendicke und derLinsengeometrie. So haben Bi-Linsen im Gegensatz zu durchgebogenen Linsenformen einen besonders starkenAstigmatismus bei schräg einfallendem Einfallsbündel. Dieser Linsenfehler wurde im Mittelalter und früher Neuzeit zur Korrektur des Augenastigmatismus benutzt, indem man schrägdurch die Bi-Brille durchsah und dadurch seinen eigenen Astigmatismuskompensierte. Typisch ist der dadurch entstehende Schneiderblick oder Schneiderhals. Ein optisches System kann so konstruiert werden,dass Astigmatismus-Effekte verringert oder verhindert werden. Solche Optiken heißen Anastigmaten. Diese Bezeichnung hat nur noch historische Bedeutung, dadieser Fehler bei modernen Objektiven nur mehr bei schwerenFabrikationsfehlern auftritt. Eine Ausnahme stellen die Schiefspiegler – eine Gruppe von astronomischenTeleskopen – dar, bei denen der Fehler besonders korrigiertwird. Ein dem Astigmatismus ähnlicher Bildfehler kann bei Spiegelteleskopen der Amateurastronomie auftreten, deren Fokussierung oft durch axiale Verschiebung des Hauptspiegelserfolgt. Dies kann zu kleinen Verkippungen führen, wodurch das Bildder Sterne nicht mehr punktförmig ist, sondern bei Scharfstellung vonextra- bzw. intrafokaler Seite horizontal bzw. vertikal etwas länglicherscheint. AxialerAstigmatismus Unvollkommene Linsen, die nicht korrekt rotationssymmetrischum die optische Achse sind, bilden auch achsparallele Bündelastigmatisch ab. Ein Objektpunkt wird je nach Fokussierung als Strich (längsoder quer) abgebildet. Dieser Fehler spielt in der Augenoptik und der Elektronenoptik eine entscheidende Rolle. Die einfachste Form des axialen Astigmatismus lässt sich durch Kombination mit einer in Brechkraft und Achsrichtung genau dimensionierten Zylinderlinse korrigieren (Zylinderglas in der Brille, Stigmator im Elektronenmikroskop). Die Fertigung von Glaslinsen für sichtbares Licht istinzwischen so vollkommen, dass hier kein störender axialerAstigmatismus auftritt. Koma mini|Koma an einer Sammellinse mini|links|hochkant|Abbildung eines Sterns alsSchweif. Links unten zum Vergleich das Beugungsscheibchen beifehlerfreier, z. B. achsennaher Abbildung. Die Koma (Asymmetriefehler, von lat. coma ‚Schopf, Schweif‘) entsteht beischräg zur optischen Achse einfallendem Strahlenbündel durch eineÜberlagerung zweier Abbildungsfehler: der auch bei achsparallelemBündel wirkenden sphärischen Aberration und dem Astigmatismus schieferBündel. Anstelle eines scharfen Beugungsscheibchens entsteht einBildpunkt mit zum Rand der Optik gerichtetem „Schweif“,der dem Phänomen den Namen gibt. Durch Abblenden der Randstrahlen kann die Erscheinunggemindert werden, der Astigmatismus schiefer Bündel bleibt aberbestehen. Koma kann sowohl bei Linsen als auch beiSpiegeloptiken auftreten. Optische Systeme bei denen sowohl die sphärische Aberration als auch die Koma vollständig korrigiert sind, heißen Aplanate. Bildfeldwölbung weitergehender Artikel Petzvalsche Bildfeldwölbung [[Datei:Objektmikrometer4x.jpg|mini|Ein Objektmikrometer bei geringer mikroskopischerVergrößerung (Vierfach-Objektiv); besonders am rechten Rand des Bildesist die Bildfeldwölbung an der Unschärfe der Skalierung zu erkennen.]] Wenn eine Optik eine Bildfeldwölbung aufweist,wird das Bild nicht auf einer Ebene, sondern auf einer gewölbtenFläche erzeugt – es ist daher ein sogenannter Lagefehler. Die Position des Strahlenschnittpunkts längs der optischen Achse ist dann von der Bildhöheabhängig, das heißt je weiter Objekt- und damit Bildpunkte von derAchse entfernt sind, umso mehr ist der Bildpunkt in Achsrichtungverschoben (typischerweise nach vorn, zum Objektiv hin). Somit kann man auf einer ebenenProjektionsfläche das Bild eines ebenen Gegenstandes nicht auf derganzen Fläche scharf abbilden. Wenn man auf die Bildmitte fokussiert, ist der Rand unscharfund umgekehrt. Bildfeldwölbungen gibt es nicht nur beiObjektiven, sondern auch bei anderen optischen Bauteilen, z. B. bei Okularen oder Projektoren. Sie kann jedoch – wie die meisten anderenAbbildungsfehler – durch spezielle Anordnung der Linsen unter der Toleranzschwelle gehalten werden(Planfeldoptik). Planfeldoptiken sind auch bei Scannern zur Lasergravur erforderlich, um ebene Flächen zubearbeiten. Bei manchen Spezialkameras wird dagegen dieBildfeldwölbung durch Anpressen des fotografischen Films an eine gekrümmte Fläche ausgeglichen, beispielsweise bei der Baker-Nunn-Satellitenkamera. Bei Digitalkameras können gewölbte Bildsensoren eingesetzt werden, um den Bildfehler zukompensieren. Verzeichnung hochkant=1.5|mini|Geometrische Verzeichnung Verzeichnung ist ein Lagefehler und bedeutet,dass die Bildhöhe (Abstand eines Bildpunkts von der Bildmitte) aufnichtlineare Weise von der Höhe des entsprechenden Objektpunktsabhängt. Man kann auch sagen: Der Abbildungsmaßstab hängt von der Höhe desObjektpunkts ab. Man beachte, dass hier der Begriff „Bildmitte“nicht den rechnerischen Mittelpunkt des Bildes bezeichnet, der sichdurch die Pixelzahl ergibt. Vielmehr ist der Punkt gemeint, in dem die optische Achse dieBildebene schneidet. Dieser Punkt wird auch als Verzeichnungszentrumbezeichnet. Verzeichnung bewirkt, dass gerade Linien, derenAbbild nicht durch die Bildmitte geht, gekrümmt wiedergegebenwerden. Wenn der Abbildungsmaßstab mit zunehmender Höhe abnimmt, nennt man dies tonnenförmige Verzeichnung. Dann wird ein Quadrat mit nach außen gewölbten Seitenabgebildet, sieht also etwa wie eine Tonne aus (Name). Den umgekehrten Fall nennt man kissenförmige Verzeichnung. Dann sieht das Quadrat aus wie ein Sofakissen. Es kann auch wellenförmige Verzeichnungauftreten, wenn sich verschiedene Ordnungen der Verzeichnungüberlagern. Gerade Linien werden dann wie Wellenlinien nach beiden Seitengekrümmt. Weitwinkelobjektive in Retrofokus-Bauweise (Schnittweite größer als Brennweite) neigen zur tonnenförmigen Verzeichnung undTeleobjektive (Baulänge kleiner als Brennweite) zurkissenförmigen. Sogenannte Fischaugen-Objektive weisen eine starketonnenförmige Verzeichnung auf. Dies ist gewollt, um einerseits einen größeren Bildwinkel zuerreichen (180 Grad und mehr sind nur durch Verzeichnung möglich), undandererseits die Verzeichnung für die Bildgestaltung einzusetzen. Bei Feldstechern (Ferngläsern) mit Weitwinkelokularen ist einekissenförmige Verzeichnung ausdrücklich erwünscht, um beim Schwenkendes Glases eine unangenehme Bewegung des Vordergrundes gegenüber demHintergrund zu vermeiden. Die physikalische Grundlage hierfür stellt die so genannte „Winkelbedingung“ dar, die bei Feldstechern erfüllt sein soll (im Unterschied zu der „Tangentenbedingung“ beiFotoobjektiven). Chromatische Aberration mini|Chromatische Aberration Der Brechungsindex von optischem Glas hängt von der Wellenlänge des einfallendenLichts ab. Diese Erscheinung wird Dispersion genannt. Sie ist die Ursache für die chromatische Aberration. Farbquerfehler mini|hochkant|Farbquerfehler,Ausschnittvergrößerung Der Brechungsindex der Linsen eines optischen Systems beeinflusst den Abbildungsmaßstab, der somit von derWellenlänge abhängt. Die Teilbilder, die vom Licht unterschiedlicher Wellenlängegebildet werden, sind dadurch verschieden groß. Diesen Effekt nennt man Farbquerfehler. Er bewirkt Farbsäume an Kanten des Bildmotivs, falls diesenicht radial verlaufen, und eine Unschärfe des Bildes. Die Breite der Farbsäume ist proportional zum Abstand von derBildmitte. Farblängsfehler mini|hochkant|Farblängsfehler: Rote Farbsäume vor dereigentlichen Schärfeebene, grüne dahinter Auch die Schnittweite des Systems, und damit der Abstand des Bildesvon der letzten Fläche des Systems, ist vom Brechungsindex der Linsenund somit von der Wellenlänge des Lichts abhängig. Dadurch kann man die Teilbilder unterschiedlicher Farbennicht gleichzeitig scharf auffangen, weil sie an verschiedenenPositionen stehen. Dies nennt man Farblängsfehler. Es entsteht eine Unschärfe, die nicht von der Bildhöheabhängt. Gaußfehler Die Dispersion der optischen Gläser bewirkt eine Variationder übrigen Abbildungsfehler mit der Wellenlänge. Wenn die Koma für grünes Licht korrigiert ist, kann sie fürrotes und blaues Licht trotzdem vorhanden sein. Dieser Effekt kann die Güte eines Objektivs erheblichbeeinflussen und muss bei der Konstruktion von hochwertigen Systemenberücksichtigt werden. Im Fall der sphärischen Aberration bezeichnet man diesenEffekt als Gaußfehler, wobei die Bezeichnung oft auf die übrigenFehler ausgedehnt wird. mini|Achromat mini|Apochromat Achromat Wenn in einem System Linsengläser mit erheblich voneinander verschiedenen Abbe-Zahlen verwendet werden, kann derFarbfehler stark verringert werden. Speziell versteht man unter einem Achromaten ein Objektiv, bei dem die Änderung der Schnittweite mit der Wellenlänge für eine Wellenlängeverschwindet. Apochromat Eine Weiterentwicklung stellen so genannte apochromatisch korrigierte Objektive oder Apochromate dar. Für diese verwendet man Gläser mit ungewöhnlichem Dispersionsverhalten, wodurch auch das sekundäre Spektrum korrigiert werden kann. In der klassischen Ausführung werden diese so berechnet, dassdie Schnittweiten bei drei Wellenlängen (z. B. Rot, Grün und Blau) übereinstimmen, wodurch derFarblängsfehler auch bei allen anderen Wellenlängen des sichtbarenLichts sehr gering wird. Ein Hinweis auf so korrigierte Systeme ist meist die Abkürzung APO auf den Objektiven. Sie sind in aller Regel bedeutend teurer als lediglichachromatisch korrigierte Produkte. Siehe auch </text>
+</raw_text>
\ No newline at end of file
diff --git a/t/real/corpus/ICCGER/DeReKo-WPD17/A00-82293/header.xml b/t/real/corpus/ICCGER/DeReKo-WPD17/A00-82293/header.xml
new file mode 100644
index 0000000..e029b01
--- /dev/null
+++ b/t/real/corpus/ICCGER/DeReKo-WPD17/A00-82293/header.xml
@@ -0,0 +1,37 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<teiHeader>
+ <fileDesc>
+ <titleStmt>
+ <title>WPD17/A00.82293 Abbildungsfehler, In: Wikipedia -
+ URL:http://de.wikipedia.org/wiki/Abbildungsfehler: Wikipedia, 2017 [Extract]</title>
+ <respStmt>
+ <resp>compiled by ICC</resp>
+ <name>ICC: IDS</name>
+ </respStmt>
+ </titleStmt>
+ <publicationStmt>
+ <distributor>
+ <note>NOT FOR DISTRIBUTION</note>
+ <note>German Reference Corpus DeReKo</note>
+ </distributor>
+ <idno>ID</idno>
+ </publicationStmt>
+ <sourceDesc>
+ <bibl>
+ <author>AV-Portal, u.a.</author>
+ <title>Abbildungsfehler</title>
+ <pubPlace/>
+ <publisher/>
+ <date when="2017">2017</date>
+ </bibl>
+ </sourceDesc>
+ </fileDesc>
+ <profileDesc>
+ <textClass>
+ <classCode scheme="ICC">Learned_Technology</classCode>
+ </textClass>
+ </profileDesc>
+ <revisionDesc>
+ <change when="2022-12-21" who="IDS">Updated conversion from TEI I5</change>
+ </revisionDesc>
+ </teiHeader>
\ No newline at end of file
diff --git a/t/real/corpus/ICCGER/DeReKo-WPD17/A00-82293/struct/structure.xml b/t/real/corpus/ICCGER/DeReKo-WPD17/A00-82293/struct/structure.xml
new file mode 100644
index 0000000..6859ab1
--- /dev/null
+++ b/t/real/corpus/ICCGER/DeReKo-WPD17/A00-82293/struct/structure.xml
@@ -0,0 +1,2428 @@
+<?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="ICCGER_DeReKo-WPD17.A00-82293"
+ xmlns="http://ids-mannheim.de/ns/KorAP"
+ version="KorAP-0.4">
+ <spanList>
+ <span id="s0" from="0" to="15402" l="1">
+ <fs type="struct" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="name">text</f>
+ </fs>
+ </span>
+ <span id="s1" from="0" to="15402" l="2">
+ <fs type="struct" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="name">body</f>
+ </fs>
+ </span>
+ <span id="s2" from="0" to="782" l="3">
+ <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="type">fix2</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s3" from="0" to="484" l="4">
+ <fs type="struct" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="name">p</f>
+ </fs>
+ </span>
+ <span id="s4" from="0" to="145" l="5">
+ <fs type="struct" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="name">s</f>
+ </fs>
+ </span>
+ <span id="s5" from="95" to="100" l="6">
+ <fs type="struct" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="name">ref</f>
+ <f name="attr">
+ <fs type="attr">
+ <f name="target">https://de.wikipedia.org/wiki/Linse_%28Optik%29</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s6" from="146" to="284" l="5">
+ <fs type="struct" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="name">s</f>
+ </fs>
+ </span>
+ <span id="s7" from="253" to="264" l="6">
+ <fs type="struct" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="name">ref</f>
+ <f name="attr">
+ <fs type="attr">
+ <f name="target">https://de.wikipedia.org/wiki/Asph%C3%A4risch</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s8" from="285" to="420" l="5">
+ <fs type="struct" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="name">s</f>
+ </fs>
+ </span>
+ <span id="s9" from="421" to="484" l="5">
+ <fs type="struct" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="name">s</f>
+ </fs>
+ </span>
+ <span id="s10" from="436" to="446" l="6">
+ <fs type="struct" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="name">hi</f>
+ <f name="attr">
+ <fs type="attr">
+ <f name="rend">it</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s11" from="484" to="782" l="4">
+ <fs type="struct" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="name">p</f>
+ </fs>
+ </span>
+ <span id="s12" from="485" to="535" l="5">
+ <fs type="struct" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="name">s</f>
+ </fs>
+ </span>
+ <span id="s13" from="536" to="694" l="5">
+ <fs type="struct" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="name">s</f>
+ </fs>
+ </span>
+ <span id="s14" from="695" to="782" l="5">
+ <fs type="struct" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="name">s</f>
+ </fs>
+ </span>
+ <span id="s15" from="738" to="745" l="6">
+ <fs type="struct" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="name">ref</f>
+ <f name="attr">
+ <fs type="attr">
+ <f name="target">https://de.wikipedia.org/wiki/Spiegel</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s16" from="782" to="4364" l="3">
+ <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="type">fix2</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s17" from="782" to="808" l="4">
+ <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="783" to="808" l="5">
+ <fs type="struct" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="name">s</f>
+ </fs>
+ </span>
+ <span id="s19" from="808" to="832" l="4">
+ <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="s20" from="809" to="832" l="5">
+ <fs type="struct" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="name">s</f>
+ </fs>
+ </span>
+ <span id="s21" from="832" to="832" l="6">
+ <fs type="struct" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="name">gap</f>
+ <f name="attr">
+ <fs type="attr">
+ <f name="reason">template</f>
+ <f name="instant">false</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s22" from="832" to="1118" l="4">
+ <fs type="struct" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="name">p</f>
+ </fs>
+ </span>
+ <span id="s23" from="832" to="1037" l="5">
+ <fs type="struct" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="name">s</f>
+ </fs>
+ </span>
+ <span id="s24" from="833" to="901" l="6">
+ <fs type="struct" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="name">ref</f>
+ <f name="attr">
+ <fs type="attr">
+ <f name="target">https://de.wikipedia.org/wiki/Datei%3ASphaerische_Aberration.svg</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s25" from="902" to="1037" l="6">
+ <fs type="struct" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="name">ref</f>
+ <f name="attr">
+ <fs type="attr">
+ <f name="target">https://de.wikipedia.org/wiki/Datei%3AAbbildungsfehler_am_Hohlspiegel_%28Katakaustik%29.svg</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s26" from="1037" to="1118" l="5">
+ <fs type="struct" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="name">ref</f>
+ <f name="attr">
+ <fs type="attr">
+ <f name="target">https://de.wikipedia.org/wiki/Datei%3AAbbildungsfehler_am_Hohlspiegel_%28Katakaustik%29.svg</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s27" from="1038" to="1118" l="6">
+ <fs type="struct" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="name">s</f>
+ </fs>
+ </span>
+ <span id="s28" from="1118" to="1653" l="4">
+ <fs type="struct" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="name">p</f>
+ </fs>
+ </span>
+ <span id="s29" from="1119" to="1416" l="5">
+ <fs type="struct" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="name">s</f>
+ </fs>
+ </span>
+ <span id="s30" from="1123" to="1144" l="6">
+ <fs type="struct" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="name">hi</f>
+ <f name="attr">
+ <fs type="attr">
+ <f name="rend">it</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s31" from="1151" to="1165" l="6">
+ <fs type="struct" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="name">hi</f>
+ <f name="attr">
+ <fs type="attr">
+ <f name="rend">it</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s32" from="1171" to="1190" l="6">
+ <fs type="struct" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="name">hi</f>
+ <f name="attr">
+ <fs type="attr">
+ <f name="rend">it</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s33" from="1302" to="1317" l="6">
+ <fs type="struct" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="name">ref</f>
+ <f name="attr">
+ <fs type="attr">
+ <f name="target">https://de.wikipedia.org/wiki/Optische_Achse_%28Optik%29</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s34" from="1397" to="1409" l="6">
+ <fs type="struct" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="name">ref</f>
+ <f name="attr">
+ <fs type="attr">
+ <f name="target">https://de.wikipedia.org/wiki/Schnittweite</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s35" from="1417" to="1548" l="5">
+ <fs type="struct" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="name">s</f>
+ </fs>
+ </span>
+ <span id="s36" from="1464" to="1464" l="6">
+ <fs type="struct" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="name">ptr</f>
+ <f name="attr">
+ <fs type="attr">
+ <f name="target">WPD17.A00.82293-f2</f>
+ <f name="rend">ref</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s37" from="1549" to="1653" l="5">
+ <fs type="struct" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="name">s</f>
+ </fs>
+ </span>
+ <span id="s38" from="1566" to="1566" l="6">
+ <fs type="struct" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="name">gap</f>
+ <f name="attr">
+ <fs type="attr">
+ <f name="reason">math</f>
+ <f name="instant">false</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s39" from="1628" to="1643" l="6">
+ <fs type="struct" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="name">ref</f>
+ <f name="attr">
+ <fs type="attr">
+ <f name="target">https://de.wikipedia.org/wiki/Gerade_Funktion</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s40" from="1653" to="1845" l="4">
+ <fs type="struct" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="name">p</f>
+ </fs>
+ </span>
+ <span id="s41" from="1654" to="1789" l="5">
+ <fs type="struct" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="name">s</f>
+ </fs>
+ </span>
+ <span id="s42" from="1664" to="1664" l="6">
+ <fs type="struct" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="name">gap</f>
+ <f name="attr">
+ <fs type="attr">
+ <f name="reason">math</f>
+ <f name="instant">false</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s43" from="1729" to="1729" l="6">
+ <fs type="struct" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="name">gap</f>
+ <f name="attr">
+ <fs type="attr">
+ <f name="reason">math</f>
+ <f name="instant">false</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s44" from="1789" to="1845" l="5">
+ <fs type="struct" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="name">s</f>
+ </fs>
+ </span>
+ <span id="s45" from="1790" to="1790" l="6">
+ <fs type="struct" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="name">gap</f>
+ <f name="attr">
+ <fs type="attr">
+ <f name="reason">math</f>
+ <f name="instant">false</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s46" from="1799" to="1808" l="6">
+ <fs type="struct" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="name">ref</f>
+ <f name="attr">
+ <fs type="attr">
+ <f name="target">https://de.wikipedia.org/wiki/Paraxiale_Optik</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s47" from="1845" to="2065" l="4">
+ <fs type="struct" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="name">p</f>
+ </fs>
+ </span>
+ <span id="s48" from="1846" to="1999" l="5">
+ <fs type="struct" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="name">s</f>
+ </fs>
+ </span>
+ <span id="s49" from="2000" to="2065" l="5">
+ <fs type="struct" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="name">s</f>
+ </fs>
+ </span>
+ <span id="s50" from="2033" to="2038" l="6">
+ <fs type="struct" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="name">ref</f>
+ <f name="attr">
+ <fs type="attr">
+ <f name="target">https://de.wikipedia.org/wiki/Halo_%28Lichteffekt%29</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s51" from="2065" to="2344" l="4">
+ <fs type="struct" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="name">p</f>
+ </fs>
+ </span>
+ <span id="s52" from="2066" to="2158" l="5">
+ <fs type="struct" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="name">s</f>
+ </fs>
+ </span>
+ <span id="s53" from="2159" to="2344" l="5">
+ <fs type="struct" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="name">s</f>
+ </fs>
+ </span>
+ <span id="s54" from="2167" to="2176" l="6">
+ <fs type="struct" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="name">ref</f>
+ <f name="attr">
+ <fs type="attr">
+ <f name="target">https://de.wikipedia.org/wiki/Objektiv_%28Optik%29</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s55" from="2344" to="3139" l="4">
+ <fs type="struct" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="name">p</f>
+ </fs>
+ </span>
+ <span id="s56" from="2345" to="2552" l="5">
+ <fs type="struct" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="name">s</f>
+ </fs>
+ </span>
+ <span id="s57" from="2531" to="2550" l="6">
+ <fs type="struct" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="name">ref</f>
+ <f name="attr">
+ <fs type="attr">
+ <f name="target">https://de.wikipedia.org/wiki/Aplanat</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s58" from="2553" to="2672" l="5">
+ <fs type="struct" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="name">s</f>
+ </fs>
+ </span>
+ <span id="s59" from="2563" to="2575" l="6">
+ <fs type="struct" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="name">ref</f>
+ <f name="attr">
+ <fs type="attr">
+ <f name="target">https://de.wikipedia.org/wiki/Asph%C3%A4risch</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s60" from="2673" to="2808" l="5">
+ <fs type="struct" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="name">s</f>
+ </fs>
+ </span>
+ <span id="s61" from="2692" to="2701" l="6">
+ <fs type="struct" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="name">ref</f>
+ <f name="attr">
+ <fs type="attr">
+ <f name="target">https://de.wikipedia.org/wiki/Schleifen_%28Fertigungsverfahren%29</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s62" from="2809" to="2970" l="5">
+ <fs type="struct" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="name">s</f>
+ </fs>
+ </span>
+ <span id="s63" from="2906" to="2915" l="6">
+ <fs type="struct" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="name">hi</f>
+ <f name="attr">
+ <fs type="attr">
+ <f name="rend">it</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s64" from="2971" to="3139" l="5">
+ <fs type="struct" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="name">s</f>
+ </fs>
+ </span>
+ <span id="s65" from="3139" to="3652" l="4">
+ <fs type="struct" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="name">p</f>
+ </fs>
+ </span>
+ <span id="s66" from="3140" to="3232" l="5">
+ <fs type="struct" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="name">s</f>
+ </fs>
+ </span>
+ <span id="s67" from="3171" to="3179" l="6">
+ <fs type="struct" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="name">hi</f>
+ <f name="attr">
+ <fs type="attr">
+ <f name="rend">it</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s68" from="3233" to="3394" l="5">
+ <fs type="struct" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="name">s</f>
+ </fs>
+ </span>
+ <span id="s69" from="3395" to="3652" l="5">
+ <fs type="struct" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="name">s</f>
+ </fs>
+ </span>
+ <span id="s70" from="3652" to="3748" l="4">
+ <fs type="struct" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="name">p</f>
+ </fs>
+ </span>
+ <span id="s71" from="3653" to="3748" l="5">
+ <fs type="struct" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="name">s</f>
+ </fs>
+ </span>
+ <span id="s72" from="3748" to="3894" l="4">
+ <fs type="struct" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="name">p</f>
+ </fs>
+ </span>
+ <span id="s73" from="3749" to="3894" l="5">
+ <fs type="struct" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="name">s</f>
+ </fs>
+ </span>
+ <span id="s74" from="3894" to="4107" l="4">
+ <fs type="struct" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="name">p</f>
+ </fs>
+ </span>
+ <span id="s75" from="3895" to="4020" l="5">
+ <fs type="struct" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="name">s</f>
+ </fs>
+ </span>
+ <span id="s76" from="3909" to="3942" l="6">
+ <fs type="struct" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="name">ref</f>
+ <f name="attr">
+ <fs type="attr">
+ <f name="target">https://de.wikipedia.org/wiki/Foucaultsches_Schneidenverfahren</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s77" from="4021" to="4107" l="5">
+ <fs type="struct" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="name">s</f>
+ </fs>
+ </span>
+ <span id="s78" from="4071" to="4089" l="6">
+ <fs type="struct" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="name">ref</f>
+ <f name="attr">
+ <fs type="attr">
+ <f name="target">https://de.wikipedia.org/wiki/Interferometrie</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s79" from="4107" to="4246" l="4">
+ <fs type="struct" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="name">p</f>
+ </fs>
+ </span>
+ <span id="s80" from="4108" to="4246" l="5">
+ <fs type="struct" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="name">s</f>
+ </fs>
+ </span>
+ <span id="s81" from="4145" to="4163" l="6">
+ <fs type="struct" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="name">ref</f>
+ <f name="attr">
+ <fs type="attr">
+ <f name="target">https://de.wikipedia.org/wiki/Aufl%C3%B6sungsverm%C3%B6gen</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s82" from="4210" to="4227" l="6">
+ <fs type="struct" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="name">ref</f>
+ <f name="attr">
+ <fs type="attr">
+ <f name="target">https://de.wikipedia.org/wiki/Kritische_Blende</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s83" from="4246" to="4364" l="4">
+ <fs type="struct" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="name">p</f>
+ </fs>
+ </span>
+ <span id="s84" from="4247" to="4364" l="5">
+ <fs type="struct" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="name">s</f>
+ </fs>
+ </span>
+ <span id="s85" from="4352" to="4363" l="6">
+ <fs type="struct" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="name">ref</f>
+ <f name="attr">
+ <fs type="attr">
+ <f name="target">https://de.wikipedia.org/wiki/Katakaustik</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s86" from="4364" to="4364" l="5">
+ <fs type="struct" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="name">s</f>
+ </fs>
+ </span>
+ <span id="s87" from="4364" to="4364" l="6">
+ <fs type="struct" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="name">gap</f>
+ <f name="attr">
+ <fs type="attr">
+ <f name="reason">template</f>
+ <f name="instant">false</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s88" from="4364" to="7218" l="3">
+ <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="type">fix2</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s89" from="4364" to="4396" l="4">
+ <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="s90" from="4365" to="4396" l="5">
+ <fs type="struct" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="name">s</f>
+ </fs>
+ </span>
+ <span id="s91" from="4396" to="4396" l="6">
+ <fs type="struct" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="name">gap</f>
+ <f name="attr">
+ <fs type="attr">
+ <f name="reason">template</f>
+ <f name="instant">false</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s92" from="4396" to="5033" l="4">
+ <fs type="struct" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="name">p</f>
+ </fs>
+ </span>
+ <span id="s93" from="4396" to="4505" l="5">
+ <fs type="struct" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="name">s</f>
+ </fs>
+ </span>
+ <span id="s94" from="4397" to="4505" l="6">
+ <fs type="struct" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="name">ref</f>
+ <f name="attr">
+ <fs type="attr">
+ <f name="target">https://de.wikipedia.org/wiki/Datei%3AMeridional%2BSagittalPlane.png</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s95" from="4505" to="4593" l="5">
+ <fs type="struct" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="name">ref</f>
+ <f name="attr">
+ <fs type="attr">
+ <f name="target">https://de.wikipedia.org/wiki/Datei%3AMeridional%2BSagittalPlane.png</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s96" from="4506" to="4593" l="6">
+ <fs type="struct" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="name">s</f>
+ </fs>
+ </span>
+ <span id="s97" from="4594" to="4738" l="5">
+ <fs type="struct" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="name">s</f>
+ </fs>
+ </span>
+ <span id="s98" from="4739" to="4804" l="5">
+ <fs type="struct" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="name">s</f>
+ </fs>
+ </span>
+ <span id="s99" from="4758" to="4787" l="6">
+ <fs type="struct" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="name">ref</f>
+ <f name="attr">
+ <fs type="attr">
+ <f name="target">https://de.wikipedia.org/wiki/Sagittalebene_%28Optik%29</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s100" from="4805" to="4990" l="5">
+ <fs type="struct" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="name">s</f>
+ </fs>
+ </span>
+ <span id="s101" from="4991" to="5033" l="5">
+ <fs type="struct" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="name">s</f>
+ </fs>
+ </span>
+ <span id="s102" from="5033" to="5737" l="4">
+ <fs type="struct" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="name">p</f>
+ </fs>
+ </span>
+ <span id="s103" from="5034" to="5159" l="5">
+ <fs type="struct" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="name">s</f>
+ </fs>
+ </span>
+ <span id="s104" from="5069" to="5070" l="6">
+ <fs type="struct" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="name">hi</f>
+ <f name="attr">
+ <fs type="attr">
+ <f name="rend">sub</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s105" from="5076" to="5077" l="6">
+ <fs type="struct" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="name">hi</f>
+ <f name="attr">
+ <fs type="attr">
+ <f name="rend">sub</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s106" from="5101" to="5112" l="6">
+ <fs type="struct" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="name">hi</f>
+ <f name="attr">
+ <fs type="attr">
+ <f name="rend">it</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s107" from="5160" to="5346" l="5">
+ <fs type="struct" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="name">s</f>
+ </fs>
+ </span>
+ <span id="s108" from="5347" to="5476" l="5">
+ <fs type="struct" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="name">s</f>
+ </fs>
+ </span>
+ <span id="s109" from="5477" to="5586" l="5">
+ <fs type="struct" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="name">s</f>
+ </fs>
+ </span>
+ <span id="s110" from="5587" to="5737" l="5">
+ <fs type="struct" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="name">s</f>
+ </fs>
+ </span>
+ <span id="s111" from="5676" to="5702" l="6">
+ <fs type="struct" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="name">hi</f>
+ <f name="attr">
+ <fs type="attr">
+ <f name="rend">it</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s112" from="5708" to="5736" l="6">
+ <fs type="struct" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="name">hi</f>
+ <f name="attr">
+ <fs type="attr">
+ <f name="rend">it</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s113" from="5709" to="5735" l="7">
+ <fs type="struct" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="name">ref</f>
+ <f name="attr">
+ <fs type="attr">
+ <f name="target">https://de.wikipedia.org/wiki/Kreis_kleinster_Verwirrung</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s114" from="5737" to="6403" l="4">
+ <fs type="struct" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="name">p</f>
+ </fs>
+ </span>
+ <span id="s115" from="5738" to="5848" l="5">
+ <fs type="struct" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="name">s</f>
+ </fs>
+ </span>
+ <span id="s116" from="5787" to="5810" l="6">
+ <fs type="struct" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="name">hi</f>
+ <f name="attr">
+ <fs type="attr">
+ <f name="rend">it</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s117" from="5849" to="5987" l="5">
+ <fs type="struct" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="name">s</f>
+ </fs>
+ </span>
+ <span id="s118" from="5988" to="6127" l="5">
+ <fs type="struct" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="name">s</f>
+ </fs>
+ </span>
+ <span id="s119" from="6023" to="6037" l="6">
+ <fs type="struct" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="name">hi</f>
+ <f name="attr">
+ <fs type="attr">
+ <f name="rend">it</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s120" from="6128" to="6332" l="5">
+ <fs type="struct" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="name">s</f>
+ </fs>
+ </span>
+ <span id="s121" from="6206" to="6224" l="6">
+ <fs type="struct" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="name">ref</f>
+ <f name="attr">
+ <fs type="attr">
+ <f name="target">https://de.wikipedia.org/wiki/Astigmatismus_%28Medizin%29</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s122" from="6333" to="6403" l="5">
+ <fs type="struct" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="name">s</f>
+ </fs>
+ </span>
+ <span id="s123" from="6369" to="6383" l="6">
+ <fs type="struct" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="name">hi</f>
+ <f name="attr">
+ <fs type="attr">
+ <f name="rend">it</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s124" from="6389" to="6402" l="6">
+ <fs type="struct" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="name">hi</f>
+ <f name="attr">
+ <fs type="attr">
+ <f name="rend">it</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s125" from="6403" to="6832" l="4">
+ <fs type="struct" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="name">p</f>
+ </fs>
+ </span>
+ <span id="s126" from="6404" to="6513" l="5">
+ <fs type="struct" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="name">s</f>
+ </fs>
+ </span>
+ <span id="s127" from="6514" to="6549" l="5">
+ <fs type="struct" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="name">s</f>
+ </fs>
+ </span>
+ <span id="s128" from="6536" to="6548" l="6">
+ <fs type="struct" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="name">ref</f>
+ <f name="attr">
+ <fs type="attr">
+ <f name="target">https://de.wikipedia.org/wiki/Anastigmat</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s129" from="6550" to="6694" l="5">
+ <fs type="struct" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="name">s</f>
+ </fs>
+ </span>
+ <span id="s130" from="6695" to="6832" l="5">
+ <fs type="struct" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="name">s</f>
+ </fs>
+ </span>
+ <span id="s131" from="6721" to="6735" l="6">
+ <fs type="struct" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="name">ref</f>
+ <f name="attr">
+ <fs type="attr">
+ <f name="target">https://de.wikipedia.org/wiki/Schiefspiegler</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s132" from="6832" to="7218" l="4">
+ <fs type="struct" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="name">p</f>
+ </fs>
+ </span>
+ <span id="s133" from="6833" to="7010" l="5">
+ <fs type="struct" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="name">s</f>
+ </fs>
+ </span>
+ <span id="s134" from="6885" to="6902" l="6">
+ <fs type="struct" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="name">ref</f>
+ <f name="attr">
+ <fs type="attr">
+ <f name="target">https://de.wikipedia.org/wiki/Spiegelteleskop</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s135" from="6942" to="6954" l="6">
+ <fs type="struct" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="name">ref</f>
+ <f name="attr">
+ <fs type="attr">
+ <f name="target">https://de.wikipedia.org/wiki/Fokussierung</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s136" from="7011" to="7218" l="5">
+ <fs type="struct" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="name">s</f>
+ </fs>
+ </span>
+ <span id="s137" from="7218" to="7912" l="3">
+ <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="type">fix2</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s138" from="7218" to="7241" l="4">
+ <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="s139" from="7218" to="7241" l="5">
+ <fs type="struct" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="name">s</f>
+ </fs>
+ </span>
+ <span id="s140" from="7219" to="7219" l="6">
+ <fs type="struct" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="name">gap</f>
+ <f name="attr">
+ <fs type="attr">
+ <f name="reason">template</f>
+ <f name="instant">false</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s141" from="7241" to="7912" l="4">
+ <fs type="struct" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="name">p</f>
+ </fs>
+ </span>
+ <span id="s142" from="7242" to="7378" l="5">
+ <fs type="struct" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="name">s</f>
+ </fs>
+ </span>
+ <span id="s143" from="7379" to="7460" l="5">
+ <fs type="struct" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="name">s</f>
+ </fs>
+ </span>
+ <span id="s144" from="7461" to="7549" l="5">
+ <fs type="struct" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="name">s</f>
+ </fs>
+ </span>
+ <span id="s145" from="7508" to="7523" l="6">
+ <fs type="struct" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="name">ref</f>
+ <f name="attr">
+ <fs type="attr">
+ <f name="target">https://de.wikipedia.org/wiki/Elektronenoptik</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s146" from="7550" to="7777" l="5">
+ <fs type="struct" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="name">s</f>
+ </fs>
+ </span>
+ <span id="s147" from="7638" to="7648" l="6">
+ <fs type="struct" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="name">ref</f>
+ <f name="attr">
+ <fs type="attr">
+ <f name="target">https://de.wikipedia.org/wiki/Brechkraft</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s148" from="7688" to="7701" l="6">
+ <fs type="struct" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="name">ref</f>
+ <f name="attr">
+ <fs type="attr">
+ <f name="target">https://de.wikipedia.org/wiki/Zylinderlinse</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s149" from="7735" to="7741" l="6">
+ <fs type="struct" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="name">ref</f>
+ <f name="attr">
+ <fs type="attr">
+ <f name="target">https://de.wikipedia.org/wiki/Brille</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s150" from="7743" to="7752" l="6">
+ <fs type="struct" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="name">ref</f>
+ <f name="attr">
+ <fs type="attr">
+ <f name="target">https://de.wikipedia.org/wiki/Stigmator</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s151" from="7756" to="7775" l="6">
+ <fs type="struct" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="name">ref</f>
+ <f name="attr">
+ <fs type="attr">
+ <f name="target">https://de.wikipedia.org/wiki/Elektronenmikroskop</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s152" from="7778" to="7912" l="5">
+ <fs type="struct" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="name">s</f>
+ </fs>
+ </span>
+ <span id="s153" from="7912" to="8841" l="3">
+ <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="type">fix2</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s154" from="7912" to="7919" l="4">
+ <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="s155" from="7913" to="7919" l="5">
+ <fs type="struct" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="name">s</f>
+ </fs>
+ </span>
+ <span id="s156" from="7919" to="7919" l="6">
+ <fs type="struct" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="name">gap</f>
+ <f name="attr">
+ <fs type="attr">
+ <f name="reason">template</f>
+ <f name="instant">false</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s157" from="7919" to="8100" l="4">
+ <fs type="struct" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="name">p</f>
+ </fs>
+ </span>
+ <span id="s158" from="7919" to="8005" l="5">
+ <fs type="struct" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="name">s</f>
+ </fs>
+ </span>
+ <span id="s159" from="7920" to="7950" l="6">
+ <fs type="struct" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="name">ref</f>
+ <f name="attr">
+ <fs type="attr">
+ <f name="target">https://de.wikipedia.org/wiki/Datei%3ALens_coma.svg</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s160" from="7951" to="8005" l="6">
+ <fs type="struct" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="name">ref</f>
+ <f name="attr">
+ <fs type="attr">
+ <f name="target">https://de.wikipedia.org/wiki/Datei%3AKoma_strangelove.jpg</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s161" from="8005" to="8100" l="5">
+ <fs type="struct" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="name">ref</f>
+ <f name="attr">
+ <fs type="attr">
+ <f name="target">https://de.wikipedia.org/wiki/Datei%3AKoma_strangelove.jpg</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s162" from="8006" to="8077" l="6">
+ <fs type="struct" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="name">s</f>
+ </fs>
+ </span>
+ <span id="s163" from="8078" to="8100" l="6">
+ <fs type="struct" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="name">s</f>
+ </fs>
+ </span>
+ <span id="s164" from="8100" to="8651" l="4">
+ <fs type="struct" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="name">p</f>
+ </fs>
+ </span>
+ <span id="s165" from="8101" to="8137" l="5">
+ <fs type="struct" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="name">s</f>
+ </fs>
+ </span>
+ <span id="s166" from="8137" to="8381" l="5">
+ <fs type="struct" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="name">s</f>
+ </fs>
+ </span>
+ <span id="s167" from="8138" to="8142" l="6">
+ <fs type="struct" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="name">hi</f>
+ <f name="attr">
+ <fs type="attr">
+ <f name="rend">it</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s168" from="8382" to="8525" l="5">
+ <fs type="struct" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="name">s</f>
+ </fs>
+ </span>
+ <span id="s169" from="8526" to="8651" l="5">
+ <fs type="struct" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="name">s</f>
+ </fs>
+ </span>
+ <span id="s170" from="8651" to="8841" l="4">
+ <fs type="struct" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="name">p</f>
+ </fs>
+ </span>
+ <span id="s171" from="8652" to="8717" l="5">
+ <fs type="struct" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="name">s</f>
+ </fs>
+ </span>
+ <span id="s172" from="8718" to="8841" l="5">
+ <fs type="struct" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="name">s</f>
+ </fs>
+ </span>
+ <span id="s173" from="8832" to="8840" l="6">
+ <fs type="struct" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="name">ref</f>
+ <f name="attr">
+ <fs type="attr">
+ <f name="target">https://de.wikipedia.org/wiki/Aplanat</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s174" from="8841" to="10467" l="3">
+ <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="type">fix2</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s175" from="8841" to="8859" l="4">
+ <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="s176" from="8842" to="8859" l="5">
+ <fs type="struct" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="name">s</f>
+ </fs>
+ </span>
+ <span id="s177" from="8859" to="8859" l="6">
+ <fs type="struct" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="name">gap</f>
+ <f name="attr">
+ <fs type="attr">
+ <f name="reason">template</f>
+ <f name="instant">false</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s178" from="8859" to="9137" l="4">
+ <fs type="struct" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="name">p</f>
+ </fs>
+ </span>
+ <span id="s179" from="8859" to="9137" l="5">
+ <fs type="struct" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="name">s</f>
+ </fs>
+ </span>
+ <span id="s180" from="8860" to="8911" l="6">
+ <fs type="struct" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="name">hi</f>
+ <f name="attr">
+ <fs type="attr">
+ <f name="rend">it</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s181" from="8883" to="8910" l="7">
+ <fs type="struct" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="name">ref</f>
+ <f name="attr">
+ <fs type="attr">
+ <f name="target">https://de.wikipedia.org/wiki/Petzvalsche_Bildfeldw%C3%B6lbung</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s182" from="8952" to="8968" l="6">
+ <fs type="struct" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="name">ref</f>
+ <f name="attr">
+ <fs type="attr">
+ <f name="target">https://de.wikipedia.org/wiki/Objektmikrometer</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s183" from="9137" to="9582" l="4">
+ <fs type="struct" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="name">p</f>
+ </fs>
+ </span>
+ <span id="s184" from="9138" to="9305" l="5">
+ <fs type="struct" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="name">s</f>
+ </fs>
+ </span>
+ <span id="s185" from="9306" to="9582" l="5">
+ <fs type="struct" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="name">s</f>
+ </fs>
+ </span>
+ <span id="s186" from="9355" to="9370" l="6">
+ <fs type="struct" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="name">ref</f>
+ <f name="attr">
+ <fs type="attr">
+ <f name="target">https://de.wikipedia.org/wiki/Optische_Achse_%28Optik%29</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s187" from="9582" to="9785" l="4">
+ <fs type="struct" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="name">p</f>
+ </fs>
+ </span>
+ <span id="s188" from="9583" to="9710" l="5">
+ <fs type="struct" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="name">s</f>
+ </fs>
+ </span>
+ <span id="s189" from="9711" to="9785" l="5">
+ <fs type="struct" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="name">s</f>
+ </fs>
+ </span>
+ <span id="s190" from="9785" to="10075" l="4">
+ <fs type="struct" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="name">p</f>
+ </fs>
+ </span>
+ <span id="s191" from="9786" to="9888" l="5">
+ <fs type="struct" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="name">s</f>
+ </fs>
+ </span>
+ <span id="s192" from="9889" to="9919" l="5">
+ <fs type="struct" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="name">s</f>
+ </fs>
+ </span>
+ <span id="s193" from="9893" to="9901" l="6">
+ <fs type="struct" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="name">ref</f>
+ <f name="attr">
+ <fs type="attr">
+ <f name="target">https://de.wikipedia.org/wiki/Okular</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s194" from="9907" to="9918" l="6">
+ <fs type="struct" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="name">ref</f>
+ <f name="attr">
+ <fs type="attr">
+ <f name="target">https://de.wikipedia.org/wiki/Projektor</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s195" from="9920" to="10075" l="5">
+ <fs type="struct" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="name">s</f>
+ </fs>
+ </span>
+ <span id="s196" from="10027" to="10043" l="6">
+ <fs type="struct" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="name">ref</f>
+ <f name="attr">
+ <fs type="attr">
+ <f name="target">https://de.wikipedia.org/wiki/Toleranz_%28Technik%29</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s197" from="10075" to="10175" l="4">
+ <fs type="struct" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="name">p</f>
+ </fs>
+ </span>
+ <span id="s198" from="10076" to="10175" l="5">
+ <fs type="struct" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="name">s</f>
+ </fs>
+ </span>
+ <span id="s199" from="10106" to="10114" l="6">
+ <fs type="struct" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="name">ref</f>
+ <f name="attr">
+ <fs type="attr">
+ <f name="target">https://de.wikipedia.org/wiki/Laserscanner</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s200" from="10119" to="10130" l="6">
+ <fs type="struct" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="name">ref</f>
+ <f name="attr">
+ <fs type="attr">
+ <f name="target">https://de.wikipedia.org/wiki/Lasergravur</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s201" from="10175" to="10366" l="4">
+ <fs type="struct" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="name">p</f>
+ </fs>
+ </span>
+ <span id="s202" from="10176" to="10366" l="5">
+ <fs type="struct" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="name">s</f>
+ </fs>
+ </span>
+ <span id="s203" from="10338" to="10348" l="6">
+ <fs type="struct" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="name">ref</f>
+ <f name="attr">
+ <fs type="attr">
+ <f name="target">https://de.wikipedia.org/wiki/Baker-Nunn-Kamera</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s204" from="10366" to="10467" l="4">
+ <fs type="struct" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="name">p</f>
+ </fs>
+ </span>
+ <span id="s205" from="10367" to="10467" l="5">
+ <fs type="struct" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="name">s</f>
+ </fs>
+ </span>
+ <span id="s206" from="10371" to="10385" l="6">
+ <fs type="struct" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="name">ref</f>
+ <f name="attr">
+ <fs type="attr">
+ <f name="target">https://de.wikipedia.org/wiki/Digitalkamera</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s207" from="10402" to="10414" l="6">
+ <fs type="struct" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="name">ref</f>
+ <f name="attr">
+ <fs type="attr">
+ <f name="target">https://de.wikipedia.org/wiki/Bildsensor</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s208" from="10467" to="10467" l="6">
+ <fs type="struct" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="name">ptr</f>
+ <f name="attr">
+ <fs type="attr">
+ <f name="target">WPD17.A00.82293-f3</f>
+ <f name="rend">ref</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s209" from="10467" to="12561" l="3">
+ <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="type">fix2</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s210" from="10467" to="10482" l="4">
+ <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="s211" from="10468" to="10482" l="5">
+ <fs type="struct" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="name">s</f>
+ </fs>
+ </span>
+ <span id="s212" from="10482" to="10526" l="4">
+ <fs type="struct" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="name">p</f>
+ </fs>
+ </span>
+ <span id="s213" from="10482" to="10526" l="5">
+ <fs type="struct" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="name">s</f>
+ </fs>
+ </span>
+ <span id="s214" from="10483" to="10526" l="6">
+ <fs type="struct" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="name">ref</f>
+ <f name="attr">
+ <fs type="attr">
+ <f name="target">https://de.wikipedia.org/wiki/Datei%3AGeometrical_Aberration_de.svg</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s215" from="10526" to="10526" l="6">
+ <fs type="struct" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="name">gap</f>
+ <f name="attr">
+ <fs type="attr">
+ <f name="reason">template</f>
+ <f name="instant">false</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s216" from="10526" to="11073" l="4">
+ <fs type="struct" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="name">p</f>
+ </fs>
+ </span>
+ <span id="s217" from="10527" to="10709" l="5">
+ <fs type="struct" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="name">s</f>
+ </fs>
+ </span>
+ <span id="s218" from="10710" to="10791" l="5">
+ <fs type="struct" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="name">s</f>
+ </fs>
+ </span>
+ <span id="s219" from="10735" to="10752" l="6">
+ <fs type="struct" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="name">ref</f>
+ <f name="attr">
+ <fs type="attr">
+ <f name="target">https://de.wikipedia.org/wiki/Abbildungsma%C3%9Fstab</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s220" from="10792" to="10932" l="5">
+ <fs type="struct" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="name">s</f>
+ </fs>
+ </span>
+ <span id="s221" from="10933" to="11014" l="5">
+ <fs type="struct" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="name">s</f>
+ </fs>
+ </span>
+ <span id="s222" from="11015" to="11073" l="5">
+ <fs type="struct" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="name">s</f>
+ </fs>
+ </span>
+ <span id="s223" from="11073" to="11189" l="4">
+ <fs type="struct" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="name">p</f>
+ </fs>
+ </span>
+ <span id="s224" from="11074" to="11189" l="5">
+ <fs type="struct" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="name">s</f>
+ </fs>
+ </span>
+ <span id="s225" from="11189" to="11685" l="4">
+ <fs type="struct" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="name">p</f>
+ </fs>
+ </span>
+ <span id="s226" from="11190" to="11289" l="5">
+ <fs type="struct" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="name">s</f>
+ </fs>
+ </span>
+ <span id="s227" from="11262" to="11288" l="6">
+ <fs type="struct" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="name">hi</f>
+ <f name="attr">
+ <fs type="attr">
+ <f name="rend">it</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s228" from="11290" to="11397" l="5">
+ <fs type="struct" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="name">s</f>
+ </fs>
+ </span>
+ <span id="s229" from="11398" to="11456" l="5">
+ <fs type="struct" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="name">s</f>
+ </fs>
+ </span>
+ <span id="s230" from="11429" to="11455" l="6">
+ <fs type="struct" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="name">hi</f>
+ <f name="attr">
+ <fs type="attr">
+ <f name="rend">it</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s231" from="11457" to="11503" l="5">
+ <fs type="struct" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="name">s</f>
+ </fs>
+ </span>
+ <span id="s232" from="11504" to="11614" l="5">
+ <fs type="struct" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="name">s</f>
+ </fs>
+ </span>
+ <span id="s233" from="11517" to="11543" l="6">
+ <fs type="struct" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="name">hi</f>
+ <f name="attr">
+ <fs type="attr">
+ <f name="rend">it</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s234" from="11615" to="11685" l="5">
+ <fs type="struct" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="name">s</f>
+ </fs>
+ </span>
+ <span id="s235" from="11685" to="11874" l="4">
+ <fs type="struct" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="name">p</f>
+ </fs>
+ </span>
+ <span id="s236" from="11686" to="11874" l="5">
+ <fs type="struct" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="name">s</f>
+ </fs>
+ </span>
+ <span id="s237" from="11709" to="11719" l="6">
+ <fs type="struct" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="name">ref</f>
+ <f name="attr">
+ <fs type="attr">
+ <f name="target">https://de.wikipedia.org/wiki/Retrofokus</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s238" from="11730" to="11742" l="6">
+ <fs type="struct" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="name">ref</f>
+ <f name="attr">
+ <fs type="attr">
+ <f name="target">https://de.wikipedia.org/wiki/Schnittweite</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s239" from="11754" to="11764" l="6">
+ <fs type="struct" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="name">ref</f>
+ <f name="attr">
+ <fs type="attr">
+ <f name="target">https://de.wikipedia.org/wiki/Brennweite</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s240" from="11874" to="12152" l="4">
+ <fs type="struct" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="name">p</f>
+ </fs>
+ </span>
+ <span id="s241" from="11875" to="11956" l="5">
+ <fs type="struct" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="name">s</f>
+ </fs>
+ </span>
+ <span id="s242" from="11886" to="11906" l="6">
+ <fs type="struct" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="name">ref</f>
+ <f name="attr">
+ <fs type="attr">
+ <f name="target">https://de.wikipedia.org/wiki/Fischaugen-Objektiv</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s243" from="11957" to="12152" l="5">
+ <fs type="struct" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="name">s</f>
+ </fs>
+ </span>
+ <span id="s244" from="12152" to="12561" l="4">
+ <fs type="struct" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="name">p</f>
+ </fs>
+ </span>
+ <span id="s245" from="12153" to="12376" l="5">
+ <fs type="struct" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="name">s</f>
+ </fs>
+ </span>
+ <span id="s246" from="12157" to="12169" l="6">
+ <fs type="struct" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="name">ref</f>
+ <f name="attr">
+ <fs type="attr">
+ <f name="target">https://de.wikipedia.org/wiki/Feldstecher</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s247" from="12377" to="12561" l="5">
+ <fs type="struct" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="name">s</f>
+ </fs>
+ </span>
+ <span id="s248" from="12437" to="12452" l="6">
+ <fs type="struct" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="name">ref</f>
+ <f name="attr">
+ <fs type="attr">
+ <f name="target">https://de.wikipedia.org/wiki/Winkelbedingung</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s249" from="12522" to="12540" l="6">
+ <fs type="struct" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="name">ref</f>
+ <f name="attr">
+ <fs type="attr">
+ <f name="target">https://de.wikipedia.org/wiki/Tangentenbedingung</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s250" from="12561" to="12804" l="3">
+ <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="type">fix2</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s251" from="12561" to="12587" l="4">
+ <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="s252" from="12562" to="12587" l="5">
+ <fs type="struct" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="name">s</f>
+ </fs>
+ </span>
+ <span id="s253" from="12587" to="12616" l="4">
+ <fs type="struct" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="name">p</f>
+ </fs>
+ </span>
+ <span id="s254" from="12587" to="12616" l="5">
+ <fs type="struct" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="name">s</f>
+ </fs>
+ </span>
+ <span id="s255" from="12588" to="12616" l="6">
+ <fs type="struct" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="name">ref</f>
+ <f name="attr">
+ <fs type="attr">
+ <f name="target">https://de.wikipedia.org/wiki/Datei%3AChromatic_aberration_convex.svg</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s256" from="12616" to="12616" l="6">
+ <fs type="struct" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="name">gap</f>
+ <f name="attr">
+ <fs type="attr">
+ <f name="reason">template</f>
+ <f name="instant">false</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s257" from="12616" to="12804" l="4">
+ <fs type="struct" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="name">p</f>
+ </fs>
+ </span>
+ <span id="s258" from="12617" to="12708" l="5">
+ <fs type="struct" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="name">s</f>
+ </fs>
+ </span>
+ <span id="s259" from="12621" to="12635" l="6">
+ <fs type="struct" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="name">ref</f>
+ <f name="attr">
+ <fs type="attr">
+ <f name="target">https://de.wikipedia.org/wiki/Brechungsindex</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s260" from="12640" to="12654" l="6">
+ <fs type="struct" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="name">ref</f>
+ <f name="attr">
+ <fs type="attr">
+ <f name="target">https://de.wikipedia.org/wiki/Optisches_Glas</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s261" from="12669" to="12680" l="6">
+ <fs type="struct" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="name">ref</f>
+ <f name="attr">
+ <fs type="attr">
+ <f name="target">https://de.wikipedia.org/wiki/Wellenl%C3%A4nge</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s262" from="12681" to="12681" l="6">
+ <fs type="struct" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="name">gap</f>
+ <f name="attr">
+ <fs type="attr">
+ <f name="reason">math</f>
+ <f name="instant">false</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s263" from="12709" to="12751" l="5">
+ <fs type="struct" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="name">s</f>
+ </fs>
+ </span>
+ <span id="s264" from="12732" to="12742" l="6">
+ <fs type="struct" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="name">ref</f>
+ <f name="attr">
+ <fs type="attr">
+ <f name="target">https://de.wikipedia.org/wiki/Dispersion_%28Physik%29</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s265" from="12752" to="12804" l="5">
+ <fs type="struct" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="name">s</f>
+ </fs>
+ </span>
+ <span id="s266" from="12780" to="12803" l="6">
+ <fs type="struct" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="name">hi</f>
+ <f name="attr">
+ <fs type="attr">
+ <f name="rend">it</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s267" from="12804" to="13332" l="3">
+ <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="type">fix2</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s268" from="12804" to="12821" l="4">
+ <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="s269" from="12805" to="12821" l="5">
+ <fs type="struct" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="name">s</f>
+ </fs>
+ </span>
+ <span id="s270" from="12821" to="12821" l="6">
+ <fs type="struct" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="name">gap</f>
+ <f name="attr">
+ <fs type="attr">
+ <f name="reason">template</f>
+ <f name="instant">false</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s271" from="12821" to="12873" l="4">
+ <fs type="struct" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="name">p</f>
+ </fs>
+ </span>
+ <span id="s272" from="12821" to="12873" l="5">
+ <fs type="struct" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="name">s</f>
+ </fs>
+ </span>
+ <span id="s273" from="12822" to="12873" l="6">
+ <fs type="struct" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="name">ref</f>
+ <f name="attr">
+ <fs type="attr">
+ <f name="target">https://de.wikipedia.org/wiki/Datei%3AChromatische_Aberration.jpg</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s274" from="12873" to="13332" l="4">
+ <fs type="struct" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="name">p</f>
+ </fs>
+ </span>
+ <span id="s275" from="12874" to="13000" l="5">
+ <fs type="struct" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="name">s</f>
+ </fs>
+ </span>
+ <span id="s276" from="12944" to="12961" l="6">
+ <fs type="struct" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="name">ref</f>
+ <f name="attr">
+ <fs type="attr">
+ <f name="target">https://de.wikipedia.org/wiki/Abbildungsma%C3%9Fstab</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s277" from="13001" to="13107" l="5">
+ <fs type="struct" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="name">s</f>
+ </fs>
+ </span>
+ <span id="s278" from="13108" to="13147" l="5">
+ <fs type="struct" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="name">s</f>
+ </fs>
+ </span>
+ <span id="s279" from="13132" to="13146" l="6">
+ <fs type="struct" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="name">hi</f>
+ <f name="attr">
+ <fs type="attr">
+ <f name="rend">it</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s280" from="13148" to="13260" l="5">
+ <fs type="struct" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="name">s</f>
+ </fs>
+ </span>
+ <span id="s281" from="13261" to="13332" l="5">
+ <fs type="struct" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="name">s</f>
+ </fs>
+ </span>
+ <span id="s282" from="13332" to="13864" l="3">
+ <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="type">fix2</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s283" from="13332" to="13350" l="4">
+ <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="s284" from="13333" to="13350" l="5">
+ <fs type="struct" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="name">s</f>
+ </fs>
+ </span>
+ <span id="s285" from="13350" to="13350" l="6">
+ <fs type="struct" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="name">gap</f>
+ <f name="attr">
+ <fs type="attr">
+ <f name="reason">template</f>
+ <f name="instant">false</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s286" from="13350" to="13445" l="4">
+ <fs type="struct" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="name">p</f>
+ </fs>
+ </span>
+ <span id="s287" from="13350" to="13445" l="5">
+ <fs type="struct" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="name">s</f>
+ </fs>
+ </span>
+ <span id="s288" from="13351" to="13445" l="6">
+ <fs type="struct" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="name">ref</f>
+ <f name="attr">
+ <fs type="attr">
+ <f name="target">https://de.wikipedia.org/wiki/Datei%3AFarblaengsfehler_DSC00247_wp.jpg</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s289" from="13445" to="13864" l="4">
+ <fs type="struct" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="name">p</f>
+ </fs>
+ </span>
+ <span id="s290" from="13446" to="13632" l="5">
+ <fs type="struct" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="name">s</f>
+ </fs>
+ </span>
+ <span id="s291" from="13455" to="13467" l="6">
+ <fs type="struct" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="name">ref</f>
+ <f name="attr">
+ <fs type="attr">
+ <f name="target">https://de.wikipedia.org/wiki/Schnittweite</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s292" from="13633" to="13769" l="5">
+ <fs type="struct" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="name">s</f>
+ </fs>
+ </span>
+ <span id="s293" from="13770" to="13801" l="5">
+ <fs type="struct" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="name">s</f>
+ </fs>
+ </span>
+ <span id="s294" from="13785" to="13800" l="6">
+ <fs type="struct" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="name">hi</f>
+ <f name="attr">
+ <fs type="attr">
+ <f name="rend">it</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s295" from="13802" to="13864" l="5">
+ <fs type="struct" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="name">s</f>
+ </fs>
+ </span>
+ <span id="s296" from="13864" to="14410" l="3">
+ <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="type">fix2</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s297" from="13864" to="13877" l="4">
+ <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="s298" from="13865" to="13877" l="5">
+ <fs type="struct" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="name">s</f>
+ </fs>
+ </span>
+ <span id="s299" from="13877" to="13877" l="6">
+ <fs type="struct" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="name">gap</f>
+ <f name="attr">
+ <fs type="attr">
+ <f name="reason">template</f>
+ <f name="instant">false</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s300" from="13877" to="14380" l="4">
+ <fs type="struct" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="name">p</f>
+ </fs>
+ </span>
+ <span id="s301" from="13878" to="13985" l="5">
+ <fs type="struct" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="name">s</f>
+ </fs>
+ </span>
+ <span id="s302" from="13986" to="14092" l="5">
+ <fs type="struct" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="name">s</f>
+ </fs>
+ </span>
+ <span id="s303" from="14093" to="14236" l="5">
+ <fs type="struct" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="name">s</f>
+ </fs>
+ </span>
+ <span id="s304" from="14237" to="14380" l="5">
+ <fs type="struct" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="name">s</f>
+ </fs>
+ </span>
+ <span id="s305" from="14380" to="14410" l="4">
+ <fs type="struct" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="name">p</f>
+ </fs>
+ </span>
+ <span id="s306" from="14380" to="14410" l="5">
+ <fs type="struct" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="name">s</f>
+ </fs>
+ </span>
+ <span id="s307" from="14381" to="14394" l="6">
+ <fs type="struct" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="name">ref</f>
+ <f name="attr">
+ <fs type="attr">
+ <f name="target">https://de.wikipedia.org/wiki/Datei%3AAchromat_de.svg</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s308" from="14395" to="14410" l="6">
+ <fs type="struct" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="name">ref</f>
+ <f name="attr">
+ <fs type="attr">
+ <f name="target">https://de.wikipedia.org/wiki/Datei%3AApochromat.svg</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s309" from="14410" to="14720" l="3">
+ <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="type">fix2</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s310" from="14410" to="14421" l="4">
+ <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="s311" from="14411" to="14421" l="5">
+ <fs type="struct" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="name">s</f>
+ </fs>
+ </span>
+ <span id="s312" from="14421" to="14720" l="4">
+ <fs type="struct" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="name">p</f>
+ </fs>
+ </span>
+ <span id="s313" from="14422" to="14569" l="5">
+ <fs type="struct" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="name">s</f>
+ </fs>
+ </span>
+ <span id="s314" from="14496" to="14507" l="6">
+ <fs type="struct" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="name">ref</f>
+ <f name="attr">
+ <fs type="attr">
+ <f name="target">https://de.wikipedia.org/wiki/Abbe-Zahl</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s315" from="14570" to="14720" l="5">
+ <fs type="struct" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="name">s</f>
+ </fs>
+ </span>
+ <span id="s316" from="14604" to="14614" l="6">
+ <fs type="struct" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="name">ref</f>
+ <f name="attr">
+ <fs type="attr">
+ <f name="target">https://de.wikipedia.org/wiki/Achromat</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s317" from="14654" to="14666" l="6">
+ <fs type="struct" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="name">ref</f>
+ <f name="attr">
+ <fs type="attr">
+ <f name="target">https://de.wikipedia.org/wiki/Schnittweite</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s318" from="14720" to="15389" l="3">
+ <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="type">fix2</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s319" from="14720" to="14733" l="4">
+ <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="s320" from="14721" to="14733" l="5">
+ <fs type="struct" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="name">s</f>
+ </fs>
+ </span>
+ <span id="s321" from="14733" to="15389" l="4">
+ <fs type="struct" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="name">p</f>
+ </fs>
+ </span>
+ <span id="s322" from="14734" to="14835" l="5">
+ <fs type="struct" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="name">s</f>
+ </fs>
+ </span>
+ <span id="s323" from="14819" to="14830" l="6">
+ <fs type="struct" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="name">ref</f>
+ <f name="attr">
+ <fs type="attr">
+ <f name="target">https://de.wikipedia.org/wiki/Apochromat</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s324" from="14836" to="14967" l="5">
+ <fs type="struct" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="name">s</f>
+ </fs>
+ </span>
+ <span id="s325" from="14925" to="14943" l="6">
+ <fs type="struct" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="name">ref</f>
+ <f name="attr">
+ <fs type="attr">
+ <f name="target">https://de.wikipedia.org/wiki/Sekund%C3%A4res_Spektrum</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s326" from="14968" to="15075" l="5">
+ <fs type="struct" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="name">s</f>
+ </fs>
+ </span>
+ <span id="s327" from="15076" to="15213" l="5">
+ <fs type="struct" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="name">s</f>
+ </fs>
+ </span>
+ <span id="s328" from="15214" to="15300" l="5">
+ <fs type="struct" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="name">s</f>
+ </fs>
+ </span>
+ <span id="s329" from="15267" to="15276" l="6">
+ <fs type="struct" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="name">ref</f>
+ <f name="attr">
+ <fs type="attr">
+ <f name="target">https://de.wikipedia.org/wiki/Abk%C3%BCrzung</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s330" from="15277" to="15280" l="6">
+ <fs type="struct" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="name">hi</f>
+ <f name="attr">
+ <fs type="attr">
+ <f name="rend">it</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s331" from="15301" to="15389" l="5">
+ <fs type="struct" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="name">s</f>
+ </fs>
+ </span>
+ <span id="s332" from="15389" to="15402" l="3">
+ <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="type">fix2</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s333" from="15390" to="15402" l="4">
+ <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>
+ </spanList>
+</layer>
\ No newline at end of file
diff --git a/t/real/corpus/ICCGER/DeReKo-WPD17/A00-82293/ud/dependency.xml b/t/real/corpus/ICCGER/DeReKo-WPD17/A00-82293/ud/dependency.xml
new file mode 100644
index 0000000..fa2dddb
--- /dev/null
+++ b/t/real/corpus/ICCGER/DeReKo-WPD17/A00-82293/ud/dependency.xml
@@ -0,0 +1,10991 @@
+<?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="ICCGER_DeReKo-WPD17.A00-82293" xmlns="http://ids-mannheim.de/ns/KorAP" version="KorAP-0.4">
+<spanList>
+<span id="s245_n1" from="0" to="2">
+<rel label="expl">
+<span from="12" to="19"/>
+</rel>
+</span>
+<span id="s245_n2" from="3" to="6">
+<rel label="cop">
+<span from="12" to="19"/>
+</rel>
+</span>
+<span id="s245_n3" from="7" to="11">
+<rel label="advmod">
+<span from="12" to="19"/>
+</rel>
+</span>
+<span id="s245_n4" from="12" to="19">
+<rel label="root">
+<span from="0" to="145"/>
+</rel>
+</span>
+<span id="s245_n5" from="19" to="20">
+<rel label="punct">
+<span from="134" to="144"/>
+</rel>
+</span>
+<span id="s245_n6" from="21" to="24">
+<rel label="det">
+<span from="25" to="41"/>
+</rel>
+</span>
+<span id="s245_n7" from="25" to="41">
+<rel label="obj">
+<span from="134" to="144"/>
+</rel>
+</span>
+<span id="s245_n8" from="42" to="51">
+<rel label="case">
+<span from="68" to="74"/>
+</rel>
+</span>
+<span id="s245_n9" from="52" to="57">
+<rel label="det">
+<span from="68" to="74"/>
+</rel>
+</span>
+<span id="s245_n10" from="58" to="67">
+<rel label="amod">
+<span from="68" to="74"/>
+</rel>
+</span>
+<span id="s245_n11" from="68" to="74">
+<rel label="obl">
+<span from="134" to="144"/>
+</rel>
+</span>
+<span id="s245_n12" from="75" to="78">
+<rel label="case">
+<span from="95" to="100"/>
+</rel>
+</span>
+<span id="s245_n13" from="79" to="84">
+<rel label="det">
+<span from="95" to="100"/>
+</rel>
+</span>
+<span id="s245_n14" from="85" to="94">
+<rel label="amod">
+<span from="95" to="100"/>
+</rel>
+</span>
+<span id="s245_n15" from="95" to="100">
+<rel label="nmod">
+<span from="68" to="74"/>
+</rel>
+</span>
+<span id="s245_n16" from="101" to="105">
+<rel label="cc">
+<span from="112" to="119"/>
+</rel>
+</span>
+<span id="s245_n17" from="106" to="111">
+<rel label="det">
+<span from="112" to="119"/>
+</rel>
+</span>
+<span id="s245_n18" from="112" to="119">
+<rel label="conj">
+<span from="95" to="100"/>
+</rel>
+</span>
+<span id="s245_n19" from="120" to="124">
+<rel label="advmod">
+<span from="125" to="130"/>
+</rel>
+</span>
+<span id="s245_n20" from="125" to="130">
+<rel label="advmod">
+<span from="134" to="144"/>
+</rel>
+</span>
+<span id="s245_n21" from="131" to="133">
+<rel label="mark">
+<span from="134" to="144"/>
+</rel>
+</span>
+<span id="s245_n22" from="134" to="144">
+<rel label="csubj">
+<span from="12" to="19"/>
+</rel>
+</span>
+<span id="s245_n23" from="144" to="145">
+<rel label="punct">
+<span from="12" to="19"/>
+</rel>
+</span>
+<span id="s246_n1" from="146" to="150">
+<rel label="advmod">
+<span from="227" to="237"/>
+</rel>
+</span>
+<span id="s246_n2" from="151" to="157">
+<rel label="aux:pass">
+<span from="227" to="237"/>
+</rel>
+</span>
+<span id="s246_n3" from="158" to="165">
+<rel label="det">
+<span from="166" to="172"/>
+</rel>
+</span>
+<span id="s246_n4" from="166" to="172">
+<rel label="nsubj:pass">
+<span from="227" to="237"/>
+</rel>
+</span>
+<span id="s246_n5" from="173" to="176">
+<rel label="case">
+<span from="191" to="201"/>
+</rel>
+</span>
+<span id="s246_n6" from="177" to="190">
+<rel label="amod">
+<span from="191" to="201"/>
+</rel>
+</span>
+<span id="s246_n7" from="191" to="201">
+<rel label="nmod">
+<span from="166" to="172"/>
+</rel>
+</span>
+<span id="s246_n8" from="202" to="206">
+<rel label="cc">
+<span from="207" to="214"/>
+</rel>
+</span>
+<span id="s246_n9" from="207" to="214">
+<rel label="conj">
+<span from="191" to="201"/>
+</rel>
+</span>
+<span id="s246_n10" from="215" to="226">
+<rel label="advmod">
+<span from="227" to="237"/>
+</rel>
+</span>
+<span id="s246_n11" from="227" to="237">
+<rel label="root">
+<span from="146" to="284"/>
+</rel>
+</span>
+<span id="s246_n12" from="238" to="241">
+<rel label="cc">
+<span from="273" to="283"/>
+</rel>
+</span>
+<span id="s246_n13" from="242" to="247">
+<rel label="advmod">
+<span from="273" to="283"/>
+</rel>
+</span>
+<span id="s246_n14" from="248" to="252">
+<rel label="advmod">
+<span from="265" to="272"/>
+</rel>
+</span>
+<span id="s246_n15" from="253" to="264">
+<rel label="amod">
+<span from="265" to="272"/>
+</rel>
+</span>
+<span id="s246_n16" from="265" to="272">
+<rel label="nsubj">
+<span from="273" to="283"/>
+</rel>
+</span>
+<span id="s246_n17" from="273" to="283">
+<rel label="conj">
+<span from="227" to="237"/>
+</rel>
+</span>
+<span id="s246_n18" from="283" to="284">
+<rel label="punct">
+<span from="227" to="237"/>
+</rel>
+</span>
+<span id="s247_n1" from="285" to="288">
+<rel label="nsubj:pass">
+<span from="331" to="352"/>
+</rel>
+</span>
+<span id="s247_n2" from="289" to="295">
+<rel label="aux:pass">
+<span from="331" to="352"/>
+</rel>
+</span>
+<span id="s247_n3" from="296" to="301">
+<rel label="case">
+<span from="307" to="327"/>
+</rel>
+</span>
+<span id="s247_n4" from="302" to="306">
+<rel label="det">
+<span from="307" to="327"/>
+</rel>
+</span>
+<span id="s247_n5" from="307" to="327">
+<rel label="obl">
+<span from="331" to="352"/>
+</rel>
+</span>
+<span id="s247_n6" from="328" to="330">
+<rel label="advmod">
+<span from="331" to="352"/>
+</rel>
+</span>
+<span id="s247_n7" from="331" to="352">
+<rel label="root">
+<span from="285" to="420"/>
+</rel>
+</span>
+<span id="s247_n8" from="352" to="353">
+<rel label="punct">
+<span from="408" to="419"/>
+</rel>
+</span>
+<span id="s247_n9" from="354" to="358">
+<rel label="mark">
+<span from="408" to="419"/>
+</rel>
+</span>
+<span id="s247_n10" from="359" to="362">
+<rel label="det">
+<span from="374" to="384"/>
+</rel>
+</span>
+<span id="s247_n11" from="363" to="373">
+<rel label="amod">
+<span from="374" to="384"/>
+</rel>
+</span>
+<span id="s247_n12" from="374" to="384">
+<rel label="nsubj">
+<span from="408" to="419"/>
+</rel>
+</span>
+<span id="s247_n13" from="385" to="390">
+<rel label="det">
+<span from="391" to="407"/>
+</rel>
+</span>
+<span id="s247_n14" from="391" to="407">
+<rel label="nmod">
+<span from="374" to="384"/>
+</rel>
+</span>
+<span id="s247_n15" from="408" to="419">
+<rel label="advcl">
+<span from="331" to="352"/>
+</rel>
+</span>
+<span id="s247_n16" from="419" to="420">
+<rel label="punct">
+<span from="331" to="352"/>
+</rel>
+</span>
+<span id="s248_n1" from="421" to="425">
+<rel label="obj">
+<span from="426" to="431"/>
+</rel>
+</span>
+<span id="s248_n2" from="426" to="431">
+<rel label="root">
+<span from="421" to="484"/>
+</rel>
+</span>
+<span id="s248_n3" from="432" to="435">
+<rel label="nsubj">
+<span from="426" to="431"/>
+</rel>
+</span>
+<span id="s248_n4" from="436" to="446">
+<rel label="obj">
+<span from="426" to="431"/>
+</rel>
+</span>
+<span id="s248_n5" from="447" to="450">
+<rel label="det">
+<span from="451" to="457"/>
+</rel>
+</span>
+<span id="s248_n6" from="451" to="457">
+<rel label="nmod">
+<span from="436" to="446"/>
+</rel>
+</span>
+<span id="s248_n7" from="458" to="462">
+<rel label="cc">
+<span from="476" to="483"/>
+</rel>
+</span>
+<span id="s248_n8" from="463" to="475">
+<rel label="amod">
+<span from="476" to="483"/>
+</rel>
+</span>
+<span id="s248_n9" from="476" to="483">
+<rel label="conj">
+<span from="451" to="457"/>
+</rel>
+</span>
+<span id="s248_n10" from="483" to="484">
+<rel label="punct">
+<span from="426" to="431"/>
+</rel>
+</span>
+<span id="s249_n1" from="485" to="491">
+<rel label="det">
+<span from="492" to="499"/>
+</rel>
+</span>
+<span id="s249_n2" from="492" to="499">
+<rel label="nsubj">
+<span from="519" to="534"/>
+</rel>
+</span>
+<span id="s249_n3" from="500" to="503">
+<rel label="det">
+<span from="504" to="514"/>
+</rel>
+</span>
+<span id="s249_n4" from="504" to="514">
+<rel label="nmod">
+<span from="492" to="499"/>
+</rel>
+</span>
+<span id="s249_n5" from="515" to="518">
+<rel label="cop">
+<span from="519" to="534"/>
+</rel>
+</span>
+<span id="s249_n6" from="519" to="534">
+<rel label="root">
+<span from="485" to="535"/>
+</rel>
+</span>
+<span id="s249_n7" from="534" to="535">
+<rel label="punct">
+<span from="519" to="534"/>
+</rel>
+</span>
+<span id="s250_n1" from="536" to="540">
+<rel label="det">
+<span from="560" to="576"/>
+</rel>
+</span>
+<span id="s250_n2" from="541" to="545">
+<rel label="advmod">
+<span from="546" to="559"/>
+</rel>
+</span>
+<span id="s250_n3" from="546" to="559">
+<rel label="amod">
+<span from="560" to="576"/>
+</rel>
+</span>
+<span id="s250_n4" from="560" to="576">
+<rel label="nsubj">
+<span from="577" to="587"/>
+</rel>
+</span>
+<span id="s250_n5" from="577" to="587">
+<rel label="root">
+<span from="536" to="694"/>
+</rel>
+</span>
+<span id="s250_n6" from="588" to="592">
+<rel label="expl:pv">
+<span from="577" to="587"/>
+</rel>
+</span>
+<span id="s250_n7" from="592" to="593">
+<rel label="punct">
+<span from="649" to="661"/>
+</rel>
+</span>
+<span id="s250_n8" from="594" to="606">
+<rel label="nsubj">
+<span from="649" to="661"/>
+</rel>
+</span>
+<span id="s250_n9" from="607" to="610">
+<rel label="case">
+<span from="611" to="623"/>
+</rel>
+</span>
+<span id="s250_n10" from="611" to="623">
+<rel label="nmod">
+<span from="594" to="606"/>
+</rel>
+</span>
+<span id="s250_n11" from="624" to="629">
+<rel label="det">
+<span from="641" to="648"/>
+</rel>
+</span>
+<span id="s250_n12" from="630" to="640">
+<rel label="amod">
+<span from="641" to="648"/>
+</rel>
+</span>
+<span id="s250_n13" from="641" to="648">
+<rel label="nmod">
+<span from="611" to="623"/>
+</rel>
+</span>
+<span id="s250_n14" from="649" to="661">
+<rel label="conj">
+<span from="577" to="587"/>
+</rel>
+</span>
+<span id="s250_n15" from="662" to="675">
+<rel label="advmod">
+<span from="649" to="661"/>
+</rel>
+</span>
+<span id="s250_n16" from="676" to="680">
+<rel label="advmod">
+<span from="686" to="693"/>
+</rel>
+</span>
+<span id="s250_n17" from="681" to="685">
+<rel label="det">
+<span from="686" to="693"/>
+</rel>
+</span>
+<span id="s250_n18" from="686" to="693">
+<rel label="obj">
+<span from="649" to="661"/>
+</rel>
+</span>
+<span id="s250_n19" from="693" to="694">
+<rel label="punct">
+<span from="577" to="587"/>
+</rel>
+</span>
+<span id="s251_n1" from="695" to="698">
+<rel label="advmod">
+<span from="703" to="711"/>
+</rel>
+</span>
+<span id="s251_n2" from="699" to="702">
+<rel label="case">
+<span from="703" to="711"/>
+</rel>
+</span>
+<span id="s251_n3" from="703" to="711">
+<rel label="obl">
+<span from="756" to="761"/>
+</rel>
+</span>
+<span id="s251_n4" from="711" to="712">
+<rel label="punct">
+<span from="746" to="754"/>
+</rel>
+</span>
+<span id="s251_n5" from="713" to="716">
+<rel label="nsubj">
+<span from="746" to="754"/>
+</rel>
+</span>
+<span id="s251_n6" from="717" to="731">
+<rel label="advmod">
+<span from="746" to="754"/>
+</rel>
+</span>
+<span id="s251_n7" from="732" to="737">
+<rel label="case">
+<span from="738" to="745"/>
+</rel>
+</span>
+<span id="s251_n8" from="738" to="745">
+<rel label="obl">
+<span from="746" to="754"/>
+</rel>
+</span>
+<span id="s251_n9" from="746" to="754">
+<rel label="acl">
+<span from="703" to="711"/>
+</rel>
+</span>
+<span id="s251_n10" from="754" to="755">
+<rel label="punct">
+<span from="746" to="754"/>
+</rel>
+</span>
+<span id="s251_n11" from="756" to="761">
+<rel label="root">
+<span from="695" to="782"/>
+</rel>
+</span>
+<span id="s251_n12" from="762" to="766">
+<rel label="det">
+<span from="767" to="777"/>
+</rel>
+</span>
+<span id="s251_n13" from="767" to="777">
+<rel label="nsubj">
+<span from="756" to="761"/>
+</rel>
+</span>
+<span id="s251_n14" from="778" to="781">
+<rel label="compound:prt">
+<span from="756" to="761"/>
+</rel>
+</span>
+<span id="s251_n15" from="781" to="782">
+<rel label="punct">
+<span from="756" to="761"/>
+</rel>
+</span>
+<span id="s252_n1" from="784" to="800">
+<rel label="amod">
+<span from="801" to="807"/>
+</rel>
+</span>
+<span id="s252_n2" from="801" to="807">
+<rel label="obj">
+<span from="938" to="945"/>
+</rel>
+</span>
+<span id="s252_n3" from="810" to="820">
+<rel label="amod">
+<span from="821" to="831"/>
+</rel>
+</span>
+<span id="s252_n4" from="821" to="831">
+<rel label="appos">
+<span from="801" to="807"/>
+</rel>
+</span>
+<span id="s252_n5" from="833" to="837">
+<rel label="appos">
+<span from="821" to="831"/>
+</rel>
+</span>
+<span id="s252_n6" from="837" to="838">
+<rel label="appos">
+<span from="833" to="837"/>
+</rel>
+</span>
+<span id="s252_n7" from="838" to="846">
+<rel label="advmod">
+<span from="821" to="831"/>
+</rel>
+</span>
+<span id="s252_n8" from="846" to="847">
+<rel label="case">
+<span from="850" to="851"/>
+</rel>
+</span>
+<span id="s252_n9" from="847" to="850">
+<rel label="nummod">
+<span from="850" to="851"/>
+</rel>
+</span>
+<span id="s252_n10" from="850" to="851">
+<rel label="nmod">
+<span from="862" to="872"/>
+</rel>
+</span>
+<span id="s252_n11" from="851" to="861">
+<rel label="amod">
+<span from="862" to="872"/>
+</rel>
+</span>
+<span id="s252_n12" from="862" to="872">
+<rel label="appos">
+<span from="801" to="807"/>
+</rel>
+</span>
+<span id="s252_n13" from="873" to="880">
+<rel label="amod">
+<span from="894" to="901"/>
+</rel>
+</span>
+<span id="s252_n14" from="880" to="881">
+<rel label="punct">
+<span from="881" to="892"/>
+</rel>
+</span>
+<span id="s252_n15" from="881" to="892">
+<rel label="amod">
+<span from="894" to="901"/>
+</rel>
+</span>
+<span id="s252_n16" from="892" to="893">
+<rel label="punct">
+<span from="881" to="892"/>
+</rel>
+</span>
+<span id="s252_n17" from="894" to="901">
+<rel label="nmod">
+<span from="862" to="872"/>
+</rel>
+</span>
+<span id="s252_n18" from="902" to="906">
+<rel label="appos">
+<span from="894" to="901"/>
+</rel>
+</span>
+<span id="s252_n19" from="906" to="907">
+<rel label="appos">
+<span from="894" to="901"/>
+</rel>
+</span>
+<span id="s252_n20" from="907" to="915">
+<rel label="appos">
+<span from="894" to="901"/>
+</rel>
+</span>
+<span id="s252_n21" from="915" to="916">
+<rel label="case">
+<span from="919" to="920"/>
+</rel>
+</span>
+<span id="s252_n22" from="916" to="919">
+<rel label="nummod">
+<span from="919" to="920"/>
+</rel>
+</span>
+<span id="s252_n23" from="919" to="920">
+<rel label="appos">
+<span from="906" to="907"/>
+</rel>
+</span>
+<span id="s252_n24" from="920" to="923">
+<rel label="case">
+<span from="928" to="937"/>
+</rel>
+</span>
+<span id="s252_n25" from="924" to="927">
+<rel label="det">
+<span from="928" to="937"/>
+</rel>
+</span>
+<span id="s252_n26" from="928" to="937">
+<rel label="nmod">
+<span from="862" to="872"/>
+</rel>
+</span>
+<span id="s252_n27" from="938" to="945">
+<rel label="root">
+<span from="784" to="1037"/>
+</rel>
+</span>
+<span id="s252_n28" from="946" to="949">
+<rel label="nsubj">
+<span from="938" to="945"/>
+</rel>
+</span>
+<span id="s252_n29" from="949" to="950">
+<rel label="punct">
+<span from="1030" to="1036"/>
+</rel>
+</span>
+<span id="s252_n30" from="951" to="957">
+<rel label="mark">
+<span from="1030" to="1036"/>
+</rel>
+</span>
+<span id="s252_n31" from="958" to="963">
+<rel label="amod">
+<span from="977" to="985"/>
+</rel>
+</span>
+<span id="s252_n32" from="964" to="976">
+<rel label="amod">
+<span from="977" to="985"/>
+</rel>
+</span>
+<span id="s252_n33" from="977" to="985">
+<rel label="nsubj">
+<span from="1030" to="1036"/>
+</rel>
+</span>
+<span id="s252_n34" from="986" to="988">
+<rel label="case">
+<span from="1007" to="1029"/>
+</rel>
+</span>
+<span id="s252_n35" from="989" to="994">
+<rel label="det">
+<span from="1007" to="1029"/>
+</rel>
+</span>
+<span id="s252_n36" from="995" to="1006">
+<rel label="amod">
+<span from="1007" to="1029"/>
+</rel>
+</span>
+<span id="s252_n37" from="1007" to="1029">
+<rel label="obl">
+<span from="1030" to="1036"/>
+</rel>
+</span>
+<span id="s252_n38" from="1030" to="1036">
+<rel label="ccomp">
+<span from="938" to="945"/>
+</rel>
+</span>
+<span id="s252_n39" from="1036" to="1037">
+<rel label="punct">
+<span from="938" to="945"/>
+</rel>
+</span>
+<span id="s253_n1" from="1038" to="1041">
+<rel label="det">
+<span from="1080" to="1101"/>
+</rel>
+</span>
+<span id="s253_n2" from="1042" to="1047">
+<rel label="case">
+<span from="1059" to="1067"/>
+</rel>
+</span>
+<span id="s253_n3" from="1048" to="1051">
+<rel label="det">
+<span from="1059" to="1067"/>
+</rel>
+</span>
+<span id="s253_n4" from="1052" to="1058">
+<rel label="amod">
+<span from="1059" to="1067"/>
+</rel>
+</span>
+<span id="s253_n5" from="1059" to="1067">
+<rel label="obl">
+<span from="1068" to="1079"/>
+</rel>
+</span>
+<span id="s253_n6" from="1068" to="1079">
+<rel label="amod">
+<span from="1080" to="1101"/>
+</rel>
+</span>
+<span id="s253_n7" from="1080" to="1101">
+<rel label="nmod">
+<span from="1106" to="1117"/>
+</rel>
+</span>
+<span id="s253_n8" from="1102" to="1105">
+<rel label="nsubj">
+<span from="1106" to="1117"/>
+</rel>
+</span>
+<span id="s253_n9" from="1106" to="1117">
+<rel label="root">
+<span from="1038" to="1118"/>
+</rel>
+</span>
+<span id="s253_n10" from="1117" to="1118">
+<rel label="punct">
+<span from="1106" to="1117"/>
+</rel>
+</span>
+<span id="s254_n1" from="1119" to="1122">
+<rel label="det">
+<span from="1134" to="1144"/>
+</rel>
+</span>
+<span id="s254_n2" from="1123" to="1133">
+<rel label="amod">
+<span from="1134" to="1144"/>
+</rel>
+</span>
+<span id="s254_n3" from="1134" to="1144">
+<rel label="nsubj">
+<span from="1208" to="1221"/>
+</rel>
+</span>
+<span id="s254_n4" from="1144" to="1145">
+<rel label="punct">
+<span from="1191" to="1198"/>
+</rel>
+</span>
+<span id="s254_n5" from="1146" to="1150">
+<rel label="advmod">
+<span from="1151" to="1165"/>
+</rel>
+</span>
+<span id="s254_n6" from="1151" to="1165">
+<rel label="obj">
+<span from="1191" to="1198"/>
+</rel>
+</span>
+<span id="s254_n7" from="1166" to="1170">
+<rel label="cc">
+<span from="1171" to="1190"/>
+</rel>
+</span>
+<span id="s254_n8" from="1171" to="1190">
+<rel label="conj">
+<span from="1151" to="1165"/>
+</rel>
+</span>
+<span id="s254_n9" from="1191" to="1198">
+<rel label="acl">
+<span from="1134" to="1144"/>
+</rel>
+</span>
+<span id="s254_n10" from="1198" to="1199">
+<rel label="punct">
+<span from="1191" to="1198"/>
+</rel>
+</span>
+<span id="s254_n11" from="1200" to="1203">
+<rel label="cop">
+<span from="1208" to="1221"/>
+</rel>
+</span>
+<span id="s254_n12" from="1204" to="1207">
+<rel label="det">
+<span from="1208" to="1221"/>
+</rel>
+</span>
+<span id="s254_n13" from="1208" to="1221">
+<rel label="root">
+<span from="1119" to="1416"/>
+</rel>
+</span>
+<span id="s254_n14" from="1222" to="1232">
+<rel label="advmod">
+<span from="1208" to="1221"/>
+</rel>
+</span>
+<span id="s254_n15" from="1232" to="1233">
+<rel label="punct">
+<span from="1410" to="1415"/>
+</rel>
+</span>
+<span id="s254_n16" from="1234" to="1238">
+<rel label="mark">
+<span from="1410" to="1415"/>
+</rel>
+</span>
+<span id="s254_n17" from="1239" to="1251">
+<rel label="advmod">
+<span from="1252" to="1263"/>
+</rel>
+</span>
+<span id="s254_n18" from="1252" to="1263">
+<rel label="amod">
+<span from="1329" to="1342"/>
+</rel>
+</span>
+<span id="s254_n19" from="1264" to="1268">
+<rel label="cc">
+<span from="1318" to="1328"/>
+</rel>
+</span>
+<span id="s254_n20" from="1269" to="1272">
+<rel label="case">
+<span from="1282" to="1293"/>
+</rel>
+</span>
+<span id="s254_n21" from="1273" to="1281">
+<rel label="amod">
+<span from="1282" to="1293"/>
+</rel>
+</span>
+<span id="s254_n22" from="1282" to="1293">
+<rel label="obl">
+<span from="1318" to="1328"/>
+</rel>
+</span>
+<span id="s254_n23" from="1294" to="1297">
+<rel label="case">
+<span from="1312" to="1317"/>
+</rel>
+</span>
+<span id="s254_n24" from="1298" to="1301">
+<rel label="det">
+<span from="1312" to="1317"/>
+</rel>
+</span>
+<span id="s254_n25" from="1302" to="1311">
+<rel label="amod">
+<span from="1312" to="1317"/>
+</rel>
+</span>
+<span id="s254_n26" from="1312" to="1317">
+<rel label="obl">
+<span from="1318" to="1328"/>
+</rel>
+</span>
+<span id="s254_n27" from="1318" to="1328">
+<rel label="conj">
+<span from="1252" to="1263"/>
+</rel>
+</span>
+<span id="s254_n28" from="1329" to="1342">
+<rel label="nsubj">
+<span from="1410" to="1415"/>
+</rel>
+</span>
+<span id="s254_n29" from="1343" to="1347">
+<rel label="case">
+<span from="1352" to="1361"/>
+</rel>
+</span>
+<span id="s254_n30" from="1348" to="1351">
+<rel label="det">
+<span from="1352" to="1361"/>
+</rel>
+</span>
+<span id="s254_n31" from="1352" to="1361">
+<rel label="obl">
+<span from="1410" to="1415"/>
+</rel>
+</span>
+<span id="s254_n32" from="1362" to="1367">
+<rel label="case">
+<span from="1372" to="1378"/>
+</rel>
+</span>
+<span id="s254_n33" from="1368" to="1371">
+<rel label="det">
+<span from="1372" to="1378"/>
+</rel>
+</span>
+<span id="s254_n34" from="1372" to="1378">
+<rel label="nmod">
+<span from="1352" to="1361"/>
+</rel>
+</span>
+<span id="s254_n35" from="1379" to="1384">
+<rel label="advmod">
+<span from="1410" to="1415"/>
+</rel>
+</span>
+<span id="s254_n36" from="1385" to="1388">
+<rel label="det">
+<span from="1397" to="1409"/>
+</rel>
+</span>
+<span id="s254_n37" from="1389" to="1396">
+<rel label="amod">
+<span from="1397" to="1409"/>
+</rel>
+</span>
+<span id="s254_n38" from="1397" to="1409">
+<rel label="obj">
+<span from="1410" to="1415"/>
+</rel>
+</span>
+<span id="s254_n39" from="1410" to="1415">
+<rel label="ccomp">
+<span from="1208" to="1221"/>
+</rel>
+</span>
+<span id="s254_n40" from="1415" to="1416">
+<rel label="punct">
+<span from="1208" to="1221"/>
+</rel>
+</span>
+<span id="s255_n1" from="1417" to="1420">
+<rel label="nsubj">
+<span from="1421" to="1427"/>
+</rel>
+</span>
+<span id="s255_n2" from="1421" to="1427">
+<rel label="root">
+<span from="1417" to="1464"/>
+</rel>
+</span>
+<span id="s255_n3" from="1428" to="1433">
+<rel label="advmod">
+<span from="1421" to="1427"/>
+</rel>
+</span>
+<span id="s255_n4" from="1434" to="1439">
+<rel label="advmod">
+<span from="1421" to="1427"/>
+</rel>
+</span>
+<span id="s255_n5" from="1440" to="1442">
+<rel label="case">
+<span from="1449" to="1454"/>
+</rel>
+</span>
+<span id="s255_n6" from="1443" to="1448">
+<rel label="det">
+<span from="1449" to="1454"/>
+</rel>
+</span>
+<span id="s255_n7" from="1449" to="1454">
+<rel label="obl">
+<span from="1421" to="1427"/>
+</rel>
+</span>
+<span id="s255_n8" from="1455" to="1463">
+<rel label="compound:prt">
+<span from="1421" to="1427"/>
+</rel>
+</span>
+<span id="s255_n9" from="1463" to="1464">
+<rel label="punct">
+<span from="1421" to="1427"/>
+</rel>
+</span>
+<span id="s256_n1" from="1465" to="1467">
+<rel label="case">
+<span from="1468" to="1479"/>
+</rel>
+</span>
+<span id="s256_n2" from="1468" to="1479">
+<rel label="obl">
+<span from="1504" to="1511"/>
+</rel>
+</span>
+<span id="s256_n3" from="1480" to="1483">
+<rel label="cop">
+<span from="1504" to="1511"/>
+</rel>
+</span>
+<span id="s256_n4" from="1484" to="1487">
+<rel label="det">
+<span from="1488" to="1498"/>
+</rel>
+</span>
+<span id="s256_n5" from="1488" to="1498">
+<rel label="nsubj">
+<span from="1504" to="1511"/>
+</rel>
+</span>
+<span id="s256_n6" from="1499" to="1503">
+<rel label="advmod">
+<span from="1504" to="1511"/>
+</rel>
+</span>
+<span id="s256_n7" from="1504" to="1511">
+<rel label="root">
+<span from="1465" to="1548"/>
+</rel>
+</span>
+<span id="s256_n8" from="1511" to="1512">
+<rel label="punct">
+<span from="1539" to="1547"/>
+</rel>
+</span>
+<span id="s256_n9" from="1513" to="1521">
+<rel label="advmod">
+<span from="1522" to="1527"/>
+</rel>
+</span>
+<span id="s256_n10" from="1522" to="1527">
+<rel label="advmod">
+<span from="1539" to="1547"/>
+</rel>
+</span>
+<span id="s256_n11" from="1528" to="1531">
+<rel label="det">
+<span from="1532" to="1538"/>
+</rel>
+</span>
+<span id="s256_n12" from="1532" to="1538">
+<rel label="nsubj">
+<span from="1539" to="1547"/>
+</rel>
+</span>
+<span id="s256_n13" from="1539" to="1547">
+<rel label="acl">
+<span from="1504" to="1511"/>
+</rel>
+</span>
+<span id="s256_n14" from="1547" to="1548">
+<rel label="punct">
+<span from="1504" to="1511"/>
+</rel>
+</span>
+<span id="s257_n1" from="1549" to="1552">
+<rel label="det">
+<span from="1553" to="1565"/>
+</rel>
+</span>
+<span id="s257_n2" from="1553" to="1565">
+<rel label="nsubj:pass">
+<span from="1644" to="1651"/>
+</rel>
+</span>
+<span id="s257_n3" from="1567" to="1570">
+<rel label="det">
+<span from="1583" to="1590"/>
+</rel>
+</span>
+<span id="s257_n4" from="1571" to="1582">
+<rel label="amod">
+<span from="1583" to="1590"/>
+</rel>
+</span>
+<span id="s257_n5" from="1583" to="1590">
+<rel label="nmod">
+<span from="1553" to="1565"/>
+</rel>
+</span>
+<span id="s257_n6" from="1591" to="1595">
+<rel label="aux:pass">
+<span from="1644" to="1651"/>
+</rel>
+</span>
+<span id="s257_n7" from="1596" to="1599">
+<rel label="case">
+<span from="1600" to="1616"/>
+</rel>
+</span>
+<span id="s257_n8" from="1600" to="1616">
+<rel label="obl">
+<span from="1644" to="1651"/>
+</rel>
+</span>
+<span id="s257_n9" from="1617" to="1622">
+<rel label="case">
+<span from="1635" to="1643"/>
+</rel>
+</span>
+<span id="s257_n10" from="1623" to="1627">
+<rel label="det">
+<span from="1635" to="1643"/>
+</rel>
+</span>
+<span id="s257_n11" from="1628" to="1634">
+<rel label="amod">
+<span from="1635" to="1643"/>
+</rel>
+</span>
+<span id="s257_n12" from="1635" to="1643">
+<rel label="obl">
+<span from="1644" to="1651"/>
+</rel>
+</span>
+<span id="s257_n13" from="1644" to="1651">
+<rel label="root">
+<span from="1549" to="1789"/>
+</rel>
+</span>
+<span id="s257_n14" from="1651" to="1652">
+<rel label="punct">
+<span from="1644" to="1651"/>
+</rel>
+</span>
+<span id="s257_n15" from="1654" to="1659">
+<rel label="advmod">
+<span from="1669" to="1680"/>
+</rel>
+</span>
+<span id="s257_n16" from="1660" to="1663">
+<rel label="cop">
+<span from="1669" to="1680"/>
+</rel>
+</span>
+<span id="s257_n17" from="1665" to="1668">
+<rel label="det">
+<span from="1669" to="1680"/>
+</rel>
+</span>
+<span id="s257_n18" from="1669" to="1680">
+<rel label="nsubj:pass">
+<span from="1644" to="1651"/>
+</rel>
+</span>
+<span id="s257_n19" from="1680" to="1681">
+<rel label="punct">
+<span from="1715" to="1723"/>
+</rel>
+</span>
+<span id="s257_n20" from="1682" to="1685">
+<rel label="case">
+<span from="1686" to="1689"/>
+</rel>
+</span>
+<span id="s257_n21" from="1686" to="1689">
+<rel label="obl">
+<span from="1715" to="1723"/>
+</rel>
+</span>
+<span id="s257_n22" from="1690" to="1693">
+<rel label="det">
+<span from="1694" to="1700"/>
+</rel>
+</span>
+<span id="s257_n23" from="1694" to="1700">
+<rel label="nsubj">
+<span from="1715" to="1723"/>
+</rel>
+</span>
+<span id="s257_n24" from="1701" to="1703">
+<rel label="case">
+<span from="1708" to="1714"/>
+</rel>
+</span>
+<span id="s257_n25" from="1704" to="1707">
+<rel label="det">
+<span from="1708" to="1714"/>
+</rel>
+</span>
+<span id="s257_n26" from="1708" to="1714">
+<rel label="obl">
+<span from="1715" to="1723"/>
+</rel>
+</span>
+<span id="s257_n27" from="1715" to="1723">
+<rel label="acl">
+<span from="1669" to="1680"/>
+</rel>
+</span>
+<span id="s257_n28" from="1723" to="1724">
+<rel label="punct">
+<span from="1730" to="1737"/>
+</rel>
+</span>
+<span id="s257_n29" from="1725" to="1728">
+<rel label="cc">
+<span from="1730" to="1737"/>
+</rel>
+</span>
+<span id="s257_n30" from="1730" to="1737">
+<rel label="conj">
+<span from="1644" to="1651"/>
+</rel>
+</span>
+<span id="s257_n31" from="1738" to="1744">
+<rel label="obj">
+<span from="1730" to="1737"/>
+</rel>
+</span>
+<span id="s257_n32" from="1745" to="1748">
+<rel label="det">
+<span from="1761" to="1771"/>
+</rel>
+</span>
+<span id="s257_n33" from="1749" to="1760">
+<rel label="amod">
+<span from="1761" to="1771"/>
+</rel>
+</span>
+<span id="s257_n34" from="1761" to="1771">
+<rel label="nmod">
+<span from="1738" to="1744"/>
+</rel>
+</span>
+<span id="s257_n35" from="1772" to="1777">
+<rel label="amod">
+<span from="1778" to="1785"/>
+</rel>
+</span>
+<span id="s257_n36" from="1778" to="1785">
+<rel label="nmod">
+<span from="1761" to="1771"/>
+</rel>
+</span>
+<span id="s257_n37" from="1786" to="1788">
+<rel label="compound:prt">
+<span from="1730" to="1737"/>
+</rel>
+</span>
+<span id="s257_n38" from="1788" to="1789">
+<rel label="punct">
+<span from="1644" to="1651"/>
+</rel>
+</span>
+<span id="s258_n1" from="1791" to="1794">
+<rel label="cop">
+<span from="1809" to="1821"/>
+</rel>
+</span>
+<span id="s258_n2" from="1795" to="1798">
+<rel label="det">
+<span from="1809" to="1821"/>
+</rel>
+</span>
+<span id="s258_n3" from="1799" to="1808">
+<rel label="amod">
+<span from="1809" to="1821"/>
+</rel>
+</span>
+<span id="s258_n4" from="1809" to="1821">
+<rel label="root">
+<span from="1791" to="1845"/>
+</rel>
+</span>
+<span id="s258_n5" from="1822" to="1825">
+<rel label="det">
+<span from="1826" to="1844"/>
+</rel>
+</span>
+<span id="s258_n6" from="1826" to="1844">
+<rel label="nmod">
+<span from="1809" to="1821"/>
+</rel>
+</span>
+<span id="s258_n7" from="1844" to="1845">
+<rel label="punct">
+<span from="1809" to="1821"/>
+</rel>
+</span>
+<span id="s259_n1" from="1846" to="1855">
+<rel label="nsubj">
+<span from="1883" to="1890"/>
+</rel>
+</span>
+<span id="s259_n2" from="1856" to="1859">
+<rel label="case">
+<span from="1872" to="1882"/>
+</rel>
+</span>
+<span id="s259_n3" from="1860" to="1871">
+<rel label="amod">
+<span from="1872" to="1882"/>
+</rel>
+</span>
+<span id="s259_n4" from="1872" to="1882">
+<rel label="nmod">
+<span from="1846" to="1855"/>
+</rel>
+</span>
+<span id="s259_n5" from="1883" to="1890">
+<rel label="root">
+<span from="1846" to="1999"/>
+</rel>
+</span>
+<span id="s259_n6" from="1891" to="1901">
+<rel label="amod">
+<span from="1902" to="1906"/>
+</rel>
+</span>
+<span id="s259_n7" from="1902" to="1906">
+<rel label="obj">
+<span from="1883" to="1890"/>
+</rel>
+</span>
+<span id="s259_n8" from="1907" to="1910">
+<rel label="case">
+<span from="1945" to="1952"/>
+</rel>
+</span>
+<span id="s259_n9" from="1911" to="1915">
+<rel label="advmod">
+<span from="1916" to="1924"/>
+</rel>
+</span>
+<span id="s259_n10" from="1916" to="1924">
+<rel label="amod">
+<span from="1945" to="1952"/>
+</rel>
+</span>
+<span id="s259_n11" from="1924" to="1925">
+<rel label="punct">
+<span from="1931" to="1944"/>
+</rel>
+</span>
+<span id="s259_n12" from="1926" to="1930">
+<rel label="cc">
+<span from="1931" to="1944"/>
+</rel>
+</span>
+<span id="s259_n13" from="1931" to="1944">
+<rel label="conj">
+<span from="1916" to="1924"/>
+</rel>
+</span>
+<span id="s259_n14" from="1945" to="1952">
+<rel label="nmod">
+<span from="1902" to="1906"/>
+</rel>
+</span>
+<span id="s259_n15" from="1952" to="1953">
+<rel label="punct">
+<span from="1989" to="1998"/>
+</rel>
+</span>
+<span id="s259_n16" from="1954" to="1956">
+<rel label="case">
+<span from="1957" to="1965"/>
+</rel>
+</span>
+<span id="s259_n17" from="1957" to="1965">
+<rel label="xcomp">
+<span from="1989" to="1998"/>
+</rel>
+</span>
+<span id="s259_n18" from="1966" to="1969">
+<rel label="det">
+<span from="1980" to="1988"/>
+</rel>
+</span>
+<span id="s259_n19" from="1970" to="1979">
+<rel label="amod">
+<span from="1980" to="1988"/>
+</rel>
+</span>
+<span id="s259_n20" from="1980" to="1988">
+<rel label="nsubj">
+<span from="1989" to="1998"/>
+</rel>
+</span>
+<span id="s259_n21" from="1989" to="1998">
+<rel label="acl">
+<span from="1945" to="1952"/>
+</rel>
+</span>
+<span id="s259_n22" from="1998" to="1999">
+<rel label="punct">
+<span from="1883" to="1890"/>
+</rel>
+</span>
+<span id="s260_n1" from="2000" to="2003">
+<rel label="det">
+<span from="2015" to="2023"/>
+</rel>
+</span>
+<span id="s260_n2" from="2004" to="2014">
+<rel label="amod">
+<span from="2015" to="2023"/>
+</rel>
+</span>
+<span id="s260_n3" from="2015" to="2023">
+<rel label="nsubj">
+<span from="2024" to="2032"/>
+</rel>
+</span>
+<span id="s260_n4" from="2024" to="2032">
+<rel label="root">
+<span from="2000" to="2065"/>
+</rel>
+</span>
+<span id="s260_n5" from="2033" to="2038">
+<rel label="obj">
+<span from="2024" to="2032"/>
+</rel>
+</span>
+<span id="s260_n6" from="2039" to="2041">
+<rel label="case">
+<span from="2042" to="2064"/>
+</rel>
+</span>
+<span id="s260_n7" from="2042" to="2064">
+<rel label="obl">
+<span from="2024" to="2032"/>
+</rel>
+</span>
+<span id="s260_n8" from="2064" to="2065">
+<rel label="punct">
+<span from="2024" to="2032"/>
+</rel>
+</span>
+<span id="s261_n1" from="2066" to="2072">
+<rel label="nsubj:pass">
+<span from="2147" to="2157"/>
+</rel>
+</span>
+<span id="s261_n2" from="2073" to="2076">
+<rel label="advmod">
+<span from="2066" to="2072"/>
+</rel>
+</span>
+<span id="s261_n3" from="2077" to="2080">
+<rel label="cc">
+<span from="2092" to="2097"/>
+</rel>
+</span>
+<span id="s261_n4" from="2081" to="2087">
+<rel label="case">
+<span from="2092" to="2097"/>
+</rel>
+</span>
+<span id="s261_n5" from="2088" to="2091">
+<rel label="det">
+<span from="2092" to="2097"/>
+</rel>
+</span>
+<span id="s261_n6" from="2092" to="2097">
+<rel label="conj">
+<span from="2073" to="2076"/>
+</rel>
+</span>
+<span id="s261_n7" from="2098" to="2114">
+<rel label="appos">
+<span from="2092" to="2097"/>
+</rel>
+</span>
+<span id="s261_n8" from="2115" to="2121">
+<rel label="aux:pass">
+<span from="2147" to="2157"/>
+</rel>
+</span>
+<span id="s261_n9" from="2122" to="2137">
+<rel label="advmod">
+<span from="2147" to="2157"/>
+</rel>
+</span>
+<span id="s261_n10" from="2138" to="2146">
+<rel label="advmod">
+<span from="2147" to="2157"/>
+</rel>
+</span>
+<span id="s261_n11" from="2147" to="2157">
+<rel label="root">
+<span from="2066" to="2158"/>
+</rel>
+</span>
+<span id="s261_n12" from="2157" to="2158">
+<rel label="punct">
+<span from="2147" to="2157"/>
+</rel>
+</span>
+<span id="s262_n1" from="2159" to="2161">
+<rel label="nsubj">
+<span from="2162" to="2166"/>
+</rel>
+</span>
+<span id="s262_n2" from="2162" to="2166">
+<rel label="root">
+<span from="2159" to="2344"/>
+</rel>
+</span>
+<span id="s262_n3" from="2167" to="2176">
+<rel label="obj">
+<span from="2162" to="2166"/>
+</rel>
+</span>
+<span id="s262_n4" from="2176" to="2177">
+<rel label="punct">
+<span from="2243" to="2253"/>
+</rel>
+</span>
+<span id="s262_n5" from="2178" to="2183">
+<rel label="det">
+<span from="2195" to="2205"/>
+</rel>
+</span>
+<span id="s262_n6" from="2184" to="2194">
+<rel label="amod">
+<span from="2195" to="2205"/>
+</rel>
+</span>
+<span id="s262_n7" from="2195" to="2205">
+<rel label="nsubj">
+<span from="2243" to="2253"/>
+</rel>
+</span>
+<span id="s262_n8" from="2206" to="2218">
+<rel label="advmod">
+<span from="2243" to="2253"/>
+</rel>
+</span>
+<span id="s262_n9" from="2219" to="2221">
+<rel label="case">
+<span from="2235" to="2242"/>
+</rel>
+</span>
+<span id="s262_n10" from="2222" to="2227">
+<rel label="det">
+<span from="2235" to="2242"/>
+</rel>
+</span>
+<span id="s262_n11" from="2228" to="2234">
+<rel label="amod">
+<span from="2235" to="2242"/>
+</rel>
+</span>
+<span id="s262_n12" from="2235" to="2242">
+<rel label="obl">
+<span from="2243" to="2253"/>
+</rel>
+</span>
+<span id="s262_n13" from="2243" to="2253">
+<rel label="acl">
+<span from="2167" to="2176"/>
+</rel>
+</span>
+<span id="s262_n14" from="2254" to="2258">
+<rel label="aux">
+<span from="2243" to="2253"/>
+</rel>
+</span>
+<span id="s262_n15" from="2258" to="2259">
+<rel label="punct">
+<span from="2335" to="2343"/>
+</rel>
+</span>
+<span id="s262_n16" from="2260" to="2262">
+<rel label="mark">
+<span from="2335" to="2343"/>
+</rel>
+</span>
+<span id="s262_n17" from="2263" to="2266">
+<rel label="det">
+<span from="2267" to="2279"/>
+</rel>
+</span>
+<span id="s262_n18" from="2267" to="2279">
+<rel label="obj">
+<span from="2335" to="2343"/>
+</rel>
+</span>
+<span id="s262_n19" from="2280" to="2283">
+<rel label="cc">
+<span from="2295" to="2300"/>
+</rel>
+</span>
+<span id="s262_n20" from="2284" to="2290">
+<rel label="case">
+<span from="2295" to="2300"/>
+</rel>
+</span>
+<span id="s262_n21" from="2291" to="2294">
+<rel label="det">
+<span from="2295" to="2300"/>
+</rel>
+</span>
+<span id="s262_n22" from="2295" to="2300">
+<rel label="conj">
+<span from="2267" to="2279"/>
+</rel>
+</span>
+<span id="s262_n23" from="2301" to="2304">
+<rel label="cc">
+<span from="2309" to="2316"/>
+</rel>
+</span>
+<span id="s262_n24" from="2305" to="2308">
+<rel label="det">
+<span from="2309" to="2316"/>
+</rel>
+</span>
+<span id="s262_n25" from="2309" to="2316">
+<rel label="conj">
+<span from="2295" to="2300"/>
+</rel>
+</span>
+<span id="s262_n26" from="2317" to="2319">
+<rel label="case">
+<span from="2320" to="2325"/>
+</rel>
+</span>
+<span id="s262_n27" from="2320" to="2325">
+<rel label="nmod">
+<span from="2309" to="2316"/>
+</rel>
+</span>
+<span id="s262_n28" from="2326" to="2334">
+<rel label="xcomp">
+<span from="2335" to="2343"/>
+</rel>
+</span>
+<span id="s262_n29" from="2335" to="2343">
+<rel label="advcl">
+<span from="2243" to="2253"/>
+</rel>
+</span>
+<span id="s262_n30" from="2343" to="2344">
+<rel label="punct">
+<span from="2162" to="2166"/>
+</rel>
+</span>
+<span id="s263_n1" from="2345" to="2348">
+<rel label="case">
+<span from="2355" to="2361"/>
+</rel>
+</span>
+<span id="s263_n2" from="2349" to="2354">
+<rel label="det">
+<span from="2355" to="2361"/>
+</rel>
+</span>
+<span id="s263_n3" from="2355" to="2361">
+<rel label="obl">
+<span from="2514" to="2523"/>
+</rel>
+</span>
+<span id="s263_n4" from="2361" to="2362">
+<rel label="punct">
+<span from="2434" to="2441"/>
+</rel>
+</span>
+<span id="s263_n5" from="2363" to="2366">
+<rel label="nsubj">
+<span from="2434" to="2441"/>
+</rel>
+</span>
+<span id="s263_n6" from="2367" to="2370">
+<rel label="advmod">
+<span from="2426" to="2433"/>
+</rel>
+</span>
+<span id="s263_n7" from="2371" to="2381">
+<rel label="amod">
+<span from="2426" to="2433"/>
+</rel>
+</span>
+<span id="s263_n8" from="2381" to="2382">
+<rel label="punct">
+<span from="2382" to="2394"/>
+</rel>
+</span>
+<span id="s263_n9" from="2382" to="2394">
+<rel label="amod">
+<span from="2426" to="2433"/>
+</rel>
+</span>
+<span id="s263_n10" from="2394" to="2395">
+<rel label="punct">
+<span from="2382" to="2394"/>
+</rel>
+</span>
+<span id="s263_n11" from="2396" to="2405">
+<rel label="amod">
+<span from="2426" to="2433"/>
+</rel>
+</span>
+<span id="s263_n12" from="2406" to="2410">
+<rel label="cc">
+<span from="2411" to="2425"/>
+</rel>
+</span>
+<span id="s263_n13" from="2411" to="2425">
+<rel label="conj">
+<span from="2396" to="2405"/>
+</rel>
+</span>
+<span id="s263_n14" from="2426" to="2433">
+<rel label="obj">
+<span from="2434" to="2441"/>
+</rel>
+</span>
+<span id="s263_n15" from="2434" to="2441">
+<rel label="acl">
+<span from="2355" to="2361"/>
+</rel>
+</span>
+<span id="s263_n16" from="2441" to="2442">
+<rel label="punct">
+<span from="2434" to="2441"/>
+</rel>
+</span>
+<span id="s263_n17" from="2443" to="2447">
+<rel label="aux">
+<span from="2514" to="2523"/>
+</rel>
+</span>
+<span id="s263_n18" from="2448" to="2456">
+<rel label="nsubj">
+<span from="2514" to="2523"/>
+</rel>
+</span>
+<span id="s263_n19" from="2457" to="2460">
+<rel label="case">
+<span from="2473" to="2483"/>
+</rel>
+</span>
+<span id="s263_n20" from="2461" to="2472">
+<rel label="amod">
+<span from="2473" to="2483"/>
+</rel>
+</span>
+<span id="s263_n21" from="2473" to="2483">
+<rel label="obl">
+<span from="2491" to="2496"/>
+</rel>
+</span>
+<span id="s263_n22" from="2484" to="2490">
+<rel label="advmod">
+<span from="2491" to="2496"/>
+</rel>
+</span>
+<span id="s263_n23" from="2491" to="2496">
+<rel label="amod">
+<span from="2504" to="2513"/>
+</rel>
+</span>
+<span id="s263_n24" from="2497" to="2503">
+<rel label="amod">
+<span from="2504" to="2513"/>
+</rel>
+</span>
+<span id="s263_n25" from="2504" to="2513">
+<rel label="nsubj">
+<span from="2514" to="2523"/>
+</rel>
+</span>
+<span id="s263_n26" from="2514" to="2523">
+<rel label="root">
+<span from="2345" to="2552"/>
+</rel>
+</span>
+<span id="s263_n27" from="2524" to="2525">
+<rel label="punct">
+<span from="2525" to="2530"/>
+</rel>
+</span>
+<span id="s263_n28" from="2525" to="2530">
+<rel label="parataxis">
+<span from="2514" to="2523"/>
+</rel>
+</span>
+<span id="s263_n29" from="2531" to="2543">
+<rel label="amod">
+<span from="2544" to="2550"/>
+</rel>
+</span>
+<span id="s263_n30" from="2544" to="2550">
+<rel label="obj">
+<span from="2525" to="2530"/>
+</rel>
+</span>
+<span id="s263_n31" from="2550" to="2551">
+<rel label="punct">
+<span from="2525" to="2530"/>
+</rel>
+</span>
+<span id="s263_n32" from="2551" to="2552">
+<rel label="punct">
+<span from="2514" to="2523"/>
+</rel>
+</span>
+<span id="s264_n1" from="2553" to="2556">
+<rel label="case">
+<span from="2576" to="2586"/>
+</rel>
+</span>
+<span id="s264_n2" from="2557" to="2562">
+<rel label="det">
+<span from="2576" to="2586"/>
+</rel>
+</span>
+<span id="s264_n3" from="2563" to="2575">
+<rel label="amod">
+<span from="2576" to="2586"/>
+</rel>
+</span>
+<span id="s264_n4" from="2576" to="2586">
+<rel label="obl">
+<span from="2660" to="2671"/>
+</rel>
+</span>
+<span id="s264_n5" from="2587" to="2592">
+<rel label="det">
+<span from="2593" to="2598"/>
+</rel>
+</span>
+<span id="s264_n6" from="2593" to="2598">
+<rel label="nmod">
+<span from="2576" to="2586"/>
+</rel>
+</span>
+<span id="s264_n7" from="2599" to="2603">
+<rel label="cc">
+<span from="2604" to="2617"/>
+</rel>
+</span>
+<span id="s264_n8" from="2604" to="2617">
+<rel label="conj">
+<span from="2593" to="2598"/>
+</rel>
+</span>
+<span id="s264_n9" from="2618" to="2622">
+<rel label="aux">
+<span from="2660" to="2671"/>
+</rel>
+</span>
+<span id="s264_n10" from="2623" to="2626">
+<rel label="nsubj">
+<span from="2660" to="2671"/>
+</rel>
+</span>
+<span id="s264_n11" from="2627" to="2630">
+<rel label="det">
+<span from="2642" to="2652"/>
+</rel>
+</span>
+<span id="s264_n12" from="2631" to="2641">
+<rel label="amod">
+<span from="2642" to="2652"/>
+</rel>
+</span>
+<span id="s264_n13" from="2642" to="2652">
+<rel label="obj">
+<span from="2660" to="2671"/>
+</rel>
+</span>
+<span id="s264_n14" from="2653" to="2659">
+<rel label="advmod">
+<span from="2660" to="2671"/>
+</rel>
+</span>
+<span id="s264_n15" from="2660" to="2671">
+<rel label="root">
+<span from="2553" to="2672"/>
+</rel>
+</span>
+<span id="s264_n16" from="2671" to="2672">
+<rel label="punct">
+<span from="2660" to="2671"/>
+</rel>
+</span>
+<span id="s265_n1" from="2673" to="2683">
+<rel label="advmod">
+<span from="2724" to="2741"/>
+</rel>
+</span>
+<span id="s265_n2" from="2684" to="2687">
+<rel label="cop">
+<span from="2724" to="2741"/>
+</rel>
+</span>
+<span id="s265_n3" from="2688" to="2691">
+<rel label="det">
+<span from="2692" to="2701"/>
+</rel>
+</span>
+<span id="s265_n4" from="2692" to="2701">
+<rel label="nsubj">
+<span from="2724" to="2741"/>
+</rel>
+</span>
+<span id="s265_n5" from="2702" to="2707">
+<rel label="det">
+<span from="2708" to="2723"/>
+</rel>
+</span>
+<span id="s265_n6" from="2708" to="2723">
+<rel label="nmod">
+<span from="2692" to="2701"/>
+</rel>
+</span>
+<span id="s265_n7" from="2724" to="2741">
+<rel label="root">
+<span from="2673" to="2808"/>
+</rel>
+</span>
+<span id="s265_n8" from="2742" to="2745">
+<rel label="cc">
+<span from="2752" to="2760"/>
+</rel>
+</span>
+<span id="s265_n9" from="2746" to="2751">
+<rel label="advmod">
+<span from="2752" to="2760"/>
+</rel>
+</span>
+<span id="s265_n10" from="2752" to="2760">
+<rel label="conj">
+<span from="2724" to="2741"/>
+</rel>
+</span>
+<span id="s265_n11" from="2761" to="2764">
+<rel label="case">
+<span from="2769" to="2778"/>
+</rel>
+</span>
+<span id="s265_n12" from="2765" to="2768">
+<rel label="det">
+<span from="2769" to="2778"/>
+</rel>
+</span>
+<span id="s265_n13" from="2769" to="2778">
+<rel label="obl">
+<span from="2752" to="2760"/>
+</rel>
+</span>
+<span id="s265_n14" from="2779" to="2789">
+<rel label="advmod">
+<span from="2790" to="2807"/>
+</rel>
+</span>
+<span id="s265_n15" from="2790" to="2807">
+<rel label="nmod">
+<span from="2769" to="2778"/>
+</rel>
+</span>
+<span id="s265_n16" from="2807" to="2808">
+<rel label="punct">
+<span from="2724" to="2741"/>
+</rel>
+</span>
+<span id="s266_n1" from="2809" to="2812">
+<rel label="det">
+<span from="2819" to="2826"/>
+</rel>
+</span>
+<span id="s266_n2" from="2813" to="2818">
+<rel label="amod">
+<span from="2819" to="2826"/>
+</rel>
+</span>
+<span id="s266_n3" from="2819" to="2826">
+<rel label="nsubj">
+<span from="2847" to="2853"/>
+</rel>
+</span>
+<span id="s266_n4" from="2827" to="2838">
+<rel label="amod">
+<span from="2839" to="2846"/>
+</rel>
+</span>
+<span id="s266_n5" from="2839" to="2846">
+<rel label="nmod">
+<span from="2819" to="2826"/>
+</rel>
+</span>
+<span id="s266_n6" from="2847" to="2853">
+<rel label="root">
+<span from="2809" to="2970"/>
+</rel>
+</span>
+<span id="s266_n7" from="2854" to="2857">
+<rel label="case">
+<span from="2862" to="2870"/>
+</rel>
+</span>
+<span id="s266_n8" from="2858" to="2861">
+<rel label="det">
+<span from="2862" to="2870"/>
+</rel>
+</span>
+<span id="s266_n9" from="2862" to="2870">
+<rel label="obj">
+<span from="2847" to="2853"/>
+</rel>
+</span>
+<span id="s266_n10" from="2870" to="2871">
+<rel label="punct">
+<span from="2906" to="2909"/>
+</rel>
+</span>
+<span id="s266_n11" from="2872" to="2876">
+<rel label="mark">
+<span from="2906" to="2909"/>
+</rel>
+</span>
+<span id="s266_n12" from="2877" to="2881">
+<rel label="det">
+<span from="2882" to="2905"/>
+</rel>
+</span>
+<span id="s266_n13" from="2882" to="2905">
+<rel label="nsubj">
+<span from="2906" to="2909"/>
+</rel>
+</span>
+<span id="s266_n14" from="2906" to="2909">
+<rel label="ccomp">
+<span from="2862" to="2870"/>
+</rel>
+</span>
+<span id="s266_n15" from="2910" to="2915">
+<rel label="advmod">
+<span from="2906" to="2909"/>
+</rel>
+</span>
+<span id="s266_n16" from="2916" to="2920">
+<rel label="cop">
+<span from="2906" to="2909"/>
+</rel>
+</span>
+<span id="s266_n17" from="2920" to="2921">
+<rel label="punct">
+<span from="2939" to="2969"/>
+</rel>
+</span>
+<span id="s266_n18" from="2922" to="2925">
+<rel label="case">
+<span from="2939" to="2969"/>
+</rel>
+</span>
+<span id="s266_n19" from="2926" to="2938">
+<rel label="advmod">
+<span from="2939" to="2969"/>
+</rel>
+</span>
+<span id="s266_n20" from="2939" to="2969">
+<rel label="obl">
+<span from="2906" to="2909"/>
+</rel>
+</span>
+<span id="s266_n21" from="2969" to="2970">
+<rel label="punct">
+<span from="2847" to="2853"/>
+</rel>
+</span>
+<span id="s267_n1" from="2971" to="2974">
+<rel label="det">
+<span from="2975" to="2981"/>
+</rel>
+</span>
+<span id="s267_n2" from="2975" to="2981">
+<rel label="root">
+<span from="2971" to="3139"/>
+</rel>
+</span>
+<span id="s267_n3" from="2982" to="2985">
+<rel label="case">
+<span from="3010" to="3016"/>
+</rel>
+</span>
+<span id="s267_n4" from="2986" to="2996">
+<rel label="advmod">
+<span from="2997" to="3009"/>
+</rel>
+</span>
+<span id="s267_n5" from="2997" to="3009">
+<rel label="amod">
+<span from="3010" to="3016"/>
+</rel>
+</span>
+<span id="s267_n6" from="3010" to="3016">
+<rel label="nmod">
+<span from="2975" to="2981"/>
+</rel>
+</span>
+<span id="s267_n7" from="3017" to="3033">
+<rel label="advmod">
+<span from="2975" to="2981"/>
+</rel>
+</span>
+<span id="s267_n8" from="3034" to="3037">
+<rel label="case">
+<span from="3038" to="3056"/>
+</rel>
+</span>
+<span id="s267_n9" from="3038" to="3056">
+<rel label="nmod">
+<span from="2975" to="2981"/>
+</rel>
+</span>
+<span id="s267_n10" from="3056" to="3057">
+<rel label="punct">
+<span from="3125" to="3133"/>
+</rel>
+</span>
+<span id="s267_n11" from="3058" to="3060">
+<rel label="mark">
+<span from="3125" to="3133"/>
+</rel>
+</span>
+<span id="s267_n12" from="3061" to="3064">
+<rel label="nsubj">
+<span from="3125" to="3133"/>
+</rel>
+</span>
+<span id="s267_n13" from="3065" to="3079">
+<rel label="advmod">
+<span from="3125" to="3133"/>
+</rel>
+</span>
+<span id="s267_n14" from="3080" to="3083">
+<rel label="case">
+<span from="3092" to="3101"/>
+</rel>
+</span>
+<span id="s267_n15" from="3084" to="3091">
+<rel label="amod">
+<span from="3092" to="3101"/>
+</rel>
+</span>
+<span id="s267_n16" from="3092" to="3101">
+<rel label="obl">
+<span from="3125" to="3133"/>
+</rel>
+</span>
+<span id="s267_n17" from="3102" to="3109">
+<rel label="amod">
+<span from="3110" to="3124"/>
+</rel>
+</span>
+<span id="s267_n18" from="3110" to="3124">
+<rel label="obj">
+<span from="3125" to="3133"/>
+</rel>
+</span>
+<span id="s267_n19" from="3125" to="3133">
+<rel label="ccomp">
+<span from="2975" to="2981"/>
+</rel>
+</span>
+<span id="s267_n20" from="3134" to="3138">
+<rel label="aux">
+<span from="3125" to="3133"/>
+</rel>
+</span>
+<span id="s267_n21" from="3138" to="3139">
+<rel label="punct">
+<span from="2975" to="2981"/>
+</rel>
+</span>
+<span id="s268_n1" from="3140" to="3151">
+<rel label="advmod">
+<span from="3152" to="3156"/>
+</rel>
+</span>
+<span id="s268_n2" from="3152" to="3156">
+<rel label="root">
+<span from="3140" to="3232"/>
+</rel>
+</span>
+<span id="s268_n3" from="3157" to="3159">
+<rel label="nsubj">
+<span from="3152" to="3156"/>
+</rel>
+</span>
+<span id="s268_n4" from="3160" to="3169">
+<rel label="obj">
+<span from="3152" to="3156"/>
+</rel>
+</span>
+<span id="s268_n5" from="3169" to="3170">
+<rel label="punct">
+<span from="3219" to="3231"/>
+</rel>
+</span>
+<span id="s268_n6" from="3171" to="3179">
+<rel label="obj">
+<span from="3219" to="3231"/>
+</rel>
+</span>
+<span id="s268_n7" from="3180" to="3185">
+<rel label="amod">
+<span from="3186" to="3194"/>
+</rel>
+</span>
+<span id="s268_n8" from="3186" to="3194">
+<rel label="nmod">
+<span from="3171" to="3179"/>
+</rel>
+</span>
+<span id="s268_n9" from="3195" to="3198">
+<rel label="case">
+<span from="3199" to="3209"/>
+</rel>
+</span>
+<span id="s268_n10" from="3199" to="3209">
+<rel label="obl">
+<span from="3219" to="3231"/>
+</rel>
+</span>
+<span id="s268_n11" from="3210" to="3211">
+<rel label="punct">
+<span from="3211" to="3218"/>
+</rel>
+</span>
+<span id="s268_n12" from="3211" to="3218">
+<rel label="appos">
+<span from="3199" to="3209"/>
+</rel>
+</span>
+<span id="s268_n13" from="3218" to="3219">
+<rel label="punct">
+<span from="3211" to="3218"/>
+</rel>
+</span>
+<span id="s268_n14" from="3219" to="3231">
+<rel label="xcomp">
+<span from="3160" to="3169"/>
+</rel>
+</span>
+<span id="s268_n15" from="3231" to="3232">
+<rel label="punct">
+<span from="3152" to="3156"/>
+</rel>
+</span>
+<span id="s269_n1" from="3233" to="3235">
+<rel label="nsubj">
+<span from="3236" to="3240"/>
+</rel>
+</span>
+<span id="s269_n2" from="3236" to="3240">
+<rel label="root">
+<span from="3233" to="3394"/>
+</rel>
+</span>
+<span id="s269_n3" from="3241" to="3245">
+<rel label="nummod">
+<span from="3246" to="3267"/>
+</rel>
+</span>
+<span id="s269_n4" from="3246" to="3267">
+<rel label="obj">
+<span from="3236" to="3240"/>
+</rel>
+</span>
+<span id="s269_n5" from="3267" to="3268">
+<rel label="punct">
+<span from="3236" to="3240"/>
+</rel>
+</span>
+<span id="s269_n6" from="3269" to="3275">
+<rel label="amod">
+<span from="3276" to="3282"/>
+</rel>
+</span>
+<span id="s269_n7" from="3276" to="3282">
+<rel label="nsubj:pass">
+<span from="3296" to="3304"/>
+</rel>
+</span>
+<span id="s269_n8" from="3283" to="3295">
+<rel label="advmod">
+<span from="3296" to="3304"/>
+</rel>
+</span>
+<span id="s269_n9" from="3296" to="3304">
+<rel label="parataxis">
+<span from="3236" to="3240"/>
+</rel>
+</span>
+<span id="s269_n10" from="3305" to="3311">
+<rel label="aux:pass">
+<span from="3296" to="3304"/>
+</rel>
+</span>
+<span id="s269_n11" from="3311" to="3312">
+<rel label="punct">
+<span from="3236" to="3240"/>
+</rel>
+</span>
+<span id="s269_n12" from="3313" to="3320">
+<rel label="nsubj:pass">
+<span from="3382" to="3393"/>
+</rel>
+</span>
+<span id="s269_n13" from="3321" to="3327">
+<rel label="aux:pass">
+<span from="3382" to="3393"/>
+</rel>
+</span>
+<span id="s269_n14" from="3328" to="3333">
+<rel label="case">
+<span from="3334" to="3342"/>
+</rel>
+</span>
+<span id="s269_n15" from="3334" to="3342">
+<rel label="obl">
+<span from="3382" to="3393"/>
+</rel>
+</span>
+<span id="s269_n16" from="3343" to="3363">
+<rel label="amod">
+<span from="3376" to="3381"/>
+</rel>
+</span>
+<span id="s269_n17" from="3364" to="3375">
+<rel label="amod">
+<span from="3376" to="3381"/>
+</rel>
+</span>
+<span id="s269_n18" from="3376" to="3381">
+<rel label="nmod">
+<span from="3334" to="3342"/>
+</rel>
+</span>
+<span id="s269_n19" from="3382" to="3393">
+<rel label="parataxis">
+<span from="3236" to="3240"/>
+</rel>
+</span>
+<span id="s269_n20" from="3393" to="3394">
+<rel label="punct">
+<span from="3236" to="3240"/>
+</rel>
+</span>
+<span id="s270_n1" from="3395" to="3398">
+<rel label="det">
+<span from="3399" to="3404"/>
+</rel>
+</span>
+<span id="s270_n2" from="3399" to="3404">
+<rel label="nsubj:pass">
+<span from="3445" to="3455"/>
+</rel>
+</span>
+<span id="s270_n3" from="3405" to="3408">
+<rel label="aux:pass">
+<span from="3445" to="3455"/>
+</rel>
+</span>
+<span id="s270_n4" from="3409" to="3414">
+<rel label="advmod">
+<span from="3445" to="3455"/>
+</rel>
+</span>
+<span id="s270_n5" from="3415" to="3419">
+<rel label="case">
+<span from="3420" to="3424"/>
+</rel>
+</span>
+<span id="s270_n6" from="3420" to="3424">
+<rel label="obl">
+<span from="3445" to="3455"/>
+</rel>
+</span>
+<span id="s270_n7" from="3425" to="3430">
+<rel label="case">
+<span from="3436" to="3444"/>
+</rel>
+</span>
+<span id="s270_n8" from="3431" to="3435">
+<rel label="nummod">
+<span from="3436" to="3444"/>
+</rel>
+</span>
+<span id="s270_n9" from="3436" to="3444">
+<rel label="obl">
+<span from="3445" to="3455"/>
+</rel>
+</span>
+<span id="s270_n10" from="3445" to="3455">
+<rel label="root">
+<span from="3395" to="3652"/>
+</rel>
+</span>
+<span id="s270_n11" from="3455" to="3456">
+<rel label="punct">
+<span from="3445" to="3455"/>
+</rel>
+</span>
+<span id="s270_n12" from="3456" to="3459">
+<rel label="case">
+<span from="3460" to="3465"/>
+</rel>
+</span>
+<span id="s270_n13" from="3460" to="3465">
+<rel label="obl">
+<span from="3466" to="3470"/>
+</rel>
+</span>
+<span id="s270_n14" from="3466" to="3470">
+<rel label="parataxis">
+<span from="3445" to="3455"/>
+</rel>
+</span>
+<span id="s270_n15" from="3471" to="3473">
+<rel label="nsubj">
+<span from="3466" to="3470"/>
+</rel>
+</span>
+<span id="s270_n16" from="3474" to="3477">
+<rel label="advmod">
+<span from="3485" to="3495"/>
+</rel>
+</span>
+<span id="s270_n17" from="3478" to="3484">
+<rel label="amod">
+<span from="3485" to="3495"/>
+</rel>
+</span>
+<span id="s270_n18" from="3485" to="3495">
+<rel label="obj">
+<span from="3466" to="3470"/>
+</rel>
+</span>
+<span id="s270_n19" from="3495" to="3496">
+<rel label="punct">
+<span from="3528" to="3532"/>
+</rel>
+</span>
+<span id="s270_n20" from="3497" to="3500">
+<rel label="nsubj">
+<span from="3528" to="3532"/>
+</rel>
+</span>
+<span id="s270_n21" from="3501" to="3504">
+<rel label="case">
+<span from="3510" to="3527"/>
+</rel>
+</span>
+<span id="s270_n22" from="3505" to="3509">
+<rel label="det">
+<span from="3510" to="3527"/>
+</rel>
+</span>
+<span id="s270_n23" from="3510" to="3527">
+<rel label="obl">
+<span from="3528" to="3532"/>
+</rel>
+</span>
+<span id="s270_n24" from="3528" to="3532">
+<rel label="acl">
+<span from="3485" to="3495"/>
+</rel>
+</span>
+<span id="s270_n25" from="3532" to="3533">
+<rel label="punct">
+<span from="3546" to="3552"/>
+</rel>
+</span>
+<span id="s270_n26" from="3534" to="3537">
+<rel label="case">
+<span from="3538" to="3545"/>
+</rel>
+</span>
+<span id="s270_n27" from="3538" to="3545">
+<rel label="obl">
+<span from="3546" to="3552"/>
+</rel>
+</span>
+<span id="s270_n28" from="3546" to="3552">
+<rel label="conj">
+<span from="3445" to="3455"/>
+</rel>
+</span>
+<span id="s270_n29" from="3553" to="3563">
+<rel label="amod">
+<span from="3564" to="3570"/>
+</rel>
+</span>
+<span id="s270_n30" from="3564" to="3570">
+<rel label="nsubj">
+<span from="3546" to="3552"/>
+</rel>
+</span>
+<span id="s270_n31" from="3571" to="3573">
+<rel label="case">
+<span from="3574" to="3594"/>
+</rel>
+</span>
+<span id="s270_n32" from="3574" to="3594">
+<rel label="obl">
+<span from="3546" to="3552"/>
+</rel>
+</span>
+<span id="s270_n33" from="3595" to="3601">
+<rel label="amod">
+<span from="3602" to="3612"/>
+</rel>
+</span>
+<span id="s270_n34" from="3602" to="3612">
+<rel label="obj">
+<span from="3546" to="3552"/>
+</rel>
+</span>
+<span id="s270_n35" from="3612" to="3613">
+<rel label="punct">
+<span from="3642" to="3651"/>
+</rel>
+</span>
+<span id="s270_n36" from="3614" to="3617">
+<rel label="nsubj">
+<span from="3642" to="3651"/>
+</rel>
+</span>
+<span id="s270_n37" from="3618" to="3623">
+<rel label="case">
+<span from="3628" to="3641"/>
+</rel>
+</span>
+<span id="s270_n38" from="3624" to="3627">
+<rel label="det">
+<span from="3628" to="3641"/>
+</rel>
+</span>
+<span id="s270_n39" from="3628" to="3641">
+<rel label="obl">
+<span from="3642" to="3651"/>
+</rel>
+</span>
+<span id="s270_n40" from="3642" to="3651">
+<rel label="acl">
+<span from="3602" to="3612"/>
+</rel>
+</span>
+<span id="s270_n41" from="3651" to="3652">
+<rel label="punct">
+<span from="3445" to="3455"/>
+</rel>
+</span>
+<span id="s271_n1" from="3653" to="3659">
+<rel label="amod">
+<span from="3660" to="3676"/>
+</rel>
+</span>
+<span id="s271_n2" from="3660" to="3676">
+<rel label="nsubj:pass">
+<span from="3738" to="3747"/>
+</rel>
+</span>
+<span id="s271_n3" from="3677" to="3683">
+<rel label="aux:pass">
+<span from="3738" to="3747"/>
+</rel>
+</span>
+<span id="s271_n4" from="3684" to="3686">
+<rel label="case">
+<span from="3703" to="3723"/>
+</rel>
+</span>
+<span id="s271_n5" from="3687" to="3702">
+<rel label="amod">
+<span from="3703" to="3723"/>
+</rel>
+</span>
+<span id="s271_n6" from="3703" to="3723">
+<rel label="obl">
+<span from="3738" to="3747"/>
+</rel>
+</span>
+<span id="s271_n7" from="3724" to="3737">
+<rel label="advmod">
+<span from="3738" to="3747"/>
+</rel>
+</span>
+<span id="s271_n8" from="3738" to="3747">
+<rel label="root">
+<span from="3653" to="3748"/>
+</rel>
+</span>
+<span id="s271_n9" from="3747" to="3748">
+<rel label="punct">
+<span from="3738" to="3747"/>
+</rel>
+</span>
+<span id="s272_n1" from="3749" to="3751">
+<rel label="case">
+<span from="3760" to="3766"/>
+</rel>
+</span>
+<span id="s272_n2" from="3752" to="3759">
+<rel label="det">
+<span from="3760" to="3766"/>
+</rel>
+</span>
+<span id="s272_n3" from="3760" to="3766">
+<rel label="obl">
+<span from="3829" to="3837"/>
+</rel>
+</span>
+<span id="s272_n4" from="3767" to="3771">
+<rel label="aux:pass">
+<span from="3829" to="3837"/>
+</rel>
+</span>
+<span id="s272_n5" from="3772" to="3776">
+<rel label="advmod">
+<span from="3777" to="3798"/>
+</rel>
+</span>
+<span id="s272_n6" from="3777" to="3798">
+<rel label="nsubj:pass">
+<span from="3829" to="3837"/>
+</rel>
+</span>
+<span id="s272_n7" from="3799" to="3802">
+<rel label="case">
+<span from="3819" to="3828"/>
+</rel>
+</span>
+<span id="s272_n8" from="3803" to="3807">
+<rel label="det">
+<span from="3819" to="3828"/>
+</rel>
+</span>
+<span id="s272_n9" from="3808" to="3818">
+<rel label="amod">
+<span from="3819" to="3828"/>
+</rel>
+</span>
+<span id="s272_n10" from="3819" to="3828">
+<rel label="obl">
+<span from="3829" to="3837"/>
+</rel>
+</span>
+<span id="s272_n11" from="3829" to="3837">
+<rel label="root">
+<span from="3749" to="3894"/>
+</rel>
+</span>
+<span id="s272_n12" from="3838" to="3841">
+<rel label="cc">
+<span from="3885" to="3893"/>
+</rel>
+</span>
+<span id="s272_n13" from="3842" to="3851">
+<rel label="advmod">
+<span from="3885" to="3893"/>
+</rel>
+</span>
+<span id="s272_n14" from="3852" to="3859">
+<rel label="nsubj">
+<span from="3885" to="3893"/>
+</rel>
+</span>
+<span id="s272_n15" from="3860" to="3862">
+<rel label="case">
+<span from="3880" to="3884"/>
+</rel>
+</span>
+<span id="s272_n16" from="3863" to="3867">
+<rel label="det">
+<span from="3880" to="3884"/>
+</rel>
+</span>
+<span id="s272_n17" from="3868" to="3879">
+<rel label="amod">
+<span from="3880" to="3884"/>
+</rel>
+</span>
+<span id="s272_n18" from="3880" to="3884">
+<rel label="obl">
+<span from="3885" to="3893"/>
+</rel>
+</span>
+<span id="s272_n19" from="3885" to="3893">
+<rel label="conj">
+<span from="3829" to="3837"/>
+</rel>
+</span>
+<span id="s272_n20" from="3893" to="3894">
+<rel label="punct">
+<span from="3829" to="3837"/>
+</rel>
+</span>
+<span id="s273_n1" from="3895" to="3898">
+<rel label="case">
+<span from="3899" to="3904"/>
+</rel>
+</span>
+<span id="s273_n2" from="3899" to="3904">
+<rel label="obl">
+<span from="3943" to="3949"/>
+</rel>
+</span>
+<span id="s273_n3" from="3905" to="3908">
+<rel label="det">
+<span from="3923" to="3942"/>
+</rel>
+</span>
+<span id="s273_n4" from="3909" to="3922">
+<rel label="amod">
+<span from="3923" to="3942"/>
+</rel>
+</span>
+<span id="s273_n5" from="3923" to="3942">
+<rel label="nmod">
+<span from="3899" to="3904"/>
+</rel>
+</span>
+<span id="s273_n6" from="3943" to="3949">
+<rel label="root">
+<span from="3895" to="4020"/>
+</rel>
+</span>
+<span id="s273_n7" from="3950" to="3964">
+<rel label="amod">
+<span from="3965" to="3977"/>
+</rel>
+</span>
+<span id="s273_n8" from="3965" to="3977">
+<rel label="nsubj">
+<span from="3943" to="3949"/>
+</rel>
+</span>
+<span id="s273_n9" from="3978" to="3982">
+<rel label="advmod">
+<span from="3997" to="4004"/>
+</rel>
+</span>
+<span id="s273_n10" from="3983" to="3986">
+<rel label="case">
+<span from="3997" to="4004"/>
+</rel>
+</span>
+<span id="s273_n11" from="3987" to="3996">
+<rel label="amod">
+<span from="3997" to="4004"/>
+</rel>
+</span>
+<span id="s273_n12" from="3997" to="4004">
+<rel label="obl">
+<span from="4009" to="4019"/>
+</rel>
+</span>
+<span id="s273_n13" from="4005" to="4008">
+<rel label="advmod">
+<span from="4009" to="4019"/>
+</rel>
+</span>
+<span id="s273_n14" from="4009" to="4019">
+<rel label="xcomp">
+<span from="3943" to="3949"/>
+</rel>
+</span>
+<span id="s273_n15" from="4019" to="4020">
+<rel label="punct">
+<span from="3943" to="3949"/>
+</rel>
+</span>
+<span id="s274_n1" from="4021" to="4023">
+<rel label="case">
+<span from="4028" to="4043"/>
+</rel>
+</span>
+<span id="s274_n2" from="4024" to="4027">
+<rel label="det">
+<span from="4028" to="4043"/>
+</rel>
+</span>
+<span id="s274_n3" from="4028" to="4043">
+<rel label="obl">
+<span from="4100" to="4106"/>
+</rel>
+</span>
+<span id="s274_n4" from="4044" to="4053">
+<rel label="amod">
+<span from="4054" to="4059"/>
+</rel>
+</span>
+<span id="s274_n5" from="4054" to="4059">
+<rel label="nmod">
+<span from="4028" to="4043"/>
+</rel>
+</span>
+<span id="s274_n6" from="4060" to="4064">
+<rel label="cop">
+<span from="4100" to="4106"/>
+</rel>
+</span>
+<span id="s274_n7" from="4065" to="4070">
+<rel label="advmod">
+<span from="4100" to="4106"/>
+</rel>
+</span>
+<span id="s274_n8" from="4071" to="4089">
+<rel label="amod">
+<span from="4090" to="4099"/>
+</rel>
+</span>
+<span id="s274_n9" from="4090" to="4099">
+<rel label="nsubj">
+<span from="4100" to="4106"/>
+</rel>
+</span>
+<span id="s274_n10" from="4100" to="4106">
+<rel label="root">
+<span from="4021" to="4107"/>
+</rel>
+</span>
+<span id="s274_n11" from="4106" to="4107">
+<rel label="punct">
+<span from="4100" to="4106"/>
+</rel>
+</span>
+<span id="s275_n1" from="4108" to="4114">
+<rel label="mark">
+<span from="4164" to="4172"/>
+</rel>
+</span>
+<span id="s275_n2" from="4115" to="4118">
+<rel label="det">
+<span from="4130" to="4140"/>
+</rel>
+</span>
+<span id="s275_n3" from="4119" to="4129">
+<rel label="amod">
+<span from="4130" to="4140"/>
+</rel>
+</span>
+<span id="s275_n4" from="4130" to="4140">
+<rel label="nsubj">
+<span from="4164" to="4172"/>
+</rel>
+</span>
+<span id="s275_n5" from="4141" to="4144">
+<rel label="det">
+<span from="4145" to="4163"/>
+</rel>
+</span>
+<span id="s275_n6" from="4145" to="4163">
+<rel label="obj">
+<span from="4164" to="4172"/>
+</rel>
+</span>
+<span id="s275_n7" from="4164" to="4172">
+<rel label="advcl">
+<span from="4228" to="4238"/>
+</rel>
+</span>
+<span id="s275_n8" from="4172" to="4173">
+<rel label="punct">
+<span from="4164" to="4172"/>
+</rel>
+</span>
+<span id="s275_n9" from="4174" to="4178">
+<rel label="aux">
+<span from="4228" to="4238"/>
+</rel>
+</span>
+<span id="s275_n10" from="4179" to="4185">
+<rel label="nsubj:pass">
+<span from="4228" to="4238"/>
+</rel>
+</span>
+<span id="s275_n11" from="4186" to="4191">
+<rel label="case">
+<span from="4192" to="4201"/>
+</rel>
+</span>
+<span id="s275_n12" from="4192" to="4201">
+<rel label="obl">
+<span from="4228" to="4238"/>
+</rel>
+</span>
+<span id="s275_n13" from="4202" to="4205">
+<rel label="case">
+<span from="4221" to="4227"/>
+</rel>
+</span>
+<span id="s275_n14" from="4206" to="4209">
+<rel label="case">
+<span from="4221" to="4227"/>
+</rel>
+</span>
+<span id="s275_n15" from="4210" to="4220">
+<rel label="amod">
+<span from="4221" to="4227"/>
+</rel>
+</span>
+<span id="s275_n16" from="4221" to="4227">
+<rel label="nmod">
+<span from="4192" to="4201"/>
+</rel>
+</span>
+<span id="s275_n17" from="4228" to="4238">
+<rel label="root">
+<span from="4108" to="4246"/>
+</rel>
+</span>
+<span id="s275_n18" from="4239" to="4245">
+<rel label="aux:pass">
+<span from="4228" to="4238"/>
+</rel>
+</span>
+<span id="s275_n19" from="4245" to="4246">
+<rel label="punct">
+<span from="4228" to="4238"/>
+</rel>
+</span>
+<span id="s276_n1" from="4247" to="4250">
+<rel label="case">
+<span from="4255" to="4264"/>
+</rel>
+</span>
+<span id="s276_n2" from="4251" to="4254">
+<rel label="det">
+<span from="4255" to="4264"/>
+</rel>
+</span>
+<span id="s276_n3" from="4255" to="4264">
+<rel label="obl">
+<span from="4298" to="4306"/>
+</rel>
+</span>
+<span id="s276_n4" from="4265" to="4267">
+<rel label="case">
+<span from="4286" to="4297"/>
+</rel>
+</span>
+<span id="s276_n5" from="4268" to="4273">
+<rel label="det">
+<span from="4286" to="4297"/>
+</rel>
+</span>
+<span id="s276_n6" from="4274" to="4285">
+<rel label="amod">
+<span from="4286" to="4297"/>
+</rel>
+</span>
+<span id="s276_n7" from="4286" to="4297">
+<rel label="nmod">
+<span from="4255" to="4264"/>
+</rel>
+</span>
+<span id="s276_n8" from="4298" to="4306">
+<rel label="root">
+<span from="4247" to="4364"/>
+</rel>
+</span>
+<span id="s276_n9" from="4307" to="4310">
+<rel label="det">
+<span from="4311" to="4327"/>
+</rel>
+</span>
+<span id="s276_n10" from="4311" to="4327">
+<rel label="nsubj">
+<span from="4298" to="4306"/>
+</rel>
+</span>
+<span id="s276_n11" from="4327" to="4328">
+<rel label="punct">
+<span from="4336" to="4341"/>
+</rel>
+</span>
+<span id="s276_n12" from="4329" to="4335">
+<rel label="nsubj">
+<span from="4336" to="4341"/>
+</rel>
+</span>
+<span id="s276_n13" from="4336" to="4341">
+<rel label="conj">
+<span from="4298" to="4306"/>
+</rel>
+</span>
+<span id="s276_n14" from="4342" to="4345">
+<rel label="det">
+<span from="4346" to="4351"/>
+</rel>
+</span>
+<span id="s276_n15" from="4346" to="4351">
+<rel label="obj">
+<span from="4336" to="4341"/>
+</rel>
+</span>
+<span id="s276_n16" from="4352" to="4363">
+<rel label="appos">
+<span from="4346" to="4351"/>
+</rel>
+</span>
+<span id="s276_n17" from="4363" to="4364">
+<rel label="punct">
+<span from="4298" to="4306"/>
+</rel>
+</span>
+<span id="s277_n1" from="4366" to="4379">
+<rel label="root">
+<span from="4366" to="4505"/>
+</rel>
+</span>
+<span id="s277_n2" from="4380" to="4388">
+<rel label="amod">
+<span from="4389" to="4395"/>
+</rel>
+</span>
+<span id="s277_n3" from="4389" to="4395">
+<rel label="nmod">
+<span from="4366" to="4379"/>
+</rel>
+</span>
+<span id="s277_n4" from="4397" to="4401">
+<rel label="appos">
+<span from="4389" to="4395"/>
+</rel>
+</span>
+<span id="s277_n5" from="4401" to="4402">
+<rel label="appos">
+<span from="4397" to="4401"/>
+</rel>
+</span>
+<span id="s277_n6" from="4402" to="4410">
+<rel label="appos">
+<span from="4366" to="4379"/>
+</rel>
+</span>
+<span id="s277_n7" from="4410" to="4411">
+<rel label="obj">
+<span from="4402" to="4410"/>
+</rel>
+</span>
+<span id="s277_n8" from="4411" to="4412">
+<rel label="flat">
+<span from="4412" to="4413"/>
+</rel>
+</span>
+<span id="s277_n9" from="4412" to="4413">
+<rel label="obj">
+<span from="4402" to="4410"/>
+</rel>
+</span>
+<span id="s277_n10" from="4413" to="4426">
+<rel label="appos">
+<span from="4412" to="4413"/>
+</rel>
+</span>
+<span id="s277_n11" from="4426" to="4427">
+<rel label="punct">
+<span from="4366" to="4379"/>
+</rel>
+</span>
+<span id="s277_n12" from="4428" to="4435">
+<rel label="nsubj:pass">
+<span from="4494" to="4504"/>
+</rel>
+</span>
+<span id="s277_n13" from="4435" to="4436">
+<rel label="punct">
+<span from="4470" to="4476"/>
+</rel>
+</span>
+<span id="s277_n14" from="4437" to="4440">
+<rel label="nsubj">
+<span from="4470" to="4476"/>
+</rel>
+</span>
+<span id="s277_n15" from="4441" to="4453">
+<rel label="amod">
+<span from="4464" to="4469"/>
+</rel>
+</span>
+<span id="s277_n16" from="4454" to="4463">
+<rel label="amod">
+<span from="4464" to="4469"/>
+</rel>
+</span>
+<span id="s277_n17" from="4464" to="4469">
+<rel label="obj">
+<span from="4470" to="4476"/>
+</rel>
+</span>
+<span id="s277_n18" from="4470" to="4476">
+<rel label="acl">
+<span from="4428" to="4435"/>
+</rel>
+</span>
+<span id="s277_n19" from="4476" to="4477">
+<rel label="punct">
+<span from="4470" to="4476"/>
+</rel>
+</span>
+<span id="s277_n20" from="4478" to="4484">
+<rel label="aux:pass">
+<span from="4494" to="4504"/>
+</rel>
+</span>
+<span id="s277_n21" from="4485" to="4493">
+<rel label="advmod">
+<span from="4494" to="4504"/>
+</rel>
+</span>
+<span id="s277_n22" from="4494" to="4504">
+<rel label="parataxis">
+<span from="4366" to="4379"/>
+</rel>
+</span>
+<span id="s277_n23" from="4504" to="4505">
+<rel label="punct">
+<span from="4366" to="4379"/>
+</rel>
+</span>
+<span id="s278_n1" from="4506" to="4513">
+<rel label="root">
+<span from="4506" to="4593"/>
+</rel>
+</span>
+<span id="s278_n2" from="4514" to="4518">
+<rel label="cop">
+<span from="4506" to="4513"/>
+</rel>
+</span>
+<span id="s278_n3" from="4519" to="4522">
+<rel label="det">
+<span from="4537" to="4548"/>
+</rel>
+</span>
+<span id="s278_n4" from="4523" to="4536">
+<rel label="amod">
+<span from="4537" to="4548"/>
+</rel>
+</span>
+<span id="s278_n5" from="4537" to="4548">
+<rel label="nsubj">
+<span from="4506" to="4513"/>
+</rel>
+</span>
+<span id="s278_n6" from="4549" to="4551">
+<rel label="case">
+<span from="4552" to="4566"/>
+</rel>
+</span>
+<span id="s278_n7" from="4552" to="4566">
+<rel label="nmod">
+<span from="4537" to="4548"/>
+</rel>
+</span>
+<span id="s278_n8" from="4567" to="4568">
+<rel label="punct">
+<span from="4568" to="4569"/>
+</rel>
+</span>
+<span id="s278_n9" from="4568" to="4569">
+<rel label="appos">
+<span from="4552" to="4566"/>
+</rel>
+</span>
+<span id="s278_n10" from="4569" to="4570">
+<rel label="punct">
+<span from="4568" to="4569"/>
+</rel>
+</span>
+<span id="s278_n11" from="4571" to="4574">
+<rel label="cc">
+<span from="4575" to="4588"/>
+</rel>
+</span>
+<span id="s278_n12" from="4575" to="4588">
+<rel label="conj">
+<span from="4568" to="4569"/>
+</rel>
+</span>
+<span id="s278_n13" from="4589" to="4590">
+<rel label="punct">
+<span from="4590" to="4591"/>
+</rel>
+</span>
+<span id="s278_n14" from="4590" to="4591">
+<rel label="appos">
+<span from="4575" to="4588"/>
+</rel>
+</span>
+<span id="s278_n15" from="4591" to="4592">
+<rel label="punct">
+<span from="4590" to="4591"/>
+</rel>
+</span>
+<span id="s278_n16" from="4592" to="4593">
+<rel label="punct">
+<span from="4506" to="4513"/>
+</rel>
+</span>
+<span id="s279_n1" from="4595" to="4608">
+<rel label="nsubj">
+<span from="4617" to="4630"/>
+</rel>
+</span>
+<span id="s279_n2" from="4609" to="4612">
+<rel label="cop">
+<span from="4617" to="4630"/>
+</rel>
+</span>
+<span id="s279_n3" from="4613" to="4616">
+<rel label="det">
+<span from="4617" to="4630"/>
+</rel>
+</span>
+<span id="s279_n4" from="4617" to="4630">
+<rel label="root">
+<span from="4595" to="4738"/>
+</rel>
+</span>
+<span id="s279_n5" from="4630" to="4631">
+<rel label="punct">
+<span from="4729" to="4737"/>
+</rel>
+</span>
+<span id="s279_n6" from="4632" to="4642">
+<rel label="nsubj">
+<span from="4729" to="4737"/>
+</rel>
+</span>
+<span id="s279_n7" from="4643" to="4646">
+<rel label="case">
+<span from="4653" to="4664"/>
+</rel>
+</span>
+<span id="s279_n8" from="4647" to="4652">
+<rel label="det">
+<span from="4653" to="4664"/>
+</rel>
+</span>
+<span id="s279_n9" from="4653" to="4664">
+<rel label="obl">
+<span from="4665" to="4675"/>
+</rel>
+</span>
+<span id="s279_n10" from="4665" to="4675">
+<rel label="advcl">
+<span from="4729" to="4737"/>
+</rel>
+</span>
+<span id="s279_n11" from="4676" to="4679">
+<rel label="cc">
+<span from="4680" to="4686"/>
+</rel>
+</span>
+<span id="s279_n12" from="4680" to="4686">
+<rel label="conj">
+<span from="4665" to="4675"/>
+</rel>
+</span>
+<span id="s279_n13" from="4687" to="4689">
+<rel label="case">
+<span from="4714" to="4728"/>
+</rel>
+</span>
+<span id="s279_n14" from="4690" to="4693">
+<rel label="det">
+<span from="4694" to="4713"/>
+</rel>
+</span>
+<span id="s279_n15" from="4694" to="4713">
+<rel label="amod">
+<span from="4714" to="4728"/>
+</rel>
+</span>
+<span id="s279_n16" from="4714" to="4728">
+<rel label="obj">
+<span from="4729" to="4737"/>
+</rel>
+</span>
+<span id="s279_n17" from="4729" to="4737">
+<rel label="acl">
+<span from="4617" to="4630"/>
+</rel>
+</span>
+<span id="s279_n18" from="4737" to="4738">
+<rel label="punct">
+<span from="4617" to="4630"/>
+</rel>
+</span>
+<span id="s280_n1" from="4739" to="4744">
+<rel label="advmod">
+<span from="4788" to="4803"/>
+</rel>
+</span>
+<span id="s280_n2" from="4745" to="4748">
+<rel label="aux">
+<span from="4788" to="4803"/>
+</rel>
+</span>
+<span id="s280_n3" from="4749" to="4757">
+<rel label="case">
+<span from="4758" to="4769"/>
+</rel>
+</span>
+<span id="s280_n4" from="4758" to="4769">
+<rel label="obl">
+<span from="4788" to="4803"/>
+</rel>
+</span>
+<span id="s280_n5" from="4770" to="4773">
+<rel label="cc">
+<span from="4774" to="4787"/>
+</rel>
+</span>
+<span id="s280_n6" from="4774" to="4787">
+<rel label="conj">
+<span from="4758" to="4769"/>
+</rel>
+</span>
+<span id="s280_n7" from="4788" to="4803">
+<rel label="root">
+<span from="4739" to="4804"/>
+</rel>
+</span>
+<span id="s280_n8" from="4803" to="4804">
+<rel label="punct">
+<span from="4788" to="4803"/>
+</rel>
+</span>
+<span id="s281_n1" from="4805" to="4807">
+<rel label="case">
+<span from="4808" to="4816"/>
+</rel>
+</span>
+<span id="s281_n2" from="4808" to="4816">
+<rel label="obl">
+<span from="4905" to="4913"/>
+</rel>
+</span>
+<span id="s281_n3" from="4817" to="4820">
+<rel label="det">
+<span from="4821" to="4836"/>
+</rel>
+</span>
+<span id="s281_n4" from="4821" to="4836">
+<rel label="nmod">
+<span from="4808" to="4816"/>
+</rel>
+</span>
+<span id="s281_n5" from="4837" to="4838">
+<rel label="punct">
+<span from="4838" to="4839"/>
+</rel>
+</span>
+<span id="s281_n6" from="4838" to="4839">
+<rel label="appos">
+<span from="4821" to="4836"/>
+</rel>
+</span>
+<span id="s281_n7" from="4839" to="4840">
+<rel label="punct">
+<span from="4838" to="4839"/>
+</rel>
+</span>
+<span id="s281_n8" from="4840" to="4841">
+<rel label="punct">
+<span from="4867" to="4874"/>
+</rel>
+</span>
+<span id="s281_n9" from="4842" to="4848">
+<rel label="nsubj">
+<span from="4867" to="4874"/>
+</rel>
+</span>
+<span id="s281_n10" from="4849" to="4852">
+<rel label="det">
+<span from="4853" to="4866"/>
+</rel>
+</span>
+<span id="s281_n11" from="4853" to="4866">
+<rel label="obj">
+<span from="4867" to="4874"/>
+</rel>
+</span>
+<span id="s281_n12" from="4867" to="4874">
+<rel label="acl">
+<span from="4838" to="4839"/>
+</rel>
+</span>
+<span id="s281_n13" from="4874" to="4875">
+<rel label="punct">
+<span from="4867" to="4874"/>
+</rel>
+</span>
+<span id="s281_n14" from="4876" to="4879">
+<rel label="aux:pass">
+<span from="4905" to="4913"/>
+</rel>
+</span>
+<span id="s281_n15" from="4880" to="4883">
+<rel label="det">
+<span from="4884" to="4889"/>
+</rel>
+</span>
+<span id="s281_n16" from="4884" to="4889">
+<rel label="nsubj:pass">
+<span from="4905" to="4913"/>
+</rel>
+</span>
+<span id="s281_n17" from="4890" to="4904">
+<rel label="advmod">
+<span from="4905" to="4913"/>
+</rel>
+</span>
+<span id="s281_n18" from="4905" to="4913">
+<rel label="root">
+<span from="4805" to="4990"/>
+</rel>
+</span>
+<span id="s281_n19" from="4913" to="4914">
+<rel label="punct">
+<span from="4933" to="4942"/>
+</rel>
+</span>
+<span id="s281_n20" from="4915" to="4932">
+<rel label="nsubj">
+<span from="4933" to="4942"/>
+</rel>
+</span>
+<span id="s281_n21" from="4933" to="4942">
+<rel label="conj">
+<span from="4905" to="4913"/>
+</rel>
+</span>
+<span id="s281_n22" from="4943" to="4952">
+<rel label="advmod">
+<span from="4933" to="4942"/>
+</rel>
+</span>
+<span id="s281_n23" from="4953" to="4956">
+<rel label="case">
+<span from="4961" to="4968"/>
+</rel>
+</span>
+<span id="s281_n24" from="4957" to="4960">
+<rel label="det">
+<span from="4961" to="4968"/>
+</rel>
+</span>
+<span id="s281_n25" from="4961" to="4968">
+<rel label="obl">
+<span from="4933" to="4942"/>
+</rel>
+</span>
+<span id="s281_n26" from="4969" to="4972">
+<rel label="det">
+<span from="4973" to="4980"/>
+</rel>
+</span>
+<span id="s281_n27" from="4973" to="4980">
+<rel label="nmod">
+<span from="4961" to="4968"/>
+</rel>
+</span>
+<span id="s281_n28" from="4981" to="4989">
+<rel label="flat:name">
+<span from="4973" to="4980"/>
+</rel>
+</span>
+<span id="s281_n29" from="4989" to="4990">
+<rel label="punct">
+<span from="4905" to="4913"/>
+</rel>
+</span>
+<span id="s282_n1" from="4991" to="4997">
+<rel label="advmod">
+<span from="4998" to="5008"/>
+</rel>
+</span>
+<span id="s282_n2" from="4998" to="5008">
+<rel label="root">
+<span from="4991" to="5033"/>
+</rel>
+</span>
+<span id="s282_n3" from="5009" to="5013">
+<rel label="det">
+<span from="5022" to="5032"/>
+</rel>
+</span>
+<span id="s282_n4" from="5014" to="5021">
+<rel label="amod">
+<span from="5022" to="5032"/>
+</rel>
+</span>
+<span id="s282_n5" from="5022" to="5032">
+<rel label="nsubj">
+<span from="4998" to="5008"/>
+</rel>
+</span>
+<span id="s282_n6" from="5032" to="5033">
+<rel label="punct">
+<span from="4998" to="5008"/>
+</rel>
+</span>
+<span id="s283_n1" from="5034" to="5039">
+<rel label="compound:prt">
+<span from="5040" to="5045"/>
+</rel>
+</span>
+<span id="s283_n2" from="5040" to="5045">
+<rel label="root">
+<span from="5034" to="5159"/>
+</rel>
+</span>
+<span id="s283_n3" from="5045" to="5046">
+<rel label="punct">
+<span from="5152" to="5158"/>
+</rel>
+</span>
+<span id="s283_n4" from="5047" to="5051">
+<rel label="mark">
+<span from="5152" to="5158"/>
+</rel>
+</span>
+<span id="s283_n5" from="5052" to="5054">
+<rel label="case">
+<span from="5059" to="5066"/>
+</rel>
+</span>
+<span id="s283_n6" from="5055" to="5058">
+<rel label="det">
+<span from="5059" to="5066"/>
+</rel>
+</span>
+<span id="s283_n7" from="5059" to="5066">
+<rel label="obl">
+<span from="5152" to="5158"/>
+</rel>
+</span>
+<span id="s283_n8" from="5067" to="5068">
+<rel label="punct">
+<span from="5068" to="5070"/>
+</rel>
+</span>
+<span id="s283_n9" from="5068" to="5070">
+<rel label="appos">
+<span from="5059" to="5066"/>
+</rel>
+</span>
+<span id="s283_n10" from="5071" to="5074">
+<rel label="cc">
+<span from="5075" to="5077"/>
+</rel>
+</span>
+<span id="s283_n11" from="5075" to="5077">
+<rel label="conj">
+<span from="5068" to="5070"/>
+</rel>
+</span>
+<span id="s283_n12" from="5077" to="5078">
+<rel label="punct">
+<span from="5068" to="5070"/>
+</rel>
+</span>
+<span id="s283_n13" from="5079" to="5084">
+<rel label="det">
+<span from="5085" to="5091"/>
+</rel>
+</span>
+<span id="s283_n14" from="5085" to="5091">
+<rel label="nsubj">
+<span from="5152" to="5158"/>
+</rel>
+</span>
+<span id="s283_n15" from="5091" to="5092">
+<rel label="punct">
+<span from="5101" to="5112"/>
+</rel>
+</span>
+<span id="s283_n16" from="5093" to="5100">
+<rel label="cc">
+<span from="5101" to="5112"/>
+</rel>
+</span>
+<span id="s283_n17" from="5101" to="5112">
+<rel label="conj">
+<span from="5085" to="5091"/>
+</rel>
+</span>
+<span id="s283_n18" from="5113" to="5115">
+<rel label="case">
+<span from="5136" to="5151"/>
+</rel>
+</span>
+<span id="s283_n19" from="5116" to="5119">
+<rel label="det">
+<span from="5136" to="5151"/>
+</rel>
+</span>
+<span id="s283_n20" from="5120" to="5127">
+<rel label="advmod">
+<span from="5128" to="5135"/>
+</rel>
+</span>
+<span id="s283_n21" from="5128" to="5135">
+<rel label="amod">
+<span from="5136" to="5151"/>
+</rel>
+</span>
+<span id="s283_n22" from="5136" to="5151">
+<rel label="nmod">
+<span from="5101" to="5112"/>
+</rel>
+</span>
+<span id="s283_n23" from="5152" to="5158">
+<rel label="csubj">
+<span from="5040" to="5045"/>
+</rel>
+</span>
+<span id="s283_n24" from="5158" to="5159">
+<rel label="punct">
+<span from="5040" to="5045"/>
+</rel>
+</span>
+<span id="s284_n1" from="5160" to="5165">
+<rel label="advmod">
+<span from="5166" to="5174"/>
+</rel>
+</span>
+<span id="s284_n2" from="5166" to="5174">
+<rel label="root">
+<span from="5160" to="5346"/>
+</rel>
+</span>
+<span id="s284_n3" from="5175" to="5178">
+<rel label="advmod">
+<span from="5166" to="5174"/>
+</rel>
+</span>
+<span id="s284_n4" from="5179" to="5182">
+<rel label="cc">
+<span from="5201" to="5212"/>
+</rel>
+</span>
+<span id="s284_n5" from="5183" to="5189">
+<rel label="case">
+<span from="5201" to="5212"/>
+</rel>
+</span>
+<span id="s284_n6" from="5190" to="5193">
+<rel label="det">
+<span from="5201" to="5212"/>
+</rel>
+</span>
+<span id="s284_n7" from="5194" to="5200">
+<rel label="amod">
+<span from="5201" to="5212"/>
+</rel>
+</span>
+<span id="s284_n8" from="5201" to="5212">
+<rel label="conj">
+<span from="5175" to="5178"/>
+</rel>
+</span>
+<span id="s284_n9" from="5213" to="5223">
+<rel label="amod">
+<span from="5224" to="5231"/>
+</rel>
+</span>
+<span id="s284_n10" from="5224" to="5231">
+<rel label="nmod">
+<span from="5201" to="5212"/>
+</rel>
+</span>
+<span id="s284_n11" from="5232" to="5235">
+<rel label="det">
+<span from="5236" to="5240"/>
+</rel>
+</span>
+<span id="s284_n12" from="5236" to="5240">
+<rel label="nsubj">
+<span from="5166" to="5174"/>
+</rel>
+</span>
+<span id="s284_n13" from="5240" to="5241">
+<rel label="punct">
+<span from="5289" to="5293"/>
+</rel>
+</span>
+<span id="s284_n14" from="5242" to="5244">
+<rel label="mark">
+<span from="5289" to="5293"/>
+</rel>
+</span>
+<span id="s284_n15" from="5245" to="5250">
+<rel label="det">
+<span from="5251" to="5265"/>
+</rel>
+</span>
+<span id="s284_n16" from="5251" to="5265">
+<rel label="nsubj">
+<span from="5289" to="5293"/>
+</rel>
+</span>
+<span id="s284_n17" from="5266" to="5271">
+<rel label="det">
+<span from="5272" to="5277"/>
+</rel>
+</span>
+<span id="s284_n18" from="5272" to="5277">
+<rel label="nmod">
+<span from="5251" to="5265"/>
+</rel>
+</span>
+<span id="s284_n19" from="5278" to="5288">
+<rel label="xcomp">
+<span from="5289" to="5293"/>
+</rel>
+</span>
+<span id="s284_n20" from="5289" to="5293">
+<rel label="ccomp">
+<span from="5166" to="5174"/>
+</rel>
+</span>
+<span id="s284_n21" from="5294" to="5297">
+<rel label="cc">
+<span from="5342" to="5345"/>
+</rel>
+</span>
+<span id="s284_n22" from="5298" to="5300">
+<rel label="case">
+<span from="5307" to="5312"/>
+</rel>
+</span>
+<span id="s284_n23" from="5301" to="5306">
+<rel label="det">
+<span from="5307" to="5312"/>
+</rel>
+</span>
+<span id="s284_n24" from="5307" to="5312">
+<rel label="obl">
+<span from="5342" to="5345"/>
+</rel>
+</span>
+<span id="s284_n25" from="5313" to="5318">
+<rel label="det">
+<span from="5327" to="5341"/>
+</rel>
+</span>
+<span id="s284_n26" from="5319" to="5326">
+<rel label="amod">
+<span from="5327" to="5341"/>
+</rel>
+</span>
+<span id="s284_n27" from="5327" to="5341">
+<rel label="obj">
+<span from="5342" to="5345"/>
+</rel>
+</span>
+<span id="s284_n28" from="5342" to="5345">
+<rel label="conj">
+<span from="5289" to="5293"/>
+</rel>
+</span>
+<span id="s284_n29" from="5345" to="5346">
+<rel label="punct">
+<span from="5166" to="5174"/>
+</rel>
+</span>
+<span id="s285_n1" from="5347" to="5351">
+<rel label="aux:pass">
+<span from="5395" to="5403"/>
+</rel>
+</span>
+<span id="s285_n2" from="5352" to="5355">
+<rel label="det">
+<span from="5356" to="5362"/>
+</rel>
+</span>
+<span id="s285_n3" from="5356" to="5362">
+<rel label="nsubj:pass">
+<span from="5395" to="5403"/>
+</rel>
+</span>
+<span id="s285_n4" from="5363" to="5369">
+<rel label="case">
+<span from="5384" to="5394"/>
+</rel>
+</span>
+<span id="s285_n5" from="5370" to="5373">
+<rel label="det">
+<span from="5384" to="5394"/>
+</rel>
+</span>
+<span id="s285_n6" from="5374" to="5383">
+<rel label="amod">
+<span from="5384" to="5394"/>
+</rel>
+</span>
+<span id="s285_n7" from="5384" to="5394">
+<rel label="obl">
+<span from="5395" to="5403"/>
+</rel>
+</span>
+<span id="s285_n8" from="5395" to="5403">
+<rel label="xcomp">
+<span from="5468" to="5475"/>
+</rel>
+</span>
+<span id="s285_n9" from="5403" to="5404">
+<rel label="punct">
+<span from="5395" to="5403"/>
+</rel>
+</span>
+<span id="s285_n10" from="5405" to="5411">
+<rel label="advmod">
+<span from="5468" to="5475"/>
+</rel>
+</span>
+<span id="s285_n11" from="5412" to="5416">
+<rel label="obj">
+<span from="5468" to="5475"/>
+</rel>
+</span>
+<span id="s285_n12" from="5417" to="5420">
+<rel label="case">
+<span from="5428" to="5437"/>
+</rel>
+</span>
+<span id="s285_n13" from="5421" to="5427">
+<rel label="amod">
+<span from="5428" to="5437"/>
+</rel>
+</span>
+<span id="s285_n14" from="5428" to="5437">
+<rel label="nmod">
+<span from="5412" to="5416"/>
+</rel>
+</span>
+<span id="s285_n15" from="5438" to="5440">
+<rel label="case">
+<span from="5453" to="5461"/>
+</rel>
+</span>
+<span id="s285_n16" from="5441" to="5452">
+<rel label="amod">
+<span from="5453" to="5461"/>
+</rel>
+</span>
+<span id="s285_n17" from="5453" to="5461">
+<rel label="nmod">
+<span from="5428" to="5437"/>
+</rel>
+</span>
+<span id="s285_n18" from="5462" to="5463">
+<rel label="punct">
+<span from="5463" to="5466"/>
+</rel>
+</span>
+<span id="s285_n19" from="5463" to="5466">
+<rel label="advmod">
+<span from="5453" to="5461"/>
+</rel>
+</span>
+<span id="s285_n20" from="5466" to="5467">
+<rel label="punct">
+<span from="5463" to="5466"/>
+</rel>
+</span>
+<span id="s285_n21" from="5468" to="5475">
+<rel label="root">
+<span from="5347" to="5476"/>
+</rel>
+</span>
+<span id="s285_n22" from="5475" to="5476">
+<rel label="punct">
+<span from="5468" to="5475"/>
+</rel>
+</span>
+<span id="s286_n1" from="5477" to="5483">
+<rel label="root">
+<span from="5477" to="5586"/>
+</rel>
+</span>
+<span id="s286_n2" from="5484" to="5488">
+<rel label="advmod">
+<span from="5477" to="5483"/>
+</rel>
+</span>
+<span id="s286_n3" from="5489" to="5492">
+<rel label="cop">
+<span from="5477" to="5483"/>
+</rel>
+</span>
+<span id="s286_n4" from="5493" to="5496">
+<rel label="det">
+<span from="5497" to="5501"/>
+</rel>
+</span>
+<span id="s286_n5" from="5497" to="5501">
+<rel label="nsubj">
+<span from="5477" to="5483"/>
+</rel>
+</span>
+<span id="s286_n6" from="5502" to="5505">
+<rel label="case">
+<span from="5523" to="5533"/>
+</rel>
+</span>
+<span id="s286_n7" from="5506" to="5509">
+<rel label="det">
+<span from="5523" to="5533"/>
+</rel>
+</span>
+<span id="s286_n8" from="5510" to="5522">
+<rel label="amod">
+<span from="5523" to="5533"/>
+</rel>
+</span>
+<span id="s286_n9" from="5523" to="5533">
+<rel label="nmod">
+<span from="5497" to="5501"/>
+</rel>
+</span>
+<span id="s286_n10" from="5534" to="5545">
+<rel label="amod">
+<span from="5546" to="5555"/>
+</rel>
+</span>
+<span id="s286_n11" from="5546" to="5555">
+<rel label="nmod">
+<span from="5523" to="5533"/>
+</rel>
+</span>
+<span id="s286_n12" from="5556" to="5558">
+<rel label="case">
+<span from="5570" to="5578"/>
+</rel>
+</span>
+<span id="s286_n13" from="5559" to="5569">
+<rel label="amod">
+<span from="5570" to="5578"/>
+</rel>
+</span>
+<span id="s286_n14" from="5570" to="5578">
+<rel label="nmod">
+<span from="5546" to="5555"/>
+</rel>
+</span>
+<span id="s286_n15" from="5579" to="5580">
+<rel label="punct">
+<span from="5580" to="5584"/>
+</rel>
+</span>
+<span id="s286_n16" from="5580" to="5584">
+<rel label="advmod">
+<span from="5570" to="5578"/>
+</rel>
+</span>
+<span id="s286_n17" from="5584" to="5585">
+<rel label="punct">
+<span from="5580" to="5584"/>
+</rel>
+</span>
+<span id="s286_n18" from="5585" to="5586">
+<rel label="punct">
+<span from="5477" to="5483"/>
+</rel>
+</span>
+<span id="s287_n1" from="5587" to="5597">
+<rel label="advmod">
+<span from="5598" to="5607"/>
+</rel>
+</span>
+<span id="s287_n2" from="5598" to="5607">
+<rel label="root">
+<span from="5587" to="5737"/>
+</rel>
+</span>
+<span id="s287_n3" from="5608" to="5612">
+<rel label="det">
+<span from="5613" to="5619"/>
+</rel>
+</span>
+<span id="s287_n4" from="5613" to="5619">
+<rel label="nsubj">
+<span from="5598" to="5607"/>
+</rel>
+</span>
+<span id="s287_n5" from="5619" to="5620">
+<rel label="punct">
+<span from="5655" to="5665"/>
+</rel>
+</span>
+<span id="s287_n6" from="5621" to="5623">
+<rel label="advmod">
+<span from="5655" to="5665"/>
+</rel>
+</span>
+<span id="s287_n7" from="5624" to="5627">
+<rel label="det">
+<span from="5628" to="5633"/>
+</rel>
+</span>
+<span id="s287_n8" from="5628" to="5633">
+<rel label="nsubj:pass">
+<span from="5655" to="5665"/>
+</rel>
+</span>
+<span id="s287_n9" from="5634" to="5637">
+<rel label="case">
+<span from="5649" to="5654"/>
+</rel>
+</span>
+<span id="s287_n10" from="5638" to="5648">
+<rel label="amod">
+<span from="5649" to="5654"/>
+</rel>
+</span>
+<span id="s287_n11" from="5649" to="5654">
+<rel label="obl">
+<span from="5655" to="5665"/>
+</rel>
+</span>
+<span id="s287_n12" from="5655" to="5665">
+<rel label="acl">
+<span from="5613" to="5619"/>
+</rel>
+</span>
+<span id="s287_n13" from="5666" to="5670">
+<rel label="aux:pass">
+<span from="5655" to="5665"/>
+</rel>
+</span>
+<span id="s287_n14" from="5670" to="5671">
+<rel label="punct">
+<span from="5685" to="5702"/>
+</rel>
+</span>
+<span id="s287_n15" from="5672" to="5675">
+<rel label="det">
+<span from="5685" to="5702"/>
+</rel>
+</span>
+<span id="s287_n16" from="5676" to="5684">
+<rel label="amod">
+<span from="5685" to="5702"/>
+</rel>
+</span>
+<span id="s287_n17" from="5685" to="5702">
+<rel label="appos">
+<span from="5613" to="5619"/>
+</rel>
+</span>
+<span id="s287_n18" from="5703" to="5707">
+<rel label="cc">
+<span from="5709" to="5714"/>
+</rel>
+</span>
+<span id="s287_n19" from="5709" to="5714">
+<rel label="conj">
+<span from="5685" to="5702"/>
+</rel>
+</span>
+<span id="s287_n20" from="5715" to="5724">
+<rel label="amod">
+<span from="5725" to="5735"/>
+</rel>
+</span>
+<span id="s287_n21" from="5725" to="5735">
+<rel label="nmod">
+<span from="5709" to="5714"/>
+</rel>
+</span>
+<span id="s287_n22" from="5736" to="5737">
+<rel label="punct">
+<span from="5598" to="5607"/>
+</rel>
+</span>
+<span id="s288_n1" from="5738" to="5753">
+<rel label="root">
+<span from="5738" to="5848"/>
+</rel>
+</span>
+<span id="s288_n2" from="5754" to="5758">
+<rel label="aux:pass">
+<span from="5738" to="5753"/>
+</rel>
+</span>
+<span id="s288_n3" from="5759" to="5762">
+<rel label="det">
+<span from="5763" to="5776"/>
+</rel>
+</span>
+<span id="s288_n4" from="5763" to="5776">
+<rel label="nsubj:pass">
+<span from="5738" to="5753"/>
+</rel>
+</span>
+<span id="s288_n5" from="5777" to="5782">
+<rel label="case">
+<span from="5801" to="5810"/>
+</rel>
+</span>
+<span id="s288_n6" from="5783" to="5786">
+<rel label="det">
+<span from="5801" to="5810"/>
+</rel>
+</span>
+<span id="s288_n7" from="5787" to="5800">
+<rel label="amod">
+<span from="5801" to="5810"/>
+</rel>
+</span>
+<span id="s288_n8" from="5801" to="5810">
+<rel label="obl">
+<span from="5738" to="5753"/>
+</rel>
+</span>
+<span id="s288_n9" from="5810" to="5811">
+<rel label="punct">
+<span from="5816" to="5823"/>
+</rel>
+</span>
+<span id="s288_n10" from="5812" to="5815">
+<rel label="det">
+<span from="5816" to="5823"/>
+</rel>
+</span>
+<span id="s288_n11" from="5816" to="5823">
+<rel label="appos">
+<span from="5801" to="5810"/>
+</rel>
+</span>
+<span id="s288_n12" from="5824" to="5835">
+<rel label="amod">
+<span from="5836" to="5847"/>
+</rel>
+</span>
+<span id="s288_n13" from="5836" to="5847">
+<rel label="nmod">
+<span from="5816" to="5823"/>
+</rel>
+</span>
+<span id="s288_n14" from="5847" to="5848">
+<rel label="punct">
+<span from="5738" to="5753"/>
+</rel>
+</span>
+<span id="s289_n1" from="5849" to="5855">
+<rel label="nsubj">
+<span from="5856" to="5862"/>
+</rel>
+</span>
+<span id="s289_n2" from="5856" to="5862">
+<rel label="root">
+<span from="5849" to="5987"/>
+</rel>
+</span>
+<span id="s289_n3" from="5863" to="5866">
+<rel label="case">
+<span from="5877" to="5884"/>
+</rel>
+</span>
+<span id="s289_n4" from="5867" to="5876">
+<rel label="amod">
+<span from="5877" to="5884"/>
+</rel>
+</span>
+<span id="s289_n5" from="5877" to="5884">
+<rel label="obl">
+<span from="5856" to="5862"/>
+</rel>
+</span>
+<span id="s289_n6" from="5885" to="5888">
+<rel label="det">
+<span from="5902" to="5912"/>
+</rel>
+</span>
+<span id="s289_n7" from="5889" to="5901">
+<rel label="amod">
+<span from="5902" to="5912"/>
+</rel>
+</span>
+<span id="s289_n8" from="5902" to="5912">
+<rel label="nmod">
+<span from="5877" to="5884"/>
+</rel>
+</span>
+<span id="s289_n9" from="5913" to="5922">
+<rel label="amod">
+<span from="5923" to="5928"/>
+</rel>
+</span>
+<span id="s289_n10" from="5923" to="5928">
+<rel label="appos">
+<span from="5902" to="5912"/>
+</rel>
+</span>
+<span id="s289_n11" from="5928" to="5929">
+<rel label="punct">
+<span from="5934" to="5946"/>
+</rel>
+</span>
+<span id="s289_n12" from="5930" to="5933">
+<rel label="det">
+<span from="5934" to="5946"/>
+</rel>
+</span>
+<span id="s289_n13" from="5934" to="5946">
+<rel label="conj">
+<span from="5902" to="5912"/>
+</rel>
+</span>
+<span id="s289_n14" from="5946" to="5947">
+<rel label="punct">
+<span from="5952" to="5963"/>
+</rel>
+</span>
+<span id="s289_n15" from="5948" to="5951">
+<rel label="det">
+<span from="5952" to="5963"/>
+</rel>
+</span>
+<span id="s289_n16" from="5952" to="5963">
+<rel label="conj">
+<span from="5934" to="5946"/>
+</rel>
+</span>
+<span id="s289_n17" from="5964" to="5967">
+<rel label="cc">
+<span from="5968" to="5986"/>
+</rel>
+</span>
+<span id="s289_n18" from="5968" to="5986">
+<rel label="conj">
+<span from="5902" to="5912"/>
+</rel>
+</span>
+<span id="s289_n19" from="5986" to="5987">
+<rel label="punct">
+<span from="5856" to="5862"/>
+</rel>
+</span>
+<span id="s290_n1" from="5988" to="5990">
+<rel label="advmod">
+<span from="5991" to="5996"/>
+</rel>
+</span>
+<span id="s290_n2" from="5991" to="5996">
+<rel label="root">
+<span from="5988" to="6127"/>
+</rel>
+</span>
+<span id="s290_n3" from="5997" to="6006">
+<rel label="nsubj">
+<span from="5991" to="5996"/>
+</rel>
+</span>
+<span id="s290_n4" from="6007" to="6009">
+<rel label="case">
+<span from="6010" to="6019"/>
+</rel>
+</span>
+<span id="s290_n5" from="6010" to="6019">
+<rel label="obl">
+<span from="5991" to="5996"/>
+</rel>
+</span>
+<span id="s290_n6" from="6020" to="6022">
+<rel label="case">
+<span from="6038" to="6050"/>
+</rel>
+</span>
+<span id="s290_n7" from="6023" to="6037">
+<rel label="amod">
+<span from="6038" to="6050"/>
+</rel>
+</span>
+<span id="s290_n8" from="6038" to="6050">
+<rel label="nmod">
+<span from="6010" to="6019"/>
+</rel>
+</span>
+<span id="s290_n9" from="6051" to="6056">
+<rel label="det">
+<span from="6067" to="6087"/>
+</rel>
+</span>
+<span id="s290_n10" from="6057" to="6066">
+<rel label="advmod">
+<span from="6067" to="6087"/>
+</rel>
+</span>
+<span id="s290_n11" from="6067" to="6087">
+<rel label="obj">
+<span from="5991" to="5996"/>
+</rel>
+</span>
+<span id="s290_n12" from="6088" to="6091">
+<rel label="case">
+<span from="6112" to="6126"/>
+</rel>
+</span>
+<span id="s290_n13" from="6092" to="6098">
+<rel label="advmod">
+<span from="6099" to="6111"/>
+</rel>
+</span>
+<span id="s290_n14" from="6099" to="6111">
+<rel label="amod">
+<span from="6112" to="6126"/>
+</rel>
+</span>
+<span id="s290_n15" from="6112" to="6126">
+<rel label="obl">
+<span from="5991" to="5996"/>
+</rel>
+</span>
+<span id="s290_n16" from="6126" to="6127">
+<rel label="punct">
+<span from="5991" to="5996"/>
+</rel>
+</span>
+<span id="s291_n1" from="6128" to="6134">
+<rel label="det">
+<span from="6135" to="6147"/>
+</rel>
+</span>
+<span id="s291_n2" from="6135" to="6147">
+<rel label="nsubj:pass">
+<span from="6225" to="6232"/>
+</rel>
+</span>
+<span id="s291_n3" from="6148" to="6153">
+<rel label="aux:pass">
+<span from="6225" to="6232"/>
+</rel>
+</span>
+<span id="s291_n4" from="6154" to="6156">
+<rel label="case">
+<span from="6157" to="6168"/>
+</rel>
+</span>
+<span id="s291_n5" from="6157" to="6168">
+<rel label="obl">
+<span from="6225" to="6232"/>
+</rel>
+</span>
+<span id="s291_n6" from="6169" to="6172">
+<rel label="cc">
+<span from="6180" to="6187"/>
+</rel>
+</span>
+<span id="s291_n7" from="6173" to="6179">
+<rel label="amod">
+<span from="6180" to="6187"/>
+</rel>
+</span>
+<span id="s291_n8" from="6180" to="6187">
+<rel label="conj">
+<span from="6157" to="6168"/>
+</rel>
+</span>
+<span id="s291_n9" from="6188" to="6191">
+<rel label="case">
+<span from="6192" to="6201"/>
+</rel>
+</span>
+<span id="s291_n10" from="6192" to="6201">
+<rel label="obl">
+<span from="6225" to="6232"/>
+</rel>
+</span>
+<span id="s291_n11" from="6202" to="6205">
+<rel label="det">
+<span from="6206" to="6224"/>
+</rel>
+</span>
+<span id="s291_n12" from="6206" to="6224">
+<rel label="nmod">
+<span from="6192" to="6201"/>
+</rel>
+</span>
+<span id="s291_n13" from="6225" to="6232">
+<rel label="root">
+<span from="6128" to="6332"/>
+</rel>
+</span>
+<span id="s291_n14" from="6232" to="6233">
+<rel label="punct">
+<span from="6270" to="6278"/>
+</rel>
+</span>
+<span id="s291_n15" from="6234" to="6239">
+<rel label="mark">
+<span from="6270" to="6278"/>
+</rel>
+</span>
+<span id="s291_n16" from="6240" to="6243">
+<rel label="nsubj">
+<span from="6270" to="6278"/>
+</rel>
+</span>
+<span id="s291_n17" from="6244" to="6255">
+<rel label="advmod">
+<span from="6270" to="6278"/>
+</rel>
+</span>
+<span id="s291_n18" from="6256" to="6259">
+<rel label="det">
+<span from="6260" to="6269"/>
+</rel>
+</span>
+<span id="s291_n19" from="6260" to="6269">
+<rel label="obj">
+<span from="6270" to="6278"/>
+</rel>
+</span>
+<span id="s291_n20" from="6270" to="6278">
+<rel label="advcl">
+<span from="6225" to="6232"/>
+</rel>
+</span>
+<span id="s291_n21" from="6279" to="6282">
+<rel label="cc">
+<span from="6306" to="6331"/>
+</rel>
+</span>
+<span id="s291_n22" from="6283" to="6290">
+<rel label="advmod">
+<span from="6306" to="6331"/>
+</rel>
+</span>
+<span id="s291_n23" from="6291" to="6297">
+<rel label="det">
+<span from="6306" to="6331"/>
+</rel>
+</span>
+<span id="s291_n24" from="6298" to="6305">
+<rel label="amod">
+<span from="6306" to="6331"/>
+</rel>
+</span>
+<span id="s291_n25" from="6306" to="6331">
+<rel label="conj">
+<span from="6260" to="6269"/>
+</rel>
+</span>
+<span id="s291_n26" from="6331" to="6332">
+<rel label="punct">
+<span from="6225" to="6232"/>
+</rel>
+</span>
+<span id="s292_n1" from="6333" to="6340">
+<rel label="root">
+<span from="6333" to="6403"/>
+</rel>
+</span>
+<span id="s292_n2" from="6341" to="6344">
+<rel label="cop">
+<span from="6333" to="6340"/>
+</rel>
+</span>
+<span id="s292_n3" from="6345" to="6348">
+<rel label="det">
+<span from="6369" to="6383"/>
+</rel>
+</span>
+<span id="s292_n4" from="6349" to="6356">
+<rel label="advmod">
+<span from="6357" to="6368"/>
+</rel>
+</span>
+<span id="s292_n5" from="6357" to="6368">
+<rel label="amod">
+<span from="6369" to="6383"/>
+</rel>
+</span>
+<span id="s292_n6" from="6369" to="6383">
+<rel label="nsubj">
+<span from="6333" to="6340"/>
+</rel>
+</span>
+<span id="s292_n7" from="6384" to="6388">
+<rel label="cc">
+<span from="6389" to="6402"/>
+</rel>
+</span>
+<span id="s292_n8" from="6389" to="6402">
+<rel label="conj">
+<span from="6369" to="6383"/>
+</rel>
+</span>
+<span id="s292_n9" from="6402" to="6403">
+<rel label="punct">
+<span from="6333" to="6340"/>
+</rel>
+</span>
+<span id="s293_n1" from="6404" to="6407">
+<rel label="det">
+<span from="6418" to="6424"/>
+</rel>
+</span>
+<span id="s293_n2" from="6408" to="6417">
+<rel label="amod">
+<span from="6418" to="6424"/>
+</rel>
+</span>
+<span id="s293_n3" from="6418" to="6424">
+<rel label="nsubj:pass">
+<span from="6433" to="6444"/>
+</rel>
+</span>
+<span id="s293_n4" from="6425" to="6429">
+<rel label="aux">
+<span from="6433" to="6444"/>
+</rel>
+</span>
+<span id="s293_n5" from="6430" to="6432">
+<rel label="advmod">
+<span from="6433" to="6444"/>
+</rel>
+</span>
+<span id="s293_n6" from="6433" to="6444">
+<rel label="root">
+<span from="6404" to="6513"/>
+</rel>
+</span>
+<span id="s293_n7" from="6445" to="6451">
+<rel label="aux:pass">
+<span from="6433" to="6444"/>
+</rel>
+</span>
+<span id="s293_n8" from="6451" to="6452">
+<rel label="punct">
+<span from="6479" to="6489"/>
+</rel>
+</span>
+<span id="s293_n9" from="6452" to="6456">
+<rel label="mark">
+<span from="6479" to="6489"/>
+</rel>
+</span>
+<span id="s293_n10" from="6457" to="6478">
+<rel label="nsubj:pass">
+<span from="6479" to="6489"/>
+</rel>
+</span>
+<span id="s293_n11" from="6479" to="6489">
+<rel label="advcl">
+<span from="6433" to="6444"/>
+</rel>
+</span>
+<span id="s293_n12" from="6490" to="6494">
+<rel label="cc">
+<span from="6495" to="6505"/>
+</rel>
+</span>
+<span id="s293_n13" from="6495" to="6505">
+<rel label="conj">
+<span from="6479" to="6489"/>
+</rel>
+</span>
+<span id="s293_n14" from="6506" to="6512">
+<rel label="aux:pass">
+<span from="6479" to="6489"/>
+</rel>
+</span>
+<span id="s293_n15" from="6512" to="6513">
+<rel label="punct">
+<span from="6433" to="6444"/>
+</rel>
+</span>
+<span id="s294_n1" from="6514" to="6520">
+<rel label="det">
+<span from="6521" to="6528"/>
+</rel>
+</span>
+<span id="s294_n2" from="6521" to="6528">
+<rel label="nsubj">
+<span from="6529" to="6535"/>
+</rel>
+</span>
+<span id="s294_n3" from="6529" to="6535">
+<rel label="root">
+<span from="6514" to="6549"/>
+</rel>
+</span>
+<span id="s294_n4" from="6536" to="6548">
+<rel label="xcomp">
+<span from="6529" to="6535"/>
+</rel>
+</span>
+<span id="s294_n5" from="6548" to="6549">
+<rel label="punct">
+<span from="6529" to="6535"/>
+</rel>
+</span>
+<span id="s295_n1" from="6550" to="6555">
+<rel label="det">
+<span from="6556" to="6567"/>
+</rel>
+</span>
+<span id="s295_n2" from="6556" to="6567">
+<rel label="nsubj">
+<span from="6568" to="6571"/>
+</rel>
+</span>
+<span id="s295_n3" from="6568" to="6571">
+<rel label="root">
+<span from="6550" to="6694"/>
+</rel>
+</span>
+<span id="s295_n4" from="6572" to="6575">
+<rel label="advmod">
+<span from="6593" to="6602"/>
+</rel>
+</span>
+<span id="s295_n5" from="6576" to="6580">
+<rel label="advmod">
+<span from="6593" to="6602"/>
+</rel>
+</span>
+<span id="s295_n6" from="6581" to="6592">
+<rel label="amod">
+<span from="6593" to="6602"/>
+</rel>
+</span>
+<span id="s295_n7" from="6593" to="6602">
+<rel label="obj">
+<span from="6568" to="6571"/>
+</rel>
+</span>
+<span id="s295_n8" from="6602" to="6603">
+<rel label="punct">
+<span from="6685" to="6693"/>
+</rel>
+</span>
+<span id="s295_n9" from="6604" to="6612">
+<rel label="amod">
+<span from="6613" to="6619"/>
+</rel>
+</span>
+<span id="s295_n10" from="6613" to="6619">
+<rel label="nsubj">
+<span from="6685" to="6693"/>
+</rel>
+</span>
+<span id="s295_n11" from="6620" to="6623">
+<rel label="case">
+<span from="6633" to="6643"/>
+</rel>
+</span>
+<span id="s295_n12" from="6624" to="6632">
+<rel label="amod">
+<span from="6633" to="6643"/>
+</rel>
+</span>
+<span id="s295_n13" from="6633" to="6643">
+<rel label="nmod">
+<span from="6613" to="6619"/>
+</rel>
+</span>
+<span id="s295_n14" from="6644" to="6647">
+<rel label="advmod">
+<span from="6657" to="6684"/>
+</rel>
+</span>
+<span id="s295_n15" from="6648" to="6652">
+<rel label="advmod">
+<span from="6657" to="6684"/>
+</rel>
+</span>
+<span id="s295_n16" from="6653" to="6656">
+<rel label="case">
+<span from="6657" to="6684"/>
+</rel>
+</span>
+<span id="s295_n17" from="6657" to="6684">
+<rel label="obl">
+<span from="6685" to="6693"/>
+</rel>
+</span>
+<span id="s295_n18" from="6685" to="6693">
+<rel label="conj">
+<span from="6568" to="6571"/>
+</rel>
+</span>
+<span id="s295_n19" from="6693" to="6694">
+<rel label="punct">
+<span from="6568" to="6571"/>
+</rel>
+</span>
+<span id="s296_n1" from="6695" to="6699">
+<rel label="det">
+<span from="6700" to="6708"/>
+</rel>
+</span>
+<span id="s296_n2" from="6700" to="6708">
+<rel label="obj">
+<span from="6709" to="6716"/>
+</rel>
+</span>
+<span id="s296_n3" from="6709" to="6716">
+<rel label="root">
+<span from="6695" to="6832"/>
+</rel>
+</span>
+<span id="s296_n4" from="6717" to="6720">
+<rel label="det">
+<span from="6721" to="6735"/>
+</rel>
+</span>
+<span id="s296_n5" from="6721" to="6735">
+<rel label="nsubj">
+<span from="6709" to="6716"/>
+</rel>
+</span>
+<span id="s296_n6" from="6736" to="6737">
+<rel label="appos">
+<span from="6721" to="6735"/>
+</rel>
+</span>
+<span id="s296_n7" from="6738" to="6742">
+<rel label="det">
+<span from="6743" to="6749"/>
+</rel>
+</span>
+<span id="s296_n8" from="6743" to="6749">
+<rel label="obj">
+<span from="6709" to="6716"/>
+</rel>
+</span>
+<span id="s296_n9" from="6750" to="6753">
+<rel label="case">
+<span from="6754" to="6778"/>
+</rel>
+</span>
+<span id="s296_n10" from="6754" to="6778">
+<rel label="nmod">
+<span from="6743" to="6749"/>
+</rel>
+</span>
+<span id="s296_n11" from="6779" to="6780">
+<rel label="flat">
+<span from="6754" to="6778"/>
+</rel>
+</span>
+<span id="s296_n12" from="6781" to="6784">
+<rel label="compound:prt">
+<span from="6709" to="6716"/>
+</rel>
+</span>
+<span id="s296_n13" from="6784" to="6785">
+<rel label="punct">
+<span from="6817" to="6831"/>
+</rel>
+</span>
+<span id="s296_n14" from="6786" to="6789">
+<rel label="case">
+<span from="6790" to="6795"/>
+</rel>
+</span>
+<span id="s296_n15" from="6790" to="6795">
+<rel label="obl">
+<span from="6817" to="6831"/>
+</rel>
+</span>
+<span id="s296_n16" from="6796" to="6799">
+<rel label="det">
+<span from="6800" to="6806"/>
+</rel>
+</span>
+<span id="s296_n17" from="6800" to="6806">
+<rel label="nsubj">
+<span from="6817" to="6831"/>
+</rel>
+</span>
+<span id="s296_n18" from="6807" to="6816">
+<rel label="advmod">
+<span from="6817" to="6831"/>
+</rel>
+</span>
+<span id="s296_n19" from="6817" to="6831">
+<rel label="acl">
+<span from="6743" to="6749"/>
+</rel>
+</span>
+<span id="s296_n20" from="6831" to="6832">
+<rel label="punct">
+<span from="6709" to="6716"/>
+</rel>
+</span>
+<span id="s297_n1" from="6833" to="6836">
+<rel label="det">
+<span from="6865" to="6875"/>
+</rel>
+</span>
+<span id="s297_n2" from="6837" to="6840">
+<rel label="det">
+<span from="6841" to="6854"/>
+</rel>
+</span>
+<span id="s297_n3" from="6841" to="6854">
+<rel label="obj">
+<span from="6855" to="6864"/>
+</rel>
+</span>
+<span id="s297_n4" from="6855" to="6864">
+<rel label="amod">
+<span from="6865" to="6875"/>
+</rel>
+</span>
+<span id="s297_n5" from="6865" to="6875">
+<rel label="nsubj">
+<span from="6925" to="6934"/>
+</rel>
+</span>
+<span id="s297_n6" from="6876" to="6880">
+<rel label="aux">
+<span from="6925" to="6934"/>
+</rel>
+</span>
+<span id="s297_n7" from="6881" to="6884">
+<rel label="case">
+<span from="6885" to="6902"/>
+</rel>
+</span>
+<span id="s297_n8" from="6885" to="6902">
+<rel label="obl">
+<span from="6925" to="6934"/>
+</rel>
+</span>
+<span id="s297_n9" from="6903" to="6906">
+<rel label="det">
+<span from="6907" to="6924"/>
+</rel>
+</span>
+<span id="s297_n10" from="6907" to="6924">
+<rel label="nmod">
+<span from="6885" to="6902"/>
+</rel>
+</span>
+<span id="s297_n11" from="6925" to="6934">
+<rel label="root">
+<span from="6833" to="7010"/>
+</rel>
+</span>
+<span id="s297_n12" from="6934" to="6935">
+<rel label="punct">
+<span from="6942" to="6954"/>
+</rel>
+</span>
+<span id="s297_n13" from="6936" to="6941">
+<rel label="det">
+<span from="6942" to="6954"/>
+</rel>
+</span>
+<span id="s297_n14" from="6942" to="6954">
+<rel label="appos">
+<span from="6907" to="6924"/>
+</rel>
+</span>
+<span id="s297_n15" from="6955" to="6958">
+<rel label="advmod">
+<span from="6942" to="6954"/>
+</rel>
+</span>
+<span id="s297_n16" from="6959" to="6964">
+<rel label="case">
+<span from="6972" to="6984"/>
+</rel>
+</span>
+<span id="s297_n17" from="6965" to="6971">
+<rel label="amod">
+<span from="6972" to="6984"/>
+</rel>
+</span>
+<span id="s297_n18" from="6972" to="6984">
+<rel label="nmod">
+<span from="6942" to="6954"/>
+</rel>
+</span>
+<span id="s297_n19" from="6985" to="6988">
+<rel label="det">
+<span from="6989" to="7009"/>
+</rel>
+</span>
+<span id="s297_n20" from="6989" to="7009">
+<rel label="nmod">
+<span from="6972" to="6984"/>
+</rel>
+</span>
+<span id="s297_n21" from="7009" to="7010">
+<rel label="punct">
+<span from="6925" to="6934"/>
+</rel>
+</span>
+<span id="s298_n1" from="7011" to="7015">
+<rel label="nsubj">
+<span from="7045" to="7051"/>
+</rel>
+</span>
+<span id="s298_n2" from="7016" to="7020">
+<rel label="aux">
+<span from="7045" to="7051"/>
+</rel>
+</span>
+<span id="s298_n3" from="7021" to="7023">
+<rel label="case">
+<span from="7032" to="7044"/>
+</rel>
+</span>
+<span id="s298_n4" from="7024" to="7031">
+<rel label="amod">
+<span from="7032" to="7044"/>
+</rel>
+</span>
+<span id="s298_n5" from="7032" to="7044">
+<rel label="obj">
+<span from="7045" to="7051"/>
+</rel>
+</span>
+<span id="s298_n6" from="7045" to="7051">
+<rel label="root">
+<span from="7011" to="7218"/>
+</rel>
+</span>
+<span id="s298_n7" from="7051" to="7052">
+<rel label="punct">
+<span from="7091" to="7102"/>
+</rel>
+</span>
+<span id="s298_n8" from="7053" to="7060">
+<rel label="advmod">
+<span from="7091" to="7102"/>
+</rel>
+</span>
+<span id="s298_n9" from="7061" to="7064">
+<rel label="det">
+<span from="7073" to="7079"/>
+</rel>
+</span>
+<span id="s298_n10" from="7065" to="7072">
+<rel label="amod">
+<span from="7073" to="7079"/>
+</rel>
+</span>
+<span id="s298_n11" from="7073" to="7079">
+<rel label="nsubj">
+<span from="7091" to="7102"/>
+</rel>
+</span>
+<span id="s298_n12" from="7080" to="7085">
+<rel label="advmod">
+<span from="7091" to="7102"/>
+</rel>
+</span>
+<span id="s298_n13" from="7086" to="7090">
+<rel label="advmod">
+<span from="7080" to="7085"/>
+</rel>
+</span>
+<span id="s298_n14" from="7091" to="7102">
+<rel label="acl">
+<span from="7045" to="7051"/>
+</rel>
+</span>
+<span id="s298_n15" from="7103" to="7106">
+<rel label="cop">
+<span from="7091" to="7102"/>
+</rel>
+</span>
+<span id="s298_n16" from="7106" to="7107">
+<rel label="punct">
+<span from="7200" to="7217"/>
+</rel>
+</span>
+<span id="s298_n17" from="7108" to="7115">
+<rel label="cc">
+<span from="7200" to="7217"/>
+</rel>
+</span>
+<span id="s298_n18" from="7116" to="7119">
+<rel label="case">
+<span from="7120" to="7134"/>
+</rel>
+</span>
+<span id="s298_n19" from="7120" to="7134">
+<rel label="obl">
+<span from="7200" to="7217"/>
+</rel>
+</span>
+<span id="s298_n20" from="7135" to="7144">
+<rel label="amod">
+<span from="7163" to="7168"/>
+</rel>
+</span>
+<span id="s298_n21" from="7145" to="7149">
+<rel label="cc">
+<span from="7150" to="7162"/>
+</rel>
+</span>
+<span id="s298_n22" from="7150" to="7162">
+<rel label="amod">
+<span from="7163" to="7168"/>
+</rel>
+</span>
+<span id="s298_n23" from="7163" to="7168">
+<rel label="nmod">
+<span from="7120" to="7134"/>
+</rel>
+</span>
+<span id="s298_n24" from="7169" to="7179">
+<rel label="advmod">
+<span from="7200" to="7217"/>
+</rel>
+</span>
+<span id="s298_n25" from="7180" to="7184">
+<rel label="cc">
+<span from="7185" to="7193"/>
+</rel>
+</span>
+<span id="s298_n26" from="7185" to="7193">
+<rel label="conj">
+<span from="7169" to="7179"/>
+</rel>
+</span>
+<span id="s298_n27" from="7194" to="7199">
+<rel label="advmod">
+<span from="7200" to="7217"/>
+</rel>
+</span>
+<span id="s298_n28" from="7200" to="7217">
+<rel label="conj">
+<span from="7091" to="7102"/>
+</rel>
+</span>
+<span id="s298_n29" from="7217" to="7218">
+<rel label="punct">
+<span from="7045" to="7051"/>
+</rel>
+</span>
+<span id="s299_n1" from="7220" to="7240">
+<rel label="nsubj">
+<span from="7330" to="7336"/>
+</rel>
+</span>
+<span id="s299_n2" from="7242" to="7255">
+<rel label="amod">
+<span from="7256" to="7262"/>
+</rel>
+</span>
+<span id="s299_n3" from="7256" to="7262">
+<rel label="appos">
+<span from="7220" to="7240"/>
+</rel>
+</span>
+<span id="s299_n4" from="7262" to="7263">
+<rel label="punct">
+<span from="7318" to="7323"/>
+</rel>
+</span>
+<span id="s299_n5" from="7264" to="7267">
+<rel label="nsubj">
+<span from="7318" to="7323"/>
+</rel>
+</span>
+<span id="s299_n6" from="7268" to="7273">
+<rel label="advmod">
+<span from="7318" to="7323"/>
+</rel>
+</span>
+<span id="s299_n7" from="7274" to="7281">
+<rel label="advmod">
+<span from="7318" to="7323"/>
+</rel>
+</span>
+<span id="s299_n8" from="7282" to="7304">
+<rel label="advmod">
+<span from="7318" to="7323"/>
+</rel>
+</span>
+<span id="s299_n9" from="7305" to="7308">
+<rel label="det">
+<span from="7318" to="7323"/>
+</rel>
+</span>
+<span id="s299_n10" from="7309" to="7317">
+<rel label="amod">
+<span from="7318" to="7323"/>
+</rel>
+</span>
+<span id="s299_n11" from="7318" to="7323">
+<rel label="acl">
+<span from="7256" to="7262"/>
+</rel>
+</span>
+<span id="s299_n12" from="7324" to="7328">
+<rel label="cop">
+<span from="7318" to="7323"/>
+</rel>
+</span>
+<span id="s299_n13" from="7328" to="7329">
+<rel label="punct">
+<span from="7318" to="7323"/>
+</rel>
+</span>
+<span id="s299_n14" from="7330" to="7336">
+<rel label="root">
+<span from="7220" to="7378"/>
+</rel>
+</span>
+<span id="s299_n15" from="7337" to="7341">
+<rel label="advmod">
+<span from="7356" to="7374"/>
+</rel>
+</span>
+<span id="s299_n16" from="7342" to="7355">
+<rel label="amod">
+<span from="7356" to="7374"/>
+</rel>
+</span>
+<span id="s299_n17" from="7356" to="7374">
+<rel label="obj">
+<span from="7330" to="7336"/>
+</rel>
+</span>
+<span id="s299_n18" from="7375" to="7377">
+<rel label="compound:prt">
+<span from="7330" to="7336"/>
+</rel>
+</span>
+<span id="s299_n19" from="7377" to="7378">
+<rel label="punct">
+<span from="7330" to="7336"/>
+</rel>
+</span>
+<span id="s300_n1" from="7379" to="7382">
+<rel label="det">
+<span from="7383" to="7394"/>
+</rel>
+</span>
+<span id="s300_n2" from="7383" to="7394">
+<rel label="nsubj:pass">
+<span from="7449" to="7459"/>
+</rel>
+</span>
+<span id="s300_n3" from="7395" to="7399">
+<rel label="aux:pass">
+<span from="7449" to="7459"/>
+</rel>
+</span>
+<span id="s300_n4" from="7400" to="7402">
+<rel label="advmod">
+<span from="7408" to="7420"/>
+</rel>
+</span>
+<span id="s300_n5" from="7403" to="7407">
+<rel label="case">
+<span from="7408" to="7420"/>
+</rel>
+</span>
+<span id="s300_n6" from="7408" to="7420">
+<rel label="obl">
+<span from="7449" to="7459"/>
+</rel>
+</span>
+<span id="s300_n7" from="7421" to="7424">
+<rel label="case">
+<span from="7425" to="7431"/>
+</rel>
+</span>
+<span id="s300_n8" from="7425" to="7431">
+<rel label="obl">
+<span from="7449" to="7459"/>
+</rel>
+</span>
+<span id="s300_n9" from="7432" to="7433">
+<rel label="punct">
+<span from="7443" to="7447"/>
+</rel>
+</span>
+<span id="s300_n10" from="7433" to="7442">
+<rel label="advmod">
+<span from="7443" to="7447"/>
+</rel>
+</span>
+<span id="s300_n11" from="7443" to="7447">
+<rel label="advmod">
+<span from="7425" to="7431"/>
+</rel>
+</span>
+<span id="s300_n12" from="7447" to="7448">
+<rel label="punct">
+<span from="7443" to="7447"/>
+</rel>
+</span>
+<span id="s300_n13" from="7449" to="7459">
+<rel label="root">
+<span from="7379" to="7460"/>
+</rel>
+</span>
+<span id="s300_n14" from="7459" to="7460">
+<rel label="punct">
+<span from="7449" to="7459"/>
+</rel>
+</span>
+<span id="s301_n1" from="7461" to="7467">
+<rel label="det">
+<span from="7468" to="7474"/>
+</rel>
+</span>
+<span id="s301_n2" from="7468" to="7474">
+<rel label="nsubj">
+<span from="7475" to="7481"/>
+</rel>
+</span>
+<span id="s301_n3" from="7475" to="7481">
+<rel label="root">
+<span from="7461" to="7549"/>
+</rel>
+</span>
+<span id="s301_n4" from="7482" to="7484">
+<rel label="case">
+<span from="7489" to="7499"/>
+</rel>
+</span>
+<span id="s301_n5" from="7485" to="7488">
+<rel label="det">
+<span from="7489" to="7499"/>
+</rel>
+</span>
+<span id="s301_n6" from="7489" to="7499">
+<rel label="obl">
+<span from="7475" to="7481"/>
+</rel>
+</span>
+<span id="s301_n7" from="7500" to="7503">
+<rel label="cc">
+<span from="7508" to="7523"/>
+</rel>
+</span>
+<span id="s301_n8" from="7504" to="7507">
+<rel label="det">
+<span from="7508" to="7523"/>
+</rel>
+</span>
+<span id="s301_n9" from="7508" to="7523">
+<rel label="conj">
+<span from="7489" to="7499"/>
+</rel>
+</span>
+<span id="s301_n10" from="7524" to="7528">
+<rel label="det">
+<span from="7543" to="7548"/>
+</rel>
+</span>
+<span id="s301_n11" from="7529" to="7542">
+<rel label="amod">
+<span from="7543" to="7548"/>
+</rel>
+</span>
+<span id="s301_n12" from="7543" to="7548">
+<rel label="obj">
+<span from="7475" to="7481"/>
+</rel>
+</span>
+<span id="s301_n13" from="7548" to="7549">
+<rel label="punct">
+<span from="7475" to="7481"/>
+</rel>
+</span>
+<span id="s302_n1" from="7550" to="7553">
+<rel label="det">
+<span from="7565" to="7569"/>
+</rel>
+</span>
+<span id="s302_n2" from="7554" to="7564">
+<rel label="amod">
+<span from="7565" to="7569"/>
+</rel>
+</span>
+<span id="s302_n3" from="7565" to="7569">
+<rel label="nsubj">
+<span from="7596" to="7601"/>
+</rel>
+</span>
+<span id="s302_n4" from="7570" to="7573">
+<rel label="det">
+<span from="7582" to="7595"/>
+</rel>
+</span>
+<span id="s302_n5" from="7574" to="7581">
+<rel label="amod">
+<span from="7582" to="7595"/>
+</rel>
+</span>
+<span id="s302_n6" from="7582" to="7595">
+<rel label="nmod">
+<span from="7565" to="7569"/>
+</rel>
+</span>
+<span id="s302_n7" from="7596" to="7601">
+<rel label="root">
+<span from="7550" to="7777"/>
+</rel>
+</span>
+<span id="s302_n8" from="7602" to="7606">
+<rel label="obj">
+<span from="7596" to="7601"/>
+</rel>
+</span>
+<span id="s302_n9" from="7607" to="7612">
+<rel label="case">
+<span from="7613" to="7624"/>
+</rel>
+</span>
+<span id="s302_n10" from="7613" to="7624">
+<rel label="obl">
+<span from="7702" to="7713"/>
+</rel>
+</span>
+<span id="s302_n11" from="7625" to="7628">
+<rel label="case">
+<span from="7688" to="7701"/>
+</rel>
+</span>
+<span id="s302_n12" from="7629" to="7634">
+<rel label="det">
+<span from="7688" to="7701"/>
+</rel>
+</span>
+<span id="s302_n13" from="7635" to="7637">
+<rel label="case">
+<span from="7638" to="7648"/>
+</rel>
+</span>
+<span id="s302_n14" from="7638" to="7648">
+<rel label="obl">
+<span from="7672" to="7687"/>
+</rel>
+</span>
+<span id="s302_n15" from="7649" to="7652">
+<rel label="cc">
+<span from="7653" to="7665"/>
+</rel>
+</span>
+<span id="s302_n16" from="7653" to="7665">
+<rel label="conj">
+<span from="7638" to="7648"/>
+</rel>
+</span>
+<span id="s302_n17" from="7666" to="7671">
+<rel label="advmod">
+<span from="7672" to="7687"/>
+</rel>
+</span>
+<span id="s302_n18" from="7672" to="7687">
+<rel label="amod">
+<span from="7688" to="7701"/>
+</rel>
+</span>
+<span id="s302_n19" from="7688" to="7701">
+<rel label="nmod">
+<span from="7613" to="7624"/>
+</rel>
+</span>
+<span id="s302_n20" from="7702" to="7713">
+<rel label="xcomp">
+<span from="7596" to="7601"/>
+</rel>
+</span>
+<span id="s302_n21" from="7714" to="7715">
+<rel label="punct">
+<span from="7715" to="7727"/>
+</rel>
+</span>
+<span id="s302_n22" from="7715" to="7727">
+<rel label="parataxis">
+<span from="7596" to="7601"/>
+</rel>
+</span>
+<span id="s302_n23" from="7728" to="7730">
+<rel label="case">
+<span from="7735" to="7741"/>
+</rel>
+</span>
+<span id="s302_n24" from="7731" to="7734">
+<rel label="det">
+<span from="7735" to="7741"/>
+</rel>
+</span>
+<span id="s302_n25" from="7735" to="7741">
+<rel label="nmod">
+<span from="7715" to="7727"/>
+</rel>
+</span>
+<span id="s302_n26" from="7741" to="7742">
+<rel label="punct">
+<span from="7743" to="7752"/>
+</rel>
+</span>
+<span id="s302_n27" from="7743" to="7752">
+<rel label="conj">
+<span from="7715" to="7727"/>
+</rel>
+</span>
+<span id="s302_n28" from="7753" to="7755">
+<rel label="case">
+<span from="7756" to="7775"/>
+</rel>
+</span>
+<span id="s302_n29" from="7756" to="7775">
+<rel label="nmod">
+<span from="7743" to="7752"/>
+</rel>
+</span>
+<span id="s302_n30" from="7775" to="7776">
+<rel label="punct">
+<span from="7715" to="7727"/>
+</rel>
+</span>
+<span id="s302_n31" from="7776" to="7777">
+<rel label="punct">
+<span from="7596" to="7601"/>
+</rel>
+</span>
+<span id="s303_n1" from="7778" to="7781">
+<rel label="det">
+<span from="7782" to="7791"/>
+</rel>
+</span>
+<span id="s303_n2" from="7782" to="7791">
+<rel label="root">
+<span from="7778" to="7912"/>
+</rel>
+</span>
+<span id="s303_n3" from="7792" to="7795">
+<rel label="case">
+<span from="7796" to="7806"/>
+</rel>
+</span>
+<span id="s303_n4" from="7796" to="7806">
+<rel label="nmod">
+<span from="7782" to="7791"/>
+</rel>
+</span>
+<span id="s303_n5" from="7807" to="7810">
+<rel label="case">
+<span from="7822" to="7827"/>
+</rel>
+</span>
+<span id="s303_n6" from="7811" to="7821">
+<rel label="amod">
+<span from="7822" to="7827"/>
+</rel>
+</span>
+<span id="s303_n7" from="7822" to="7827">
+<rel label="nmod">
+<span from="7796" to="7806"/>
+</rel>
+</span>
+<span id="s303_n8" from="7828" to="7841">
+<rel label="advmod">
+<span from="7782" to="7791"/>
+</rel>
+</span>
+<span id="s303_n9" from="7842" to="7844">
+<rel label="advmod">
+<span from="7845" to="7855"/>
+</rel>
+</span>
+<span id="s303_n10" from="7845" to="7855">
+<rel label="advmod">
+<span from="7782" to="7791"/>
+</rel>
+</span>
+<span id="s303_n11" from="7855" to="7856">
+<rel label="punct">
+<span from="7903" to="7911"/>
+</rel>
+</span>
+<span id="s303_n12" from="7857" to="7861">
+<rel label="mark">
+<span from="7903" to="7911"/>
+</rel>
+</span>
+<span id="s303_n13" from="7862" to="7866">
+<rel label="advmod">
+<span from="7903" to="7911"/>
+</rel>
+</span>
+<span id="s303_n14" from="7867" to="7871">
+<rel label="det">
+<span from="7882" to="7902"/>
+</rel>
+</span>
+<span id="s303_n15" from="7872" to="7881">
+<rel label="amod">
+<span from="7882" to="7902"/>
+</rel>
+</span>
+<span id="s303_n16" from="7882" to="7902">
+<rel label="nsubj">
+<span from="7903" to="7911"/>
+</rel>
+</span>
+<span id="s303_n17" from="7903" to="7911">
+<rel label="ccomp">
+<span from="7782" to="7791"/>
+</rel>
+</span>
+<span id="s303_n18" from="7911" to="7912">
+<rel label="punct">
+<span from="7782" to="7791"/>
+</rel>
+</span>
+<span id="s304_n1" from="7914" to="7918">
+<rel label="root">
+<span from="7914" to="8005"/>
+</rel>
+</span>
+<span id="s304_n2" from="7920" to="7924">
+<rel label="flat:name">
+<span from="7914" to="7918"/>
+</rel>
+</span>
+<span id="s304_n3" from="7924" to="7925">
+<rel label="punct">
+<span from="7914" to="7918"/>
+</rel>
+</span>
+<span id="s304_n4" from="7925" to="7929">
+<rel label="appos">
+<span from="7914" to="7918"/>
+</rel>
+</span>
+<span id="s304_n5" from="7930" to="7932">
+<rel label="case">
+<span from="7939" to="7950"/>
+</rel>
+</span>
+<span id="s304_n6" from="7933" to="7938">
+<rel label="det">
+<span from="7939" to="7950"/>
+</rel>
+</span>
+<span id="s304_n7" from="7939" to="7950">
+<rel label="nmod">
+<span from="7925" to="7929"/>
+</rel>
+</span>
+<span id="s304_n8" from="7951" to="7955">
+<rel label="flat:name">
+<span from="7939" to="7950"/>
+</rel>
+</span>
+<span id="s304_n9" from="7955" to="7956">
+<rel label="appos">
+<span from="7939" to="7950"/>
+</rel>
+</span>
+<span id="s304_n10" from="7956" to="7961">
+<rel label="advmod">
+<span from="7961" to="7962"/>
+</rel>
+</span>
+<span id="s304_n11" from="7961" to="7962">
+<rel label="appos">
+<span from="7955" to="7956"/>
+</rel>
+</span>
+<span id="s304_n12" from="7962" to="7970">
+<rel label="advmod">
+<span from="7961" to="7962"/>
+</rel>
+</span>
+<span id="s304_n13" from="7970" to="7971">
+<rel label="punct">
+<span from="7971" to="7980"/>
+</rel>
+</span>
+<span id="s304_n14" from="7971" to="7980">
+<rel label="appos">
+<span from="7961" to="7962"/>
+</rel>
+</span>
+<span id="s304_n15" from="7981" to="7986">
+<rel label="det">
+<span from="7987" to="7993"/>
+</rel>
+</span>
+<span id="s304_n16" from="7987" to="7993">
+<rel label="nmod">
+<span from="7971" to="7980"/>
+</rel>
+</span>
+<span id="s304_n17" from="7994" to="8004">
+<rel label="flat:name">
+<span from="7987" to="7993"/>
+</rel>
+</span>
+<span id="s304_n18" from="8004" to="8005">
+<rel label="punct">
+<span from="7914" to="7918"/>
+</rel>
+</span>
+<span id="s305_n1" from="8006" to="8011">
+<rel label="advmod">
+<span from="8036" to="8054"/>
+</rel>
+</span>
+<span id="s305_n2" from="8012" to="8017">
+<rel label="advmod">
+<span from="8036" to="8054"/>
+</rel>
+</span>
+<span id="s305_n3" from="8018" to="8021">
+<rel label="case">
+<span from="8022" to="8031"/>
+</rel>
+</span>
+<span id="s305_n4" from="8022" to="8031">
+<rel label="nmod">
+<span from="8036" to="8054"/>
+</rel>
+</span>
+<span id="s305_n5" from="8032" to="8035">
+<rel label="det">
+<span from="8036" to="8054"/>
+</rel>
+</span>
+<span id="s305_n6" from="8036" to="8054">
+<rel label="root">
+<span from="8006" to="8100"/>
+</rel>
+</span>
+<span id="s305_n7" from="8055" to="8070">
+<rel label="advmod">
+<span from="8036" to="8054"/>
+</rel>
+</span>
+<span id="s305_n8" from="8070" to="8071">
+<rel label="punct">
+<span from="8090" to="8099"/>
+</rel>
+</span>
+<span id="s305_n9" from="8072" to="8074">
+<rel label="case">
+<span from="8075" to="8077"/>
+</rel>
+</span>
+<span id="s305_n10" from="8075" to="8077">
+<rel label="nmod">
+<span from="8090" to="8099"/>
+</rel>
+</span>
+<span id="s305_n11" from="8078" to="8089">
+<rel label="amod">
+<span from="8090" to="8099"/>
+</rel>
+</span>
+<span id="s305_n12" from="8090" to="8099">
+<rel label="appos">
+<span from="8036" to="8054"/>
+</rel>
+</span>
+<span id="s305_n13" from="8099" to="8100">
+<rel label="punct">
+<span from="8036" to="8054"/>
+</rel>
+</span>
+<span id="s306_n1" from="8101" to="8104">
+<rel label="det">
+<span from="8105" to="8109"/>
+</rel>
+</span>
+<span id="s306_n2" from="8105" to="8109">
+<rel label="root">
+<span from="8101" to="8137"/>
+</rel>
+</span>
+<span id="s306_n3" from="8110" to="8111">
+<rel label="punct">
+<span from="8111" to="8127"/>
+</rel>
+</span>
+<span id="s306_n4" from="8111" to="8127">
+<rel label="appos">
+<span from="8105" to="8109"/>
+</rel>
+</span>
+<span id="s306_n5" from="8127" to="8128">
+<rel label="punct">
+<span from="8133" to="8136"/>
+</rel>
+</span>
+<span id="s306_n6" from="8129" to="8132">
+<rel label="case">
+<span from="8133" to="8136"/>
+</rel>
+</span>
+<span id="s306_n7" from="8133" to="8136">
+<rel label="nmod">
+<span from="8111" to="8127"/>
+</rel>
+</span>
+<span id="s306_n8" from="8136" to="8137">
+<rel label="punct">
+<span from="8105" to="8109"/>
+</rel>
+</span>
+<span id="s307_n1" from="8138" to="8142">
+<rel label="root">
+<span from="8138" to="8381"/>
+</rel>
+</span>
+<span id="s307_n2" from="8143" to="8144">
+<rel label="flat">
+<span from="8138" to="8142"/>
+</rel>
+</span>
+<span id="s307_n3" from="8144" to="8150">
+<rel label="appos">
+<span from="8138" to="8142"/>
+</rel>
+</span>
+<span id="s307_n4" from="8150" to="8151">
+<rel label="punct">
+<span from="8152" to="8159"/>
+</rel>
+</span>
+<span id="s307_n5" from="8152" to="8159">
+<rel label="appos">
+<span from="8138" to="8142"/>
+</rel>
+</span>
+<span id="s307_n6" from="8159" to="8160">
+<rel label="flat">
+<span from="8152" to="8159"/>
+</rel>
+</span>
+<span id="s307_n7" from="8160" to="8161">
+<rel label="punct">
+<span from="8138" to="8142"/>
+</rel>
+</span>
+<span id="s307_n8" from="8162" to="8170">
+<rel label="parataxis">
+<span from="8138" to="8142"/>
+</rel>
+</span>
+<span id="s307_n9" from="8171" to="8180">
+<rel label="advmod">
+<span from="8201" to="8213"/>
+</rel>
+</span>
+<span id="s307_n10" from="8181" to="8184">
+<rel label="case">
+<span from="8195" to="8200"/>
+</rel>
+</span>
+<span id="s307_n11" from="8185" to="8194">
+<rel label="amod">
+<span from="8195" to="8200"/>
+</rel>
+</span>
+<span id="s307_n12" from="8195" to="8200">
+<rel label="obl">
+<span from="8201" to="8213"/>
+</rel>
+</span>
+<span id="s307_n13" from="8201" to="8213">
+<rel label="amod">
+<span from="8214" to="8228"/>
+</rel>
+</span>
+<span id="s307_n14" from="8214" to="8228">
+<rel label="obj">
+<span from="8162" to="8170"/>
+</rel>
+</span>
+<span id="s307_n15" from="8229" to="8234">
+<rel label="case">
+<span from="8235" to="8251"/>
+</rel>
+</span>
+<span id="s307_n16" from="8235" to="8251">
+<rel label="obl">
+<span from="8162" to="8170"/>
+</rel>
+</span>
+<span id="s307_n17" from="8252" to="8258">
+<rel label="amod">
+<span from="8259" to="8275"/>
+</rel>
+</span>
+<span id="s307_n18" from="8259" to="8275">
+<rel label="nmod">
+<span from="8235" to="8251"/>
+</rel>
+</span>
+<span id="s307_n19" from="8275" to="8276">
+<rel label="punct">
+<span from="8138" to="8142"/>
+</rel>
+</span>
+<span id="s307_n20" from="8277" to="8280">
+<rel label="det">
+<span from="8333" to="8343"/>
+</rel>
+</span>
+<span id="s307_n21" from="8281" to="8285">
+<rel label="advmod">
+<span from="8290" to="8310"/>
+</rel>
+</span>
+<span id="s307_n22" from="8286" to="8289">
+<rel label="case">
+<span from="8290" to="8310"/>
+</rel>
+</span>
+<span id="s307_n23" from="8290" to="8310">
+<rel label="obl">
+<span from="8311" to="8320"/>
+</rel>
+</span>
+<span id="s307_n24" from="8311" to="8320">
+<rel label="amod">
+<span from="8333" to="8343"/>
+</rel>
+</span>
+<span id="s307_n25" from="8321" to="8332">
+<rel label="amod">
+<span from="8333" to="8343"/>
+</rel>
+</span>
+<span id="s307_n26" from="8333" to="8343">
+<rel label="appos">
+<span from="8235" to="8251"/>
+</rel>
+</span>
+<span id="s307_n27" from="8344" to="8347">
+<rel label="cc">
+<span from="8352" to="8365"/>
+</rel>
+</span>
+<span id="s307_n28" from="8348" to="8351">
+<rel label="det">
+<span from="8352" to="8365"/>
+</rel>
+</span>
+<span id="s307_n29" from="8352" to="8365">
+<rel label="conj">
+<span from="8333" to="8343"/>
+</rel>
+</span>
+<span id="s307_n30" from="8366" to="8380">
+<rel label="flat:name">
+<span from="8352" to="8365"/>
+</rel>
+</span>
+<span id="s307_n31" from="8380" to="8381">
+<rel label="punct">
+<span from="8138" to="8142"/>
+</rel>
+</span>
+<span id="s308_n1" from="8382" to="8390">
+<rel label="case">
+<span from="8406" to="8425"/>
+</rel>
+</span>
+<span id="s308_n2" from="8391" to="8396">
+<rel label="det">
+<span from="8406" to="8425"/>
+</rel>
+</span>
+<span id="s308_n3" from="8397" to="8405">
+<rel label="amod">
+<span from="8406" to="8425"/>
+</rel>
+</span>
+<span id="s308_n4" from="8406" to="8425">
+<rel label="obl">
+<span from="8426" to="8434"/>
+</rel>
+</span>
+<span id="s308_n5" from="8426" to="8434">
+<rel label="root">
+<span from="8382" to="8525"/>
+</rel>
+</span>
+<span id="s308_n6" from="8435" to="8447">
+<rel label="nsubj">
+<span from="8426" to="8434"/>
+</rel>
+</span>
+<span id="s308_n7" from="8448" to="8451">
+<rel label="case">
+<span from="8484" to="8491"/>
+</rel>
+</span>
+<span id="s308_n8" from="8452" to="8455">
+<rel label="case">
+<span from="8456" to="8460"/>
+</rel>
+</span>
+<span id="s308_n9" from="8456" to="8460">
+<rel label="obl">
+<span from="8471" to="8482"/>
+</rel>
+</span>
+<span id="s308_n10" from="8461" to="8464">
+<rel label="det">
+<span from="8465" to="8470"/>
+</rel>
+</span>
+<span id="s308_n11" from="8465" to="8470">
+<rel label="nmod">
+<span from="8456" to="8460"/>
+</rel>
+</span>
+<span id="s308_n12" from="8471" to="8482">
+<rel label="amod">
+<span from="8484" to="8491"/>
+</rel>
+</span>
+<span id="s308_n13" from="8483" to="8484">
+<rel label="punct">
+<span from="8484" to="8491"/>
+</rel>
+</span>
+<span id="s308_n14" from="8484" to="8491">
+<rel label="nmod">
+<span from="8435" to="8447"/>
+</rel>
+</span>
+<span id="s308_n15" from="8491" to="8492">
+<rel label="punct">
+<span from="8484" to="8491"/>
+</rel>
+</span>
+<span id="s308_n16" from="8492" to="8493">
+<rel label="punct">
+<span from="8520" to="8524"/>
+</rel>
+</span>
+<span id="s308_n17" from="8493" to="8496">
+<rel label="nsubj">
+<span from="8520" to="8524"/>
+</rel>
+</span>
+<span id="s308_n18" from="8497" to="8500">
+<rel label="det">
+<span from="8501" to="8509"/>
+</rel>
+</span>
+<span id="s308_n19" from="8501" to="8509">
+<rel label="iobj">
+<span from="8520" to="8524"/>
+</rel>
+</span>
+<span id="s308_n20" from="8510" to="8513">
+<rel label="det">
+<span from="8514" to="8519"/>
+</rel>
+</span>
+<span id="s308_n21" from="8514" to="8519">
+<rel label="obj">
+<span from="8520" to="8524"/>
+</rel>
+</span>
+<span id="s308_n22" from="8520" to="8524">
+<rel label="acl">
+<span from="8484" to="8491"/>
+</rel>
+</span>
+<span id="s308_n23" from="8524" to="8525">
+<rel label="punct">
+<span from="8426" to="8434"/>
+</rel>
+</span>
+<span id="s309_n1" from="8526" to="8531">
+<rel label="case">
+<span from="8532" to="8541"/>
+</rel>
+</span>
+<span id="s309_n2" from="8532" to="8541">
+<rel label="nmod">
+<span from="8589" to="8595"/>
+</rel>
+</span>
+<span id="s309_n3" from="8542" to="8545">
+<rel label="det">
+<span from="8546" to="8558"/>
+</rel>
+</span>
+<span id="s309_n4" from="8546" to="8558">
+<rel label="nmod">
+<span from="8532" to="8541"/>
+</rel>
+</span>
+<span id="s309_n5" from="8559" to="8563">
+<rel label="aux">
+<span from="8589" to="8595"/>
+</rel>
+</span>
+<span id="s309_n6" from="8564" to="8567">
+<rel label="det">
+<span from="8568" to="8588"/>
+</rel>
+</span>
+<span id="s309_n7" from="8568" to="8588">
+<rel label="nsubj">
+<span from="8589" to="8595"/>
+</rel>
+</span>
+<span id="s309_n8" from="8589" to="8595">
+<rel label="root">
+<span from="8526" to="8651"/>
+</rel>
+</span>
+<span id="s309_n9" from="8595" to="8596">
+<rel label="punct">
+<span from="8631" to="8637"/>
+</rel>
+</span>
+<span id="s309_n10" from="8597" to="8600">
+<rel label="det">
+<span from="8601" to="8614"/>
+</rel>
+</span>
+<span id="s309_n11" from="8601" to="8614">
+<rel label="nsubj">
+<span from="8631" to="8637"/>
+</rel>
+</span>
+<span id="s309_n12" from="8615" to="8623">
+<rel label="amod">
+<span from="8624" to="8630"/>
+</rel>
+</span>
+<span id="s309_n13" from="8624" to="8630">
+<rel label="nmod">
+<span from="8601" to="8614"/>
+</rel>
+</span>
+<span id="s309_n14" from="8631" to="8637">
+<rel label="conj">
+<span from="8589" to="8595"/>
+</rel>
+</span>
+<span id="s309_n15" from="8638" to="8650">
+<rel label="xcomp">
+<span from="8631" to="8637"/>
+</rel>
+</span>
+<span id="s309_n16" from="8650" to="8651">
+<rel label="punct">
+<span from="8589" to="8595"/>
+</rel>
+</span>
+<span id="s310_n1" from="8652" to="8656">
+<rel label="nsubj">
+<span from="8707" to="8716"/>
+</rel>
+</span>
+<span id="s310_n2" from="8657" to="8661">
+<rel label="aux">
+<span from="8707" to="8716"/>
+</rel>
+</span>
+<span id="s310_n3" from="8662" to="8668">
+<rel label="cc">
+<span from="8673" to="8679"/>
+</rel>
+</span>
+<span id="s310_n4" from="8669" to="8672">
+<rel label="case">
+<span from="8673" to="8679"/>
+</rel>
+</span>
+<span id="s310_n5" from="8673" to="8679">
+<rel label="obl">
+<span from="8707" to="8716"/>
+</rel>
+</span>
+<span id="s310_n6" from="8680" to="8683">
+<rel label="case">
+<span from="8689" to="8706"/>
+</rel>
+</span>
+<span id="s310_n7" from="8684" to="8688">
+<rel label="advmod">
+<span from="8689" to="8706"/>
+</rel>
+</span>
+<span id="s310_n8" from="8689" to="8706">
+<rel label="obl">
+<span from="8673" to="8679"/>
+</rel>
+</span>
+<span id="s310_n9" from="8707" to="8716">
+<rel label="root">
+<span from="8652" to="8717"/>
+</rel>
+</span>
+<span id="s310_n10" from="8716" to="8717">
+<rel label="punct">
+<span from="8707" to="8716"/>
+</rel>
+</span>
+<span id="s311_n1" from="8718" to="8726">
+<rel label="amod">
+<span from="8727" to="8734"/>
+</rel>
+</span>
+<span id="s311_n2" from="8727" to="8734">
+<rel label="nsubj">
+<span from="8825" to="8831"/>
+</rel>
+</span>
+<span id="s311_n3" from="8735" to="8738">
+<rel label="case">
+<span from="8739" to="8744"/>
+</rel>
+</span>
+<span id="s311_n4" from="8739" to="8744">
+<rel label="nmod">
+<span from="8727" to="8734"/>
+</rel>
+</span>
+<span id="s311_n5" from="8745" to="8751">
+<rel label="cc">
+<span from="8808" to="8818"/>
+</rel>
+</span>
+<span id="s311_n6" from="8752" to="8755">
+<rel label="det">
+<span from="8767" to="8777"/>
+</rel>
+</span>
+<span id="s311_n7" from="8756" to="8766">
+<rel label="amod">
+<span from="8767" to="8777"/>
+</rel>
+</span>
+<span id="s311_n8" from="8767" to="8777">
+<rel label="nsubj:pass">
+<span from="8808" to="8818"/>
+</rel>
+</span>
+<span id="s311_n9" from="8778" to="8781">
+<rel label="case">
+<span from="8791" to="8795"/>
+</rel>
+</span>
+<span id="s311_n10" from="8782" to="8786">
+<rel label="advmod">
+<span from="8791" to="8795"/>
+</rel>
+</span>
+<span id="s311_n11" from="8787" to="8790">
+<rel label="det">
+<span from="8791" to="8795"/>
+</rel>
+</span>
+<span id="s311_n12" from="8791" to="8795">
+<rel label="obl">
+<span from="8767" to="8777"/>
+</rel>
+</span>
+<span id="s311_n13" from="8796" to="8807">
+<rel label="advmod">
+<span from="8808" to="8818"/>
+</rel>
+</span>
+<span id="s311_n14" from="8808" to="8818">
+<rel label="acl">
+<span from="8727" to="8734"/>
+</rel>
+</span>
+<span id="s311_n15" from="8819" to="8823">
+<rel label="aux:pass">
+<span from="8808" to="8818"/>
+</rel>
+</span>
+<span id="s311_n16" from="8823" to="8824">
+<rel label="punct">
+<span from="8808" to="8818"/>
+</rel>
+</span>
+<span id="s311_n17" from="8825" to="8831">
+<rel label="root">
+<span from="8718" to="8841"/>
+</rel>
+</span>
+<span id="s311_n18" from="8832" to="8840">
+<rel label="xcomp">
+<span from="8825" to="8831"/>
+</rel>
+</span>
+<span id="s311_n19" from="8840" to="8841">
+<rel label="punct">
+<span from="8825" to="8831"/>
+</rel>
+</span>
+<span id="s312_n1" from="8843" to="8858">
+<rel label="root">
+<span from="8843" to="9135"/>
+</rel>
+</span>
+<span id="s312_n2" from="8860" to="8874">
+<rel label="amod">
+<span from="8875" to="8882"/>
+</rel>
+</span>
+<span id="s312_n3" from="8875" to="8882">
+<rel label="nmod">
+<span from="8843" to="8858"/>
+</rel>
+</span>
+<span id="s312_n4" from="8883" to="8894">
+<rel label="amod">
+<span from="8895" to="8910"/>
+</rel>
+</span>
+<span id="s312_n5" from="8895" to="8910">
+<rel label="appos">
+<span from="8875" to="8882"/>
+</rel>
+</span>
+<span id="s312_n6" from="8912" to="8914">
+<rel label="case">
+<span from="8914" to="8919"/>
+</rel>
+</span>
+<span id="s312_n7" from="8914" to="8919">
+<rel label="appos">
+<span from="8895" to="8910"/>
+</rel>
+</span>
+<span id="s312_n8" from="8919" to="8921">
+<rel label="flat:name">
+<span from="8914" to="8919"/>
+</rel>
+</span>
+<span id="s312_n9" from="8921" to="8942">
+<rel label="flat:name">
+<span from="8914" to="8919"/>
+</rel>
+</span>
+<span id="s312_n10" from="8942" to="8943">
+<rel label="appos">
+<span from="8914" to="8919"/>
+</rel>
+</span>
+<span id="s312_n11" from="8943" to="8947">
+<rel label="appos">
+<span from="8914" to="8919"/>
+</rel>
+</span>
+<span id="s312_n12" from="8947" to="8948">
+<rel label="flat">
+<span from="8919" to="8921"/>
+</rel>
+</span>
+<span id="s312_n13" from="8948" to="8951">
+<rel label="det">
+<span from="8952" to="8968"/>
+</rel>
+</span>
+<span id="s312_n14" from="8952" to="8968">
+<rel label="appos">
+<span from="8914" to="8919"/>
+</rel>
+</span>
+<span id="s312_n15" from="8969" to="8972">
+<rel label="case">
+<span from="8982" to="9009"/>
+</rel>
+</span>
+<span id="s312_n16" from="8973" to="8981">
+<rel label="amod">
+<span from="8982" to="9009"/>
+</rel>
+</span>
+<span id="s312_n17" from="8982" to="9009">
+<rel label="nmod">
+<span from="8952" to="8968"/>
+</rel>
+</span>
+<span id="s312_n18" from="9010" to="9011">
+<rel label="punct">
+<span from="9011" to="9028"/>
+</rel>
+</span>
+<span id="s312_n19" from="9011" to="9028">
+<rel label="appos">
+<span from="8982" to="9009"/>
+</rel>
+</span>
+<span id="s312_n20" from="9028" to="9029">
+<rel label="punct">
+<span from="9011" to="9028"/>
+</rel>
+</span>
+<span id="s312_n21" from="9029" to="9030">
+<rel label="punct">
+<span from="8843" to="8858"/>
+</rel>
+</span>
+<span id="s312_n22" from="9031" to="9040">
+<rel label="advmod">
+<span from="9052" to="9056"/>
+</rel>
+</span>
+<span id="s312_n23" from="9041" to="9043">
+<rel label="advmod">
+<span from="9044" to="9051"/>
+</rel>
+</span>
+<span id="s312_n24" from="9044" to="9051">
+<rel label="amod">
+<span from="9052" to="9056"/>
+</rel>
+</span>
+<span id="s312_n25" from="9052" to="9056">
+<rel label="obl">
+<span from="9126" to="9134"/>
+</rel>
+</span>
+<span id="s312_n26" from="9057" to="9060">
+<rel label="det">
+<span from="9061" to="9070"/>
+</rel>
+</span>
+<span id="s312_n27" from="9061" to="9070">
+<rel label="nmod">
+<span from="9052" to="9056"/>
+</rel>
+</span>
+<span id="s312_n28" from="9071" to="9074">
+<rel label="det">
+<span from="9075" to="9090"/>
+</rel>
+</span>
+<span id="s312_n29" from="9075" to="9090">
+<rel label="obj">
+<span from="9126" to="9134"/>
+</rel>
+</span>
+<span id="s312_n30" from="9091" to="9093">
+<rel label="case">
+<span from="9098" to="9107"/>
+</rel>
+</span>
+<span id="s312_n31" from="9094" to="9097">
+<rel label="det">
+<span from="9098" to="9107"/>
+</rel>
+</span>
+<span id="s312_n32" from="9098" to="9107">
+<rel label="obl">
+<span from="9126" to="9134"/>
+</rel>
+</span>
+<span id="s312_n33" from="9108" to="9111">
+<rel label="det">
+<span from="9112" to="9122"/>
+</rel>
+</span>
+<span id="s312_n34" from="9112" to="9122">
+<rel label="nmod">
+<span from="9098" to="9107"/>
+</rel>
+</span>
+<span id="s312_n35" from="9123" to="9125">
+<rel label="mark">
+<span from="9126" to="9134"/>
+</rel>
+</span>
+<span id="s312_n36" from="9126" to="9134">
+<rel label="parataxis">
+<span from="8843" to="8858"/>
+</rel>
+</span>
+<span id="s312_n37" from="9134" to="9135">
+<rel label="punct">
+<span from="8843" to="8858"/>
+</rel>
+</span>
+<span id="s313_n1" from="9135" to="9137">
+<rel label="advmod">
+<span from="9255" to="9262"/>
+</rel>
+</span>
+<span id="s313_n2" from="9138" to="9142">
+<rel label="mark">
+<span from="9175" to="9183"/>
+</rel>
+</span>
+<span id="s313_n3" from="9143" to="9147">
+<rel label="det">
+<span from="9148" to="9153"/>
+</rel>
+</span>
+<span id="s313_n4" from="9148" to="9153">
+<rel label="nsubj">
+<span from="9175" to="9183"/>
+</rel>
+</span>
+<span id="s313_n5" from="9154" to="9158">
+<rel label="det">
+<span from="9159" to="9174"/>
+</rel>
+</span>
+<span id="s313_n6" from="9159" to="9174">
+<rel label="obj">
+<span from="9175" to="9183"/>
+</rel>
+</span>
+<span id="s313_n7" from="9175" to="9183">
+<rel label="advcl">
+<span from="9255" to="9262"/>
+</rel>
+</span>
+<span id="s313_n8" from="9183" to="9184">
+<rel label="punct">
+<span from="9175" to="9183"/>
+</rel>
+</span>
+<span id="s313_n9" from="9184" to="9188">
+<rel label="aux:pass">
+<span from="9255" to="9262"/>
+</rel>
+</span>
+<span id="s313_n10" from="9189" to="9192">
+<rel label="det">
+<span from="9193" to="9197"/>
+</rel>
+</span>
+<span id="s313_n11" from="9193" to="9197">
+<rel label="nsubj:pass">
+<span from="9255" to="9262"/>
+</rel>
+</span>
+<span id="s313_n12" from="9198" to="9203">
+<rel label="advmod">
+<span from="9214" to="9219"/>
+</rel>
+</span>
+<span id="s313_n13" from="9204" to="9207">
+<rel label="case">
+<span from="9214" to="9219"/>
+</rel>
+</span>
+<span id="s313_n14" from="9208" to="9213">
+<rel label="det">
+<span from="9214" to="9219"/>
+</rel>
+</span>
+<span id="s313_n15" from="9214" to="9219">
+<rel label="obl">
+<span from="9255" to="9262"/>
+</rel>
+</span>
+<span id="s313_n16" from="9219" to="9220">
+<rel label="punct">
+<span from="9239" to="9254"/>
+</rel>
+</span>
+<span id="s313_n17" from="9221" to="9228">
+<rel label="cc">
+<span from="9239" to="9254"/>
+</rel>
+</span>
+<span id="s313_n18" from="9229" to="9232">
+<rel label="case">
+<span from="9239" to="9254"/>
+</rel>
+</span>
+<span id="s313_n19" from="9233" to="9238">
+<rel label="det">
+<span from="9239" to="9254"/>
+</rel>
+</span>
+<span id="s313_n20" from="9239" to="9254">
+<rel label="conj">
+<span from="9214" to="9219"/>
+</rel>
+</span>
+<span id="s313_n21" from="9255" to="9262">
+<rel label="root">
+<span from="9135" to="9305"/>
+</rel>
+</span>
+<span id="s313_n22" from="9263" to="9264">
+<rel label="cc">
+<span from="9294" to="9304"/>
+</rel>
+</span>
+<span id="s313_n23" from="9265" to="9267">
+<rel label="nsubj">
+<span from="9294" to="9304"/>
+</rel>
+</span>
+<span id="s313_n24" from="9268" to="9271">
+<rel label="cop">
+<span from="9294" to="9304"/>
+</rel>
+</span>
+<span id="s313_n25" from="9272" to="9277">
+<rel label="advmod">
+<span from="9294" to="9304"/>
+</rel>
+</span>
+<span id="s313_n26" from="9278" to="9281">
+<rel label="det">
+<span from="9294" to="9304"/>
+</rel>
+</span>
+<span id="s313_n27" from="9282" to="9293">
+<rel label="amod">
+<span from="9294" to="9304"/>
+</rel>
+</span>
+<span id="s313_n28" from="9294" to="9304">
+<rel label="conj">
+<span from="9255" to="9262"/>
+</rel>
+</span>
+<span id="s313_n29" from="9304" to="9305">
+<rel label="punct">
+<span from="9255" to="9262"/>
+</rel>
+</span>
+<span id="s314_n1" from="9306" to="9309">
+<rel label="det">
+<span from="9310" to="9318"/>
+</rel>
+</span>
+<span id="s314_n2" from="9310" to="9318">
+<rel label="nsubj">
+<span from="9371" to="9374"/>
+</rel>
+</span>
+<span id="s314_n3" from="9319" to="9322">
+<rel label="det">
+<span from="9323" to="9344"/>
+</rel>
+</span>
+<span id="s314_n4" from="9323" to="9344">
+<rel label="nmod">
+<span from="9310" to="9318"/>
+</rel>
+</span>
+<span id="s314_n5" from="9345" to="9350">
+<rel label="case">
+<span from="9365" to="9370"/>
+</rel>
+</span>
+<span id="s314_n6" from="9351" to="9354">
+<rel label="det">
+<span from="9365" to="9370"/>
+</rel>
+</span>
+<span id="s314_n7" from="9355" to="9364">
+<rel label="amod">
+<span from="9365" to="9370"/>
+</rel>
+</span>
+<span id="s314_n8" from="9365" to="9370">
+<rel label="nmod">
+<span from="9323" to="9344"/>
+</rel>
+</span>
+<span id="s314_n9" from="9371" to="9374">
+<rel label="root">
+<span from="9306" to="9582"/>
+</rel>
+</span>
+<span id="s314_n10" from="9375" to="9379">
+<rel label="advmod">
+<span from="9371" to="9374"/>
+</rel>
+</span>
+<span id="s314_n11" from="9380" to="9383">
+<rel label="case">
+<span from="9388" to="9404"/>
+</rel>
+</span>
+<span id="s314_n12" from="9384" to="9387">
+<rel label="det">
+<span from="9388" to="9404"/>
+</rel>
+</span>
+<span id="s314_n13" from="9388" to="9404">
+<rel label="obl">
+<span from="9371" to="9374"/>
+</rel>
+</span>
+<span id="s314_n14" from="9404" to="9405">
+<rel label="punct">
+<span from="9410" to="9415"/>
+</rel>
+</span>
+<span id="s314_n15" from="9406" to="9409">
+<rel label="nsubj">
+<span from="9410" to="9415"/>
+</rel>
+</span>
+<span id="s314_n16" from="9410" to="9415">
+<rel label="conj">
+<span from="9371" to="9374"/>
+</rel>
+</span>
+<span id="s314_n17" from="9416" to="9418">
+<rel label="advmod">
+<span from="9419" to="9425"/>
+</rel>
+</span>
+<span id="s314_n18" from="9419" to="9425">
+<rel label="advmod">
+<span from="9468" to="9476"/>
+</rel>
+</span>
+<span id="s314_n19" from="9426" to="9433">
+<rel label="nsubj:pass">
+<span from="9468" to="9476"/>
+</rel>
+</span>
+<span id="s314_n20" from="9434" to="9437">
+<rel label="cc">
+<span from="9444" to="9454"/>
+</rel>
+</span>
+<span id="s314_n21" from="9438" to="9443">
+<rel label="advmod">
+<span from="9444" to="9454"/>
+</rel>
+</span>
+<span id="s314_n22" from="9444" to="9454">
+<rel label="conj">
+<span from="9426" to="9433"/>
+</rel>
+</span>
+<span id="s314_n23" from="9455" to="9458">
+<rel label="case">
+<span from="9459" to="9467"/>
+</rel>
+</span>
+<span id="s314_n24" from="9459" to="9467">
+<rel label="obl">
+<span from="9468" to="9476"/>
+</rel>
+</span>
+<span id="s314_n25" from="9468" to="9476">
+<rel label="xcomp">
+<span from="9410" to="9415"/>
+</rel>
+</span>
+<span id="s314_n26" from="9477" to="9481">
+<rel label="aux:pass">
+<span from="9468" to="9476"/>
+</rel>
+</span>
+<span id="s314_n27" from="9481" to="9482">
+<rel label="punct">
+<span from="9468" to="9476"/>
+</rel>
+</span>
+<span id="s314_n28" from="9483" to="9487">
+<rel label="advmod">
+<span from="9488" to="9492"/>
+</rel>
+</span>
+<span id="s314_n29" from="9488" to="9492">
+<rel label="advmod">
+<span from="9493" to="9496"/>
+</rel>
+</span>
+<span id="s314_n30" from="9493" to="9496">
+<rel label="conj">
+<span from="9410" to="9415"/>
+</rel>
+</span>
+<span id="s314_n31" from="9497" to="9500">
+<rel label="det">
+<span from="9501" to="9510"/>
+</rel>
+</span>
+<span id="s314_n32" from="9501" to="9510">
+<rel label="nsubj">
+<span from="9493" to="9496"/>
+</rel>
+</span>
+<span id="s314_n33" from="9511" to="9513">
+<rel label="case">
+<span from="9514" to="9536"/>
+</rel>
+</span>
+<span id="s314_n34" from="9514" to="9536">
+<rel label="nmod">
+<span from="9501" to="9510"/>
+</rel>
+</span>
+<span id="s314_n35" from="9537" to="9538">
+<rel label="punct">
+<span from="9558" to="9562"/>
+</rel>
+</span>
+<span id="s314_n36" from="9538" to="9552">
+<rel label="advmod">
+<span from="9558" to="9562"/>
+</rel>
+</span>
+<span id="s314_n37" from="9553" to="9557">
+<rel label="case">
+<span from="9558" to="9562"/>
+</rel>
+</span>
+<span id="s314_n38" from="9558" to="9562">
+<rel label="nmod">
+<span from="9514" to="9536"/>
+</rel>
+</span>
+<span id="s314_n39" from="9562" to="9563">
+<rel label="punct">
+<span from="9568" to="9576"/>
+</rel>
+</span>
+<span id="s314_n40" from="9564" to="9567">
+<rel label="case">
+<span from="9568" to="9576"/>
+</rel>
+</span>
+<span id="s314_n41" from="9568" to="9576">
+<rel label="conj">
+<span from="9558" to="9562"/>
+</rel>
+</span>
+<span id="s314_n42" from="9577" to="9580">
+<rel label="case">
+<span from="9568" to="9576"/>
+</rel>
+</span>
+<span id="s314_n43" from="9580" to="9581">
+<rel label="punct">
+<span from="9558" to="9562"/>
+</rel>
+</span>
+<span id="s314_n44" from="9581" to="9582">
+<rel label="punct">
+<span from="9371" to="9374"/>
+</rel>
+</span>
+<span id="s315_n1" from="9583" to="9588">
+<rel label="advmod">
+<span from="9701" to="9709"/>
+</rel>
+</span>
+<span id="s315_n2" from="9589" to="9593">
+<rel label="aux">
+<span from="9701" to="9709"/>
+</rel>
+</span>
+<span id="s315_n3" from="9594" to="9597">
+<rel label="nsubj">
+<span from="9701" to="9709"/>
+</rel>
+</span>
+<span id="s315_n4" from="9598" to="9601">
+<rel label="case">
+<span from="9608" to="9631"/>
+</rel>
+</span>
+<span id="s315_n5" from="9602" to="9607">
+<rel label="det">
+<span from="9608" to="9631"/>
+</rel>
+</span>
+<span id="s315_n6" from="9608" to="9631">
+<rel label="obl">
+<span from="9701" to="9709"/>
+</rel>
+</span>
+<span id="s315_n7" from="9632" to="9635">
+<rel label="det">
+<span from="9636" to="9640"/>
+</rel>
+</span>
+<span id="s315_n8" from="9636" to="9640">
+<rel label="obj">
+<span from="9701" to="9709"/>
+</rel>
+</span>
+<span id="s315_n9" from="9641" to="9646">
+<rel label="det">
+<span from="9654" to="9666"/>
+</rel>
+</span>
+<span id="s315_n10" from="9647" to="9653">
+<rel label="amod">
+<span from="9654" to="9666"/>
+</rel>
+</span>
+<span id="s315_n11" from="9654" to="9666">
+<rel label="nmod">
+<span from="9636" to="9640"/>
+</rel>
+</span>
+<span id="s315_n12" from="9667" to="9672">
+<rel label="advmod">
+<span from="9701" to="9709"/>
+</rel>
+</span>
+<span id="s315_n13" from="9673" to="9676">
+<rel label="case">
+<span from="9687" to="9693"/>
+</rel>
+</span>
+<span id="s315_n14" from="9677" to="9686">
+<rel label="amod">
+<span from="9687" to="9693"/>
+</rel>
+</span>
+<span id="s315_n15" from="9687" to="9693">
+<rel label="obl">
+<span from="9701" to="9709"/>
+</rel>
+</span>
+<span id="s315_n16" from="9694" to="9700">
+<rel label="advmod">
+<span from="9701" to="9709"/>
+</rel>
+</span>
+<span id="s315_n17" from="9701" to="9709">
+<rel label="root">
+<span from="9583" to="9710"/>
+</rel>
+</span>
+<span id="s315_n18" from="9709" to="9710">
+<rel label="punct">
+<span from="9701" to="9709"/>
+</rel>
+</span>
+<span id="s316_n1" from="9711" to="9715">
+<rel label="mark">
+<span from="9738" to="9748"/>
+</rel>
+</span>
+<span id="s316_n2" from="9716" to="9719">
+<rel label="nsubj">
+<span from="9738" to="9748"/>
+</rel>
+</span>
+<span id="s316_n3" from="9720" to="9723">
+<rel label="case">
+<span from="9728" to="9737"/>
+</rel>
+</span>
+<span id="s316_n4" from="9724" to="9727">
+<rel label="det">
+<span from="9728" to="9737"/>
+</rel>
+</span>
+<span id="s316_n5" from="9728" to="9737">
+<rel label="obl">
+<span from="9738" to="9748"/>
+</rel>
+</span>
+<span id="s316_n6" from="9738" to="9748">
+<rel label="advcl">
+<span from="9775" to="9784"/>
+</rel>
+</span>
+<span id="s316_n7" from="9748" to="9749">
+<rel label="punct">
+<span from="9738" to="9748"/>
+</rel>
+</span>
+<span id="s316_n8" from="9750" to="9753">
+<rel label="aux:pass">
+<span from="9775" to="9784"/>
+</rel>
+</span>
+<span id="s316_n9" from="9754" to="9757">
+<rel label="det">
+<span from="9758" to="9762"/>
+</rel>
+</span>
+<span id="s316_n10" from="9758" to="9762">
+<rel label="nsubj:pass">
+<span from="9775" to="9784"/>
+</rel>
+</span>
+<span id="s316_n11" from="9763" to="9774">
+<rel label="advmod">
+<span from="9775" to="9784"/>
+</rel>
+</span>
+<span id="s316_n12" from="9775" to="9784">
+<rel label="root">
+<span from="9711" to="9785"/>
+</rel>
+</span>
+<span id="s316_n13" from="9784" to="9785">
+<rel label="punct">
+<span from="9775" to="9784"/>
+</rel>
+</span>
+<span id="s317_n1" from="9786" to="9803">
+<rel label="obj">
+<span from="9804" to="9808"/>
+</rel>
+</span>
+<span id="s317_n2" from="9804" to="9808">
+<rel label="root">
+<span from="9786" to="9919"/>
+</rel>
+</span>
+<span id="s317_n3" from="9809" to="9811">
+<rel label="nsubj">
+<span from="9804" to="9808"/>
+</rel>
+</span>
+<span id="s317_n4" from="9812" to="9817">
+<rel label="advmod">
+<span from="9822" to="9835"/>
+</rel>
+</span>
+<span id="s317_n5" from="9818" to="9821">
+<rel label="advmod">
+<span from="9822" to="9835"/>
+</rel>
+</span>
+<span id="s317_n6" from="9822" to="9835">
+<rel label="iobj">
+<span from="9804" to="9808"/>
+</rel>
+</span>
+<span id="s317_n7" from="9835" to="9836">
+<rel label="punct">
+<span from="9872" to="9881"/>
+</rel>
+</span>
+<span id="s317_n8" from="9837" to="9844">
+<rel label="cc">
+<span from="9872" to="9881"/>
+</rel>
+</span>
+<span id="s317_n9" from="9845" to="9849">
+<rel label="advmod">
+<span from="9872" to="9881"/>
+</rel>
+</span>
+<span id="s317_n10" from="9850" to="9853">
+<rel label="case">
+<span from="9872" to="9881"/>
+</rel>
+</span>
+<span id="s317_n11" from="9854" to="9861">
+<rel label="amod">
+<span from="9872" to="9881"/>
+</rel>
+</span>
+<span id="s317_n12" from="9862" to="9871">
+<rel label="amod">
+<span from="9872" to="9881"/>
+</rel>
+</span>
+<span id="s317_n13" from="9872" to="9881">
+<rel label="conj">
+<span from="9822" to="9835"/>
+</rel>
+</span>
+<span id="s317_n14" from="9881" to="9882">
+<rel label="punct">
+<span from="9893" to="9901"/>
+</rel>
+</span>
+<span id="s317_n15" from="9883" to="9885">
+<rel label="case">
+<span from="9886" to="9888"/>
+</rel>
+</span>
+<span id="s317_n16" from="9886" to="9888">
+<rel label="nmod">
+<span from="9893" to="9901"/>
+</rel>
+</span>
+<span id="s317_n17" from="9889" to="9892">
+<rel label="case">
+<span from="9893" to="9901"/>
+</rel>
+</span>
+<span id="s317_n18" from="9893" to="9901">
+<rel label="nmod">
+<span from="9872" to="9881"/>
+</rel>
+</span>
+<span id="s317_n19" from="9902" to="9906">
+<rel label="cc">
+<span from="9907" to="9918"/>
+</rel>
+</span>
+<span id="s317_n20" from="9907" to="9918">
+<rel label="conj">
+<span from="9893" to="9901"/>
+</rel>
+</span>
+<span id="s317_n21" from="9918" to="9919">
+<rel label="punct">
+<span from="9804" to="9808"/>
+</rel>
+</span>
+<span id="s318_n1" from="9920" to="9923">
+<rel label="nsubj:pass">
+<span from="10044" to="10052"/>
+</rel>
+</span>
+<span id="s318_n2" from="9924" to="9928">
+<rel label="aux">
+<span from="10044" to="10052"/>
+</rel>
+</span>
+<span id="s318_n3" from="9929" to="9935">
+<rel label="advmod">
+<span from="10044" to="10052"/>
+</rel>
+</span>
+<span id="s318_n4" from="9936" to="9937">
+<rel label="advmod">
+<span from="10044" to="10052"/>
+</rel>
+</span>
+<span id="s318_n5" from="9938" to="9941">
+<rel label="case">
+<span from="9954" to="9977"/>
+</rel>
+</span>
+<span id="s318_n6" from="9942" to="9945">
+<rel label="det">
+<span from="9954" to="9977"/>
+</rel>
+</span>
+<span id="s318_n7" from="9946" to="9953">
+<rel label="amod">
+<span from="9954" to="9977"/>
+</rel>
+</span>
+<span id="s318_n8" from="9954" to="9977">
+<rel label="obl">
+<span from="10044" to="10052"/>
+</rel>
+</span>
+<span id="s318_n9" from="9978" to="9979">
+<rel label="advmod">
+<span from="10044" to="10052"/>
+</rel>
+</span>
+<span id="s318_n10" from="9980" to="9985">
+<rel label="case">
+<span from="9996" to="10005"/>
+</rel>
+</span>
+<span id="s318_n11" from="9986" to="9995">
+<rel label="amod">
+<span from="9996" to="10005"/>
+</rel>
+</span>
+<span id="s318_n12" from="9996" to="10005">
+<rel label="obl">
+<span from="10044" to="10052"/>
+</rel>
+</span>
+<span id="s318_n13" from="10006" to="10009">
+<rel label="det">
+<span from="10010" to="10016"/>
+</rel>
+</span>
+<span id="s318_n14" from="10010" to="10016">
+<rel label="nmod">
+<span from="9996" to="10005"/>
+</rel>
+</span>
+<span id="s318_n15" from="10017" to="10022">
+<rel label="case">
+<span from="10027" to="10043"/>
+</rel>
+</span>
+<span id="s318_n16" from="10023" to="10026">
+<rel label="det">
+<span from="10027" to="10043"/>
+</rel>
+</span>
+<span id="s318_n17" from="10027" to="10043">
+<rel label="nmod">
+<span from="9996" to="10005"/>
+</rel>
+</span>
+<span id="s318_n18" from="10044" to="10052">
+<rel label="root">
+<span from="9920" to="10075"/>
+</rel>
+</span>
+<span id="s318_n19" from="10053" to="10059">
+<rel label="aux:pass">
+<span from="10044" to="10052"/>
+</rel>
+</span>
+<span id="s318_n20" from="10059" to="10060">
+<rel label="punct">
+<span from="10060" to="10073"/>
+</rel>
+</span>
+<span id="s318_n21" from="10060" to="10073">
+<rel label="parataxis">
+<span from="10044" to="10052"/>
+</rel>
+</span>
+<span id="s318_n22" from="10073" to="10074">
+<rel label="punct">
+<span from="10060" to="10073"/>
+</rel>
+</span>
+<span id="s318_n23" from="10074" to="10075">
+<rel label="punct">
+<span from="10044" to="10052"/>
+</rel>
+</span>
+<span id="s319_n1" from="10076" to="10091">
+<rel label="nsubj">
+<span from="10131" to="10143"/>
+</rel>
+</span>
+<span id="s319_n2" from="10092" to="10096">
+<rel label="cop">
+<span from="10131" to="10143"/>
+</rel>
+</span>
+<span id="s319_n3" from="10097" to="10101">
+<rel label="advmod">
+<span from="10106" to="10114"/>
+</rel>
+</span>
+<span id="s319_n4" from="10102" to="10105">
+<rel label="case">
+<span from="10106" to="10114"/>
+</rel>
+</span>
+<span id="s319_n5" from="10106" to="10114">
+<rel label="obl">
+<span from="10131" to="10143"/>
+</rel>
+</span>
+<span id="s319_n6" from="10115" to="10118">
+<rel label="case">
+<span from="10119" to="10130"/>
+</rel>
+</span>
+<span id="s319_n7" from="10119" to="10130">
+<rel label="nmod">
+<span from="10106" to="10114"/>
+</rel>
+</span>
+<span id="s319_n8" from="10131" to="10143">
+<rel label="root">
+<span from="10076" to="10175"/>
+</rel>
+</span>
+<span id="s319_n9" from="10143" to="10144">
+<rel label="punct">
+<span from="10162" to="10174"/>
+</rel>
+</span>
+<span id="s319_n10" from="10145" to="10147">
+<rel label="mark">
+<span from="10162" to="10174"/>
+</rel>
+</span>
+<span id="s319_n11" from="10148" to="10153">
+<rel label="amod">
+<span from="10154" to="10161"/>
+</rel>
+</span>
+<span id="s319_n12" from="10154" to="10161">
+<rel label="obj">
+<span from="10162" to="10174"/>
+</rel>
+</span>
+<span id="s319_n13" from="10162" to="10174">
+<rel label="ccomp">
+<span from="10131" to="10143"/>
+</rel>
+</span>
+<span id="s319_n14" from="10174" to="10175">
+<rel label="punct">
+<span from="10131" to="10143"/>
+</rel>
+</span>
+<span id="s320_n1" from="10176" to="10179">
+<rel label="case">
+<span from="10188" to="10202"/>
+</rel>
+</span>
+<span id="s320_n2" from="10180" to="10187">
+<rel label="det">
+<span from="10188" to="10202"/>
+</rel>
+</span>
+<span id="s320_n3" from="10188" to="10202">
+<rel label="obl">
+<span from="10301" to="10313"/>
+</rel>
+</span>
+<span id="s320_n4" from="10203" to="10207">
+<rel label="aux:pass">
+<span from="10301" to="10313"/>
+</rel>
+</span>
+<span id="s320_n5" from="10208" to="10215">
+<rel label="advmod">
+<span from="10301" to="10313"/>
+</rel>
+</span>
+<span id="s320_n6" from="10216" to="10234">
+<rel label="nsubj:pass">
+<span from="10301" to="10313"/>
+</rel>
+</span>
+<span id="s320_n7" from="10235" to="10240">
+<rel label="case">
+<span from="10241" to="10250"/>
+</rel>
+</span>
+<span id="s320_n8" from="10241" to="10250">
+<rel label="obl">
+<span from="10301" to="10313"/>
+</rel>
+</span>
+<span id="s320_n9" from="10251" to="10254">
+<rel label="det">
+<span from="10270" to="10275"/>
+</rel>
+</span>
+<span id="s320_n10" from="10255" to="10269">
+<rel label="amod">
+<span from="10270" to="10275"/>
+</rel>
+</span>
+<span id="s320_n11" from="10270" to="10275">
+<rel label="nmod">
+<span from="10241" to="10250"/>
+</rel>
+</span>
+<span id="s320_n12" from="10276" to="10278">
+<rel label="case">
+<span from="10294" to="10300"/>
+</rel>
+</span>
+<span id="s320_n13" from="10279" to="10283">
+<rel label="det">
+<span from="10294" to="10300"/>
+</rel>
+</span>
+<span id="s320_n14" from="10284" to="10293">
+<rel label="amod">
+<span from="10294" to="10300"/>
+</rel>
+</span>
+<span id="s320_n15" from="10294" to="10300">
+<rel label="nmod">
+<span from="10241" to="10250"/>
+</rel>
+</span>
+<span id="s320_n16" from="10301" to="10313">
+<rel label="root">
+<span from="10176" to="10366"/>
+</rel>
+</span>
+<span id="s320_n17" from="10313" to="10314">
+<rel label="punct">
+<span from="10338" to="10365"/>
+</rel>
+</span>
+<span id="s320_n18" from="10315" to="10329">
+<rel label="advmod">
+<span from="10338" to="10365"/>
+</rel>
+</span>
+<span id="s320_n19" from="10330" to="10333">
+<rel label="case">
+<span from="10338" to="10365"/>
+</rel>
+</span>
+<span id="s320_n20" from="10334" to="10337">
+<rel label="det">
+<span from="10338" to="10365"/>
+</rel>
+</span>
+<span id="s320_n21" from="10338" to="10365">
+<rel label="obl">
+<span from="10301" to="10313"/>
+</rel>
+</span>
+<span id="s320_n22" from="10365" to="10366">
+<rel label="punct">
+<span from="10301" to="10313"/>
+</rel>
+</span>
+<span id="s321_n1" from="10367" to="10370">
+<rel label="case">
+<span from="10371" to="10385"/>
+</rel>
+</span>
+<span id="s321_n2" from="10371" to="10385">
+<rel label="obl">
+<span from="10415" to="10425"/>
+</rel>
+</span>
+<span id="s321_n3" from="10386" to="10392">
+<rel label="aux">
+<span from="10415" to="10425"/>
+</rel>
+</span>
+<span id="s321_n4" from="10393" to="10401">
+<rel label="amod">
+<span from="10402" to="10414"/>
+</rel>
+</span>
+<span id="s321_n5" from="10402" to="10414">
+<rel label="nsubj:pass">
+<span from="10415" to="10425"/>
+</rel>
+</span>
+<span id="s321_n6" from="10415" to="10425">
+<rel label="root">
+<span from="10367" to="10467"/>
+</rel>
+</span>
+<span id="s321_n7" from="10426" to="10432">
+<rel label="aux:pass">
+<span from="10415" to="10425"/>
+</rel>
+</span>
+<span id="s321_n8" from="10432" to="10433">
+<rel label="punct">
+<span from="10452" to="10466"/>
+</rel>
+</span>
+<span id="s321_n9" from="10434" to="10436">
+<rel label="mark">
+<span from="10452" to="10466"/>
+</rel>
+</span>
+<span id="s321_n10" from="10437" to="10440">
+<rel label="det">
+<span from="10441" to="10451"/>
+</rel>
+</span>
+<span id="s321_n11" from="10441" to="10451">
+<rel label="obj">
+<span from="10452" to="10466"/>
+</rel>
+</span>
+<span id="s321_n12" from="10452" to="10466">
+<rel label="advcl">
+<span from="10415" to="10425"/>
+</rel>
+</span>
+<span id="s321_n13" from="10466" to="10467">
+<rel label="punct">
+<span from="10415" to="10425"/>
+</rel>
+</span>
+<span id="s322_n1" from="10469" to="10481">
+<rel label="nsubj">
+<span from="10483" to="10491"/>
+</rel>
+</span>
+<span id="s322_n2" from="10483" to="10491">
+<rel label="root">
+<span from="10469" to="10709"/>
+</rel>
+</span>
+<span id="s322_n3" from="10491" to="10492">
+<rel label="case">
+<span from="10495" to="10496"/>
+</rel>
+</span>
+<span id="s322_n4" from="10492" to="10495">
+<rel label="nummod">
+<span from="10495" to="10496"/>
+</rel>
+</span>
+<span id="s322_n5" from="10495" to="10496">
+<rel label="obl">
+<span from="10483" to="10491"/>
+</rel>
+</span>
+<span id="s322_n6" from="10496" to="10500">
+<rel label="appos">
+<span from="10495" to="10496"/>
+</rel>
+</span>
+<span id="s322_n7" from="10500" to="10501">
+<rel label="appos">
+<span from="10495" to="10496"/>
+</rel>
+</span>
+<span id="s322_n8" from="10501" to="10513">
+<rel label="amod">
+<span from="10514" to="10526"/>
+</rel>
+</span>
+<span id="s322_n9" from="10514" to="10526">
+<rel label="appos">
+<span from="10495" to="10496"/>
+</rel>
+</span>
+<span id="s322_n10" from="10527" to="10539">
+<rel label="appos">
+<span from="10514" to="10526"/>
+</rel>
+</span>
+<span id="s322_n11" from="10540" to="10543">
+<rel label="cop">
+<span from="10548" to="10558"/>
+</rel>
+</span>
+<span id="s322_n12" from="10544" to="10547">
+<rel label="det">
+<span from="10548" to="10558"/>
+</rel>
+</span>
+<span id="s322_n13" from="10548" to="10558">
+<rel label="conj">
+<span from="10483" to="10491"/>
+</rel>
+</span>
+<span id="s322_n14" from="10559" to="10562">
+<rel label="cc">
+<span from="10563" to="10571"/>
+</rel>
+</span>
+<span id="s322_n15" from="10563" to="10571">
+<rel label="conj">
+<span from="10548" to="10558"/>
+</rel>
+</span>
+<span id="s322_n16" from="10571" to="10572">
+<rel label="punct">
+<span from="10563" to="10571"/>
+</rel>
+</span>
+<span id="s322_n17" from="10572" to="10576">
+<rel label="mark">
+<span from="10563" to="10571"/>
+</rel>
+</span>
+<span id="s322_n18" from="10577" to="10580">
+<rel label="det">
+<span from="10581" to="10589"/>
+</rel>
+</span>
+<span id="s322_n19" from="10581" to="10589">
+<rel label="nsubj">
+<span from="10563" to="10571"/>
+</rel>
+</span>
+<span id="s322_n20" from="10590" to="10591">
+<rel label="punct">
+<span from="10591" to="10598"/>
+</rel>
+</span>
+<span id="s322_n21" from="10591" to="10598">
+<rel label="appos">
+<span from="10581" to="10589"/>
+</rel>
+</span>
+<span id="s322_n22" from="10599" to="10604">
+<rel label="det">
+<span from="10605" to="10615"/>
+</rel>
+</span>
+<span id="s322_n23" from="10605" to="10615">
+<rel label="nmod">
+<span from="10591" to="10598"/>
+</rel>
+</span>
+<span id="s322_n24" from="10616" to="10619">
+<rel label="case">
+<span from="10624" to="10633"/>
+</rel>
+</span>
+<span id="s322_n25" from="10620" to="10623">
+<rel label="det">
+<span from="10624" to="10633"/>
+</rel>
+</span>
+<span id="s322_n26" from="10624" to="10633">
+<rel label="nmod">
+<span from="10591" to="10598"/>
+</rel>
+</span>
+<span id="s322_n27" from="10633" to="10634">
+<rel label="punct">
+<span from="10591" to="10598"/>
+</rel>
+</span>
+<span id="s322_n28" from="10635" to="10650">
+<rel label="amod">
+<span from="10651" to="10656"/>
+</rel>
+</span>
+<span id="s322_n29" from="10651" to="10656">
+<rel label="nmod">
+<span from="10591" to="10598"/>
+</rel>
+</span>
+<span id="s322_n30" from="10657" to="10660">
+<rel label="case">
+<span from="10665" to="10669"/>
+</rel>
+</span>
+<span id="s322_n31" from="10661" to="10664">
+<rel label="det">
+<span from="10665" to="10669"/>
+</rel>
+</span>
+<span id="s322_n32" from="10665" to="10669">
+<rel label="nmod">
+<span from="10651" to="10656"/>
+</rel>
+</span>
+<span id="s322_n33" from="10670" to="10673">
+<rel label="det">
+<span from="10689" to="10708"/>
+</rel>
+</span>
+<span id="s322_n34" from="10674" to="10688">
+<rel label="amod">
+<span from="10689" to="10708"/>
+</rel>
+</span>
+<span id="s322_n35" from="10689" to="10708">
+<rel label="nmod">
+<span from="10665" to="10669"/>
+</rel>
+</span>
+<span id="s322_n36" from="10708" to="10709">
+<rel label="punct">
+<span from="10483" to="10491"/>
+</rel>
+</span>
+<span id="s323_n1" from="10710" to="10713">
+<rel label="nsubj">
+<span from="10724" to="10729"/>
+</rel>
+</span>
+<span id="s323_n2" from="10714" to="10718">
+<rel label="aux">
+<span from="10724" to="10729"/>
+</rel>
+</span>
+<span id="s323_n3" from="10719" to="10723">
+<rel label="advmod">
+<span from="10724" to="10729"/>
+</rel>
+</span>
+<span id="s323_n4" from="10724" to="10729">
+<rel label="root">
+<span from="10710" to="10791"/>
+</rel>
+</span>
+<span id="s323_n5" from="10729" to="10730">
+<rel label="punct">
+<span from="10724" to="10729"/>
+</rel>
+</span>
+<span id="s323_n6" from="10731" to="10734">
+<rel label="det">
+<span from="10735" to="10752"/>
+</rel>
+</span>
+<span id="s323_n7" from="10735" to="10752">
+<rel label="nsubj">
+<span from="10753" to="10758"/>
+</rel>
+</span>
+<span id="s323_n8" from="10753" to="10758">
+<rel label="parataxis">
+<span from="10724" to="10729"/>
+</rel>
+</span>
+<span id="s323_n9" from="10759" to="10762">
+<rel label="case">
+<span from="10767" to="10771"/>
+</rel>
+</span>
+<span id="s323_n10" from="10763" to="10766">
+<rel label="det">
+<span from="10767" to="10771"/>
+</rel>
+</span>
+<span id="s323_n11" from="10767" to="10771">
+<rel label="obl">
+<span from="10753" to="10758"/>
+</rel>
+</span>
+<span id="s323_n12" from="10772" to="10787">
+<rel label="nmod">
+<span from="10767" to="10771"/>
+</rel>
+</span>
+<span id="s323_n13" from="10788" to="10790">
+<rel label="compound:prt">
+<span from="10753" to="10758"/>
+</rel>
+</span>
+<span id="s323_n14" from="10790" to="10791">
+<rel label="punct">
+<span from="10724" to="10729"/>
+</rel>
+</span>
+<span id="s324_n1" from="10792" to="10795">
+<rel label="nsubj">
+<span from="10796" to="10803"/>
+</rel>
+</span>
+<span id="s324_n2" from="10796" to="10803">
+<rel label="root">
+<span from="10792" to="10932"/>
+</rel>
+</span>
+<span id="s324_n3" from="10803" to="10804">
+<rel label="punct">
+<span from="10885" to="10895"/>
+</rel>
+</span>
+<span id="s324_n4" from="10805" to="10809">
+<rel label="mark">
+<span from="10885" to="10895"/>
+</rel>
+</span>
+<span id="s324_n5" from="10810" to="10814">
+<rel label="advmod">
+<span from="10885" to="10895"/>
+</rel>
+</span>
+<span id="s324_n6" from="10815" to="10818">
+<rel label="det">
+<span from="10819" to="10826"/>
+</rel>
+</span>
+<span id="s324_n7" from="10819" to="10826">
+<rel label="nsubj">
+<span from="10885" to="10895"/>
+</rel>
+</span>
+<span id="s324_n8" from="10827" to="10828">
+<rel label="punct">
+<span from="10828" to="10837"/>
+</rel>
+</span>
+<span id="s324_n9" from="10828" to="10837">
+<rel label="appos">
+<span from="10819" to="10826"/>
+</rel>
+</span>
+<span id="s324_n10" from="10837" to="10838">
+<rel label="punct">
+<span from="10828" to="10837"/>
+</rel>
+</span>
+<span id="s324_n11" from="10838" to="10843">
+<rel label="advmod">
+<span from="10885" to="10895"/>
+</rel>
+</span>
+<span id="s324_n12" from="10844" to="10847">
+<rel label="det">
+<span from="10862" to="10873"/>
+</rel>
+</span>
+<span id="s324_n13" from="10848" to="10861">
+<rel label="amod">
+<span from="10862" to="10873"/>
+</rel>
+</span>
+<span id="s324_n14" from="10862" to="10873">
+<rel label="obj">
+<span from="10885" to="10895"/>
+</rel>
+</span>
+<span id="s324_n15" from="10874" to="10877">
+<rel label="det">
+<span from="10878" to="10884"/>
+</rel>
+</span>
+<span id="s324_n16" from="10878" to="10884">
+<rel label="nmod">
+<span from="10862" to="10873"/>
+</rel>
+</span>
+<span id="s324_n17" from="10885" to="10895">
+<rel label="ccomp">
+<span from="10796" to="10803"/>
+</rel>
+</span>
+<span id="s324_n18" from="10895" to="10896">
+<rel label="punct">
+<span from="10925" to="10931"/>
+</rel>
+</span>
+<span id="s324_n19" from="10897" to="10900">
+<rel label="nsubj">
+<span from="10925" to="10931"/>
+</rel>
+</span>
+<span id="s324_n20" from="10901" to="10910">
+<rel label="advmod">
+<span from="10925" to="10931"/>
+</rel>
+</span>
+<span id="s324_n21" from="10911" to="10914">
+<rel label="det">
+<span from="10915" to="10924"/>
+</rel>
+</span>
+<span id="s324_n22" from="10915" to="10924">
+<rel label="obj">
+<span from="10925" to="10931"/>
+</rel>
+</span>
+<span id="s324_n23" from="10925" to="10931">
+<rel label="acl">
+<span from="10862" to="10873"/>
+</rel>
+</span>
+<span id="s324_n24" from="10931" to="10932">
+<rel label="punct">
+<span from="10796" to="10803"/>
+</rel>
+</span>
+<span id="s325_n1" from="10933" to="10941">
+<rel label="advmod">
+<span from="10956" to="10963"/>
+</rel>
+</span>
+<span id="s325_n2" from="10942" to="10945">
+<rel label="aux:pass">
+<span from="10956" to="10963"/>
+</rel>
+</span>
+<span id="s325_n3" from="10946" to="10949">
+<rel label="det">
+<span from="10950" to="10955"/>
+</rel>
+</span>
+<span id="s325_n4" from="10950" to="10955">
+<rel label="nsubj:pass">
+<span from="10956" to="10963"/>
+</rel>
+</span>
+<span id="s325_n5" from="10956" to="10963">
+<rel label="root">
+<span from="10933" to="11014"/>
+</rel>
+</span>
+<span id="s325_n6" from="10963" to="10964">
+<rel label="punct">
+<span from="11004" to="11013"/>
+</rel>
+</span>
+<span id="s325_n7" from="10965" to="10967">
+<rel label="case">
+<span from="10968" to="10971"/>
+</rel>
+</span>
+<span id="s325_n8" from="10968" to="10971">
+<rel label="obl">
+<span from="11004" to="11013"/>
+</rel>
+</span>
+<span id="s325_n9" from="10972" to="10975">
+<rel label="det">
+<span from="10985" to="10990"/>
+</rel>
+</span>
+<span id="s325_n10" from="10976" to="10984">
+<rel label="amod">
+<span from="10985" to="10990"/>
+</rel>
+</span>
+<span id="s325_n11" from="10985" to="10990">
+<rel label="nsubj">
+<span from="11004" to="11013"/>
+</rel>
+</span>
+<span id="s325_n12" from="10991" to="11003">
+<rel label="obj">
+<span from="11004" to="11013"/>
+</rel>
+</span>
+<span id="s325_n13" from="11004" to="11013">
+<rel label="acl">
+<span from="10950" to="10955"/>
+</rel>
+</span>
+<span id="s325_n14" from="11013" to="11014">
+<rel label="punct">
+<span from="10956" to="10963"/>
+</rel>
+</span>
+<span id="s326_n1" from="11015" to="11021">
+<rel label="det">
+<span from="11022" to="11027"/>
+</rel>
+</span>
+<span id="s326_n2" from="11022" to="11027">
+<rel label="nsubj">
+<span from="11028" to="11032"/>
+</rel>
+</span>
+<span id="s326_n3" from="11028" to="11032">
+<rel label="root">
+<span from="11015" to="11073"/>
+</rel>
+</span>
+<span id="s326_n4" from="11033" to="11037">
+<rel label="advmod">
+<span from="11042" to="11072"/>
+</rel>
+</span>
+<span id="s326_n5" from="11038" to="11041">
+<rel label="case">
+<span from="11042" to="11072"/>
+</rel>
+</span>
+<span id="s326_n6" from="11042" to="11072">
+<rel label="obl">
+<span from="11028" to="11032"/>
+</rel>
+</span>
+<span id="s326_n7" from="11072" to="11073">
+<rel label="punct">
+<span from="11028" to="11032"/>
+</rel>
+</span>
+<span id="s327_n1" from="11074" to="11086">
+<rel label="nsubj">
+<span from="11087" to="11094"/>
+</rel>
+</span>
+<span id="s327_n2" from="11087" to="11094">
+<rel label="root">
+<span from="11074" to="11189"/>
+</rel>
+</span>
+<span id="s327_n3" from="11094" to="11095">
+<rel label="punct">
+<span from="11169" to="11188"/>
+</rel>
+</span>
+<span id="s327_n4" from="11096" to="11100">
+<rel label="mark">
+<span from="11169" to="11188"/>
+</rel>
+</span>
+<span id="s327_n5" from="11101" to="11107">
+<rel label="advmod">
+<span from="11108" to="11114"/>
+</rel>
+</span>
+<span id="s327_n6" from="11108" to="11114">
+<rel label="nsubj">
+<span from="11169" to="11188"/>
+</rel>
+</span>
+<span id="s327_n7" from="11114" to="11115">
+<rel label="punct">
+<span from="11154" to="11158"/>
+</rel>
+</span>
+<span id="s327_n8" from="11116" to="11127">
+<rel label="nsubj">
+<span from="11154" to="11158"/>
+</rel>
+</span>
+<span id="s327_n9" from="11128" to="11133">
+<rel label="advmod">
+<span from="11154" to="11158"/>
+</rel>
+</span>
+<span id="s327_n10" from="11134" to="11139">
+<rel label="case">
+<span from="11144" to="11153"/>
+</rel>
+</span>
+<span id="s327_n11" from="11140" to="11143">
+<rel label="det">
+<span from="11144" to="11153"/>
+</rel>
+</span>
+<span id="s327_n12" from="11144" to="11153">
+<rel label="obl">
+<span from="11154" to="11158"/>
+</rel>
+</span>
+<span id="s327_n13" from="11154" to="11158">
+<rel label="acl">
+<span from="11108" to="11114"/>
+</rel>
+</span>
+<span id="s327_n14" from="11158" to="11159">
+<rel label="punct">
+<span from="11154" to="11158"/>
+</rel>
+</span>
+<span id="s327_n15" from="11160" to="11168">
+<rel label="advmod">
+<span from="11169" to="11188"/>
+</rel>
+</span>
+<span id="s327_n16" from="11169" to="11188">
+<rel label="ccomp">
+<span from="11087" to="11094"/>
+</rel>
+</span>
+<span id="s327_n17" from="11188" to="11189">
+<rel label="punct">
+<span from="11087" to="11094"/>
+</rel>
+</span>
+<span id="s328_n1" from="11190" to="11194">
+<rel label="mark">
+<span from="11238" to="11245"/>
+</rel>
+</span>
+<span id="s328_n2" from="11195" to="11198">
+<rel label="det">
+<span from="11199" to="11216"/>
+</rel>
+</span>
+<span id="s328_n3" from="11199" to="11216">
+<rel label="nsubj">
+<span from="11238" to="11245"/>
+</rel>
+</span>
+<span id="s328_n4" from="11217" to="11220">
+<rel label="case">
+<span from="11233" to="11237"/>
+</rel>
+</span>
+<span id="s328_n5" from="11221" to="11232">
+<rel label="amod">
+<span from="11233" to="11237"/>
+</rel>
+</span>
+<span id="s328_n6" from="11233" to="11237">
+<rel label="obl">
+<span from="11238" to="11245"/>
+</rel>
+</span>
+<span id="s328_n7" from="11238" to="11245">
+<rel label="advcl">
+<span from="11247" to="11252"/>
+</rel>
+</span>
+<span id="s328_n8" from="11245" to="11246">
+<rel label="punct">
+<span from="11238" to="11245"/>
+</rel>
+</span>
+<span id="s328_n9" from="11247" to="11252">
+<rel label="root">
+<span from="11190" to="11289"/>
+</rel>
+</span>
+<span id="s328_n10" from="11253" to="11256">
+<rel label="nsubj">
+<span from="11247" to="11252"/>
+</rel>
+</span>
+<span id="s328_n11" from="11257" to="11261">
+<rel label="obj">
+<span from="11247" to="11252"/>
+</rel>
+</span>
+<span id="s328_n12" from="11262" to="11275">
+<rel label="amod">
+<span from="11276" to="11288"/>
+</rel>
+</span>
+<span id="s328_n13" from="11276" to="11288">
+<rel label="obj">
+<span from="11247" to="11252"/>
+</rel>
+</span>
+<span id="s328_n14" from="11288" to="11289">
+<rel label="punct">
+<span from="11247" to="11252"/>
+</rel>
+</span>
+<span id="s329_n1" from="11290" to="11294">
+<rel label="advmod">
+<span from="11295" to="11299"/>
+</rel>
+</span>
+<span id="s329_n2" from="11295" to="11299">
+<rel label="root">
+<span from="11290" to="11397"/>
+</rel>
+</span>
+<span id="s329_n3" from="11300" to="11303">
+<rel label="det">
+<span from="11304" to="11311"/>
+</rel>
+</span>
+<span id="s329_n4" from="11304" to="11311">
+<rel label="nsubj">
+<span from="11295" to="11299"/>
+</rel>
+</span>
+<span id="s329_n5" from="11312" to="11315">
+<rel label="case">
+<span from="11337" to="11353"/>
+</rel>
+</span>
+<span id="s329_n6" from="11316" to="11320">
+<rel label="case">
+<span from="11321" to="11326"/>
+</rel>
+</span>
+<span id="s329_n7" from="11321" to="11326">
+<rel label="obl">
+<span from="11327" to="11336"/>
+</rel>
+</span>
+<span id="s329_n8" from="11327" to="11336">
+<rel label="amod">
+<span from="11337" to="11353"/>
+</rel>
+</span>
+<span id="s329_n9" from="11337" to="11353">
+<rel label="nmod">
+<span from="11304" to="11311"/>
+</rel>
+</span>
+<span id="s329_n10" from="11353" to="11354">
+<rel label="punct">
+<span from="11355" to="11360"/>
+</rel>
+</span>
+<span id="s329_n11" from="11355" to="11360">
+<rel label="conj">
+<span from="11295" to="11299"/>
+</rel>
+</span>
+<span id="s329_n12" from="11361" to="11365">
+<rel label="advmod">
+<span from="11355" to="11360"/>
+</rel>
+</span>
+<span id="s329_n13" from="11366" to="11370">
+<rel label="advmod">
+<span from="11380" to="11385"/>
+</rel>
+</span>
+<span id="s329_n14" from="11371" to="11374">
+<rel label="case">
+<span from="11380" to="11385"/>
+</rel>
+</span>
+<span id="s329_n15" from="11375" to="11379">
+<rel label="det">
+<span from="11380" to="11385"/>
+</rel>
+</span>
+<span id="s329_n16" from="11380" to="11385">
+<rel label="obl">
+<span from="11355" to="11360"/>
+</rel>
+</span>
+<span id="s329_n17" from="11386" to="11389">
+<rel label="compound:prt">
+<span from="11355" to="11360"/>
+</rel>
+</span>
+<span id="s329_n18" from="11390" to="11391">
+<rel label="punct">
+<span from="11391" to="11395"/>
+</rel>
+</span>
+<span id="s329_n19" from="11391" to="11395">
+<rel label="parataxis">
+<span from="11295" to="11299"/>
+</rel>
+</span>
+<span id="s329_n20" from="11395" to="11396">
+<rel label="punct">
+<span from="11391" to="11395"/>
+</rel>
+</span>
+<span id="s329_n21" from="11396" to="11397">
+<rel label="punct">
+<span from="11295" to="11299"/>
+</rel>
+</span>
+<span id="s330_n1" from="11398" to="11401">
+<rel label="det">
+<span from="11414" to="11418"/>
+</rel>
+</span>
+<span id="s330_n2" from="11402" to="11413">
+<rel label="amod">
+<span from="11414" to="11418"/>
+</rel>
+</span>
+<span id="s330_n3" from="11414" to="11418">
+<rel label="obj">
+<span from="11419" to="11424"/>
+</rel>
+</span>
+<span id="s330_n4" from="11419" to="11424">
+<rel label="root">
+<span from="11398" to="11456"/>
+</rel>
+</span>
+<span id="s330_n5" from="11425" to="11428">
+<rel label="nsubj">
+<span from="11419" to="11424"/>
+</rel>
+</span>
+<span id="s330_n6" from="11429" to="11442">
+<rel label="amod">
+<span from="11443" to="11455"/>
+</rel>
+</span>
+<span id="s330_n7" from="11443" to="11455">
+<rel label="obj">
+<span from="11419" to="11424"/>
+</rel>
+</span>
+<span id="s330_n8" from="11455" to="11456">
+<rel label="punct">
+<span from="11419" to="11424"/>
+</rel>
+</span>
+<span id="s331_n1" from="11457" to="11461">
+<rel label="advmod">
+<span from="11462" to="11467"/>
+</rel>
+</span>
+<span id="s331_n2" from="11462" to="11467">
+<rel label="root">
+<span from="11457" to="11503"/>
+</rel>
+</span>
+<span id="s331_n3" from="11468" to="11471">
+<rel label="det">
+<span from="11472" to="11479"/>
+</rel>
+</span>
+<span id="s331_n4" from="11472" to="11479">
+<rel label="nsubj">
+<span from="11462" to="11467"/>
+</rel>
+</span>
+<span id="s331_n5" from="11480" to="11483">
+<rel label="compound:prt">
+<span from="11462" to="11467"/>
+</rel>
+</span>
+<span id="s331_n6" from="11484" to="11487">
+<rel label="case">
+<span from="11492" to="11502"/>
+</rel>
+</span>
+<span id="s331_n7" from="11488" to="11491">
+<rel label="det">
+<span from="11492" to="11502"/>
+</rel>
+</span>
+<span id="s331_n8" from="11492" to="11502">
+<rel label="obl">
+<span from="11462" to="11467"/>
+</rel>
+</span>
+<span id="s331_n9" from="11502" to="11503">
+<rel label="punct">
+<span from="11462" to="11467"/>
+</rel>
+</span>
+<span id="s332_n1" from="11504" to="11506">
+<rel label="nsubj">
+<span from="11507" to="11511"/>
+</rel>
+</span>
+<span id="s332_n2" from="11507" to="11511">
+<rel label="root">
+<span from="11504" to="11614"/>
+</rel>
+</span>
+<span id="s332_n3" from="11512" to="11516">
+<rel label="advmod">
+<span from="11531" to="11552"/>
+</rel>
+</span>
+<span id="s332_n4" from="11517" to="11530">
+<rel label="amod">
+<span from="11531" to="11552"/>
+</rel>
+</span>
+<span id="s332_n5" from="11531" to="11552">
+<rel label="obj">
+<span from="11507" to="11511"/>
+</rel>
+</span>
+<span id="s332_n6" from="11552" to="11553">
+<rel label="punct">
+<span from="11577" to="11586"/>
+</rel>
+</span>
+<span id="s332_n7" from="11554" to="11558">
+<rel label="mark">
+<span from="11577" to="11586"/>
+</rel>
+</span>
+<span id="s332_n8" from="11559" to="11563">
+<rel label="det">
+<span from="11577" to="11586"/>
+</rel>
+</span>
+<span id="s332_n9" from="11564" to="11576">
+<rel label="amod">
+<span from="11577" to="11586"/>
+</rel>
+</span>
+<span id="s332_n10" from="11577" to="11586">
+<rel label="nsubj">
+<span from="11507" to="11511"/>
+</rel>
+</span>
+<span id="s332_n11" from="11587" to="11590">
+<rel label="det">
+<span from="11591" to="11613"/>
+</rel>
+</span>
+<span id="s332_n12" from="11591" to="11613">
+<rel label="nmod">
+<span from="11577" to="11586"/>
+</rel>
+</span>
+<span id="s332_n13" from="11613" to="11614">
+<rel label="punct">
+<span from="11507" to="11511"/>
+</rel>
+</span>
+<span id="s333_n1" from="11615" to="11621">
+<rel label="advmod">
+<span from="11622" to="11628"/>
+</rel>
+</span>
+<span id="s333_n2" from="11622" to="11628">
+<rel label="nsubj">
+<span from="11629" to="11635"/>
+</rel>
+</span>
+<span id="s333_n3" from="11629" to="11635">
+<rel label="root">
+<span from="11615" to="11685"/>
+</rel>
+</span>
+<span id="s333_n4" from="11636" to="11640">
+<rel label="advmod">
+<span from="11629" to="11635"/>
+</rel>
+</span>
+<span id="s333_n5" from="11641" to="11644">
+<rel label="case">
+<span from="11645" to="11657"/>
+</rel>
+</span>
+<span id="s333_n6" from="11645" to="11657">
+<rel label="obl">
+<span from="11629" to="11635"/>
+</rel>
+</span>
+<span id="s333_n7" from="11658" to="11662">
+<rel label="case">
+<span from="11670" to="11684"/>
+</rel>
+</span>
+<span id="s333_n8" from="11663" to="11669">
+<rel label="det">
+<span from="11670" to="11684"/>
+</rel>
+</span>
+<span id="s333_n9" from="11670" to="11684">
+<rel label="obl">
+<span from="11629" to="11635"/>
+</rel>
+</span>
+<span id="s333_n10" from="11684" to="11685">
+<rel label="punct">
+<span from="11629" to="11635"/>
+</rel>
+</span>
+<span id="s334_n1" from="11686" to="11705">
+<rel label="nsubj">
+<span from="11766" to="11772"/>
+</rel>
+</span>
+<span id="s334_n2" from="11706" to="11708">
+<rel label="case">
+<span from="11709" to="11728"/>
+</rel>
+</span>
+<span id="s334_n3" from="11709" to="11728">
+<rel label="nmod">
+<span from="11686" to="11705"/>
+</rel>
+</span>
+<span id="s334_n4" from="11729" to="11730">
+<rel label="punct">
+<span from="11730" to="11742"/>
+</rel>
+</span>
+<span id="s334_n5" from="11730" to="11742">
+<rel label="appos">
+<span from="11709" to="11728"/>
+</rel>
+</span>
+<span id="s334_n6" from="11743" to="11749">
+<rel label="advmod">
+<span from="11730" to="11742"/>
+</rel>
+</span>
+<span id="s334_n7" from="11750" to="11753">
+<rel label="case">
+<span from="11754" to="11764"/>
+</rel>
+</span>
+<span id="s334_n8" from="11754" to="11764">
+<rel label="obl">
+<span from="11743" to="11749"/>
+</rel>
+</span>
+<span id="s334_n9" from="11764" to="11765">
+<rel label="punct">
+<span from="11730" to="11742"/>
+</rel>
+</span>
+<span id="s334_n10" from="11766" to="11772">
+<rel label="root">
+<span from="11686" to="11874"/>
+</rel>
+</span>
+<span id="s334_n11" from="11773" to="11776">
+<rel label="case">
+<span from="11792" to="11804"/>
+</rel>
+</span>
+<span id="s334_n12" from="11777" to="11791">
+<rel label="amod">
+<span from="11792" to="11804"/>
+</rel>
+</span>
+<span id="s334_n13" from="11792" to="11804">
+<rel label="obl">
+<span from="11766" to="11772"/>
+</rel>
+</span>
+<span id="s334_n14" from="11805" to="11821">
+<rel label="appos">
+<span from="11792" to="11804"/>
+</rel>
+</span>
+<span id="s334_n15" from="11822" to="11823">
+<rel label="punct">
+<span from="11823" to="11831"/>
+</rel>
+</span>
+<span id="s334_n16" from="11823" to="11831">
+<rel label="appos">
+<span from="11805" to="11821"/>
+</rel>
+</span>
+<span id="s334_n17" from="11832" to="11839">
+<rel label="advmod">
+<span from="11823" to="11831"/>
+</rel>
+</span>
+<span id="s334_n18" from="11840" to="11843">
+<rel label="case">
+<span from="11844" to="11854"/>
+</rel>
+</span>
+<span id="s334_n19" from="11844" to="11854">
+<rel label="obl">
+<span from="11832" to="11839"/>
+</rel>
+</span>
+<span id="s334_n20" from="11854" to="11855">
+<rel label="punct">
+<span from="11823" to="11831"/>
+</rel>
+</span>
+<span id="s334_n21" from="11856" to="11873">
+<rel label="xcomp">
+<span from="11766" to="11772"/>
+</rel>
+</span>
+<span id="s334_n22" from="11873" to="11874">
+<rel label="punct">
+<span from="11766" to="11772"/>
+</rel>
+</span>
+<span id="s335_n1" from="11875" to="11885">
+<rel label="amod">
+<span from="11886" to="11906"/>
+</rel>
+</span>
+<span id="s335_n2" from="11886" to="11906">
+<rel label="nsubj">
+<span from="11907" to="11913"/>
+</rel>
+</span>
+<span id="s335_n3" from="11907" to="11913">
+<rel label="root">
+<span from="11875" to="11956"/>
+</rel>
+</span>
+<span id="s335_n4" from="11914" to="11918">
+<rel label="det">
+<span from="11939" to="11951"/>
+</rel>
+</span>
+<span id="s335_n5" from="11919" to="11938">
+<rel label="amod">
+<span from="11939" to="11951"/>
+</rel>
+</span>
+<span id="s335_n6" from="11939" to="11951">
+<rel label="obj">
+<span from="11907" to="11913"/>
+</rel>
+</span>
+<span id="s335_n7" from="11952" to="11955">
+<rel label="compound:prt">
+<span from="11907" to="11913"/>
+</rel>
+</span>
+<span id="s335_n8" from="11955" to="11956">
+<rel label="punct">
+<span from="11907" to="11913"/>
+</rel>
+</span>
+<span id="s336_n1" from="11957" to="11961">
+<rel label="nsubj">
+<span from="11966" to="11973"/>
+</rel>
+</span>
+<span id="s336_n2" from="11962" to="11965">
+<rel label="cop">
+<span from="11966" to="11973"/>
+</rel>
+</span>
+<span id="s336_n3" from="11966" to="11973">
+<rel label="root">
+<span from="11957" to="12152"/>
+</rel>
+</span>
+<span id="s336_n4" from="11973" to="11974">
+<rel label="punct">
+<span from="12015" to="12026"/>
+</rel>
+</span>
+<span id="s336_n5" from="11975" to="11977">
+<rel label="mark">
+<span from="12015" to="12026"/>
+</rel>
+</span>
+<span id="s336_n6" from="11978" to="11988">
+<rel label="advmod">
+<span from="12015" to="12026"/>
+</rel>
+</span>
+<span id="s336_n7" from="11989" to="11994">
+<rel label="det">
+<span from="12004" to="12014"/>
+</rel>
+</span>
+<span id="s336_n8" from="11995" to="12003">
+<rel label="amod">
+<span from="12004" to="12014"/>
+</rel>
+</span>
+<span id="s336_n9" from="12004" to="12014">
+<rel label="obj">
+<span from="12015" to="12026"/>
+</rel>
+</span>
+<span id="s336_n10" from="12015" to="12026">
+<rel label="ccomp">
+<span from="11966" to="11973"/>
+</rel>
+</span>
+<span id="s336_n11" from="12027" to="12028">
+<rel label="punct">
+<span from="12074" to="12081"/>
+</rel>
+</span>
+<span id="s336_n12" from="12028" to="12031">
+<rel label="nummod">
+<span from="12032" to="12036"/>
+</rel>
+</span>
+<span id="s336_n13" from="12032" to="12036">
+<rel label="nsubj">
+<span from="12074" to="12081"/>
+</rel>
+</span>
+<span id="s336_n14" from="12037" to="12040">
+<rel label="cc">
+<span from="12041" to="12045"/>
+</rel>
+</span>
+<span id="s336_n15" from="12041" to="12045">
+<rel label="conj">
+<span from="12032" to="12036"/>
+</rel>
+</span>
+<span id="s336_n16" from="12046" to="12050">
+<rel label="cop">
+<span from="12074" to="12081"/>
+</rel>
+</span>
+<span id="s336_n17" from="12051" to="12054">
+<rel label="advmod">
+<span from="12061" to="12073"/>
+</rel>
+</span>
+<span id="s336_n18" from="12055" to="12060">
+<rel label="case">
+<span from="12061" to="12073"/>
+</rel>
+</span>
+<span id="s336_n19" from="12061" to="12073">
+<rel label="obl">
+<span from="12074" to="12081"/>
+</rel>
+</span>
+<span id="s336_n20" from="12074" to="12081">
+<rel label="parataxis">
+<span from="11966" to="11973"/>
+</rel>
+</span>
+<span id="s336_n21" from="12081" to="12082">
+<rel label="punct">
+<span from="12074" to="12081"/>
+</rel>
+</span>
+<span id="s336_n22" from="12082" to="12083">
+<rel label="punct">
+<span from="12140" to="12151"/>
+</rel>
+</span>
+<span id="s336_n23" from="12084" to="12099">
+<rel label="advmod">
+<span from="12140" to="12151"/>
+</rel>
+</span>
+<span id="s336_n24" from="12100" to="12103">
+<rel label="det">
+<span from="12104" to="12116"/>
+</rel>
+</span>
+<span id="s336_n25" from="12104" to="12116">
+<rel label="obj">
+<span from="12140" to="12151"/>
+</rel>
+</span>
+<span id="s336_n26" from="12117" to="12120">
+<rel label="case">
+<span from="12125" to="12139"/>
+</rel>
+</span>
+<span id="s336_n27" from="12121" to="12124">
+<rel label="det">
+<span from="12125" to="12139"/>
+</rel>
+</span>
+<span id="s336_n28" from="12125" to="12139">
+<rel label="nmod">
+<span from="12104" to="12116"/>
+</rel>
+</span>
+<span id="s336_n29" from="12140" to="12151">
+<rel label="conj">
+<span from="12074" to="12081"/>
+</rel>
+</span>
+<span id="s336_n30" from="12151" to="12152">
+<rel label="punct">
+<span from="11966" to="11973"/>
+</rel>
+</span>
+<span id="s337_n1" from="12153" to="12156">
+<rel label="case">
+<span from="12157" to="12169"/>
+</rel>
+</span>
+<span id="s337_n2" from="12157" to="12169">
+<rel label="obl">
+<span from="12255" to="12264"/>
+</rel>
+</span>
+<span id="s337_n3" from="12170" to="12171">
+<rel label="punct">
+<span from="12171" to="12182"/>
+</rel>
+</span>
+<span id="s337_n4" from="12171" to="12182">
+<rel label="appos">
+<span from="12157" to="12169"/>
+</rel>
+</span>
+<span id="s337_n5" from="12182" to="12183">
+<rel label="punct">
+<span from="12171" to="12182"/>
+</rel>
+</span>
+<span id="s337_n6" from="12184" to="12187">
+<rel label="case">
+<span from="12188" to="12206"/>
+</rel>
+</span>
+<span id="s337_n7" from="12188" to="12206">
+<rel label="nmod">
+<span from="12171" to="12182"/>
+</rel>
+</span>
+<span id="s337_n8" from="12207" to="12210">
+<rel label="aux:pass">
+<span from="12255" to="12264"/>
+</rel>
+</span>
+<span id="s337_n9" from="12211" to="12228">
+<rel label="amod">
+<span from="12229" to="12241"/>
+</rel>
+</span>
+<span id="s337_n10" from="12229" to="12241">
+<rel label="nsubj:pass">
+<span from="12255" to="12264"/>
+</rel>
+</span>
+<span id="s337_n11" from="12242" to="12254">
+<rel label="advmod">
+<span from="12255" to="12264"/>
+</rel>
+</span>
+<span id="s337_n12" from="12255" to="12264">
+<rel label="root">
+<span from="12153" to="12376"/>
+</rel>
+</span>
+<span id="s337_n13" from="12264" to="12265">
+<rel label="punct">
+<span from="12366" to="12375"/>
+</rel>
+</span>
+<span id="s337_n14" from="12266" to="12268">
+<rel label="mark">
+<span from="12366" to="12375"/>
+</rel>
+</span>
+<span id="s337_n15" from="12269" to="12273">
+<rel label="case">
+<span from="12287" to="12293"/>
+</rel>
+</span>
+<span id="s337_n16" from="12274" to="12286">
+<rel label="amod">
+<span from="12287" to="12293"/>
+</rel>
+</span>
+<span id="s337_n17" from="12287" to="12293">
+<rel label="obl">
+<span from="12366" to="12375"/>
+</rel>
+</span>
+<span id="s337_n18" from="12294" to="12298">
+<rel label="det">
+<span from="12311" to="12319"/>
+</rel>
+</span>
+<span id="s337_n19" from="12299" to="12310">
+<rel label="amod">
+<span from="12311" to="12319"/>
+</rel>
+</span>
+<span id="s337_n20" from="12311" to="12319">
+<rel label="obj">
+<span from="12366" to="12375"/>
+</rel>
+</span>
+<span id="s337_n21" from="12320" to="12323">
+<rel label="det">
+<span from="12324" to="12337"/>
+</rel>
+</span>
+<span id="s337_n22" from="12324" to="12337">
+<rel label="nmod">
+<span from="12311" to="12319"/>
+</rel>
+</span>
+<span id="s337_n23" from="12338" to="12347">
+<rel label="case">
+<span from="12348" to="12362"/>
+</rel>
+</span>
+<span id="s337_n24" from="12348" to="12362">
+<rel label="nmod">
+<span from="12311" to="12319"/>
+</rel>
+</span>
+<span id="s337_n25" from="12363" to="12365">
+<rel label="mark">
+<span from="12366" to="12375"/>
+</rel>
+</span>
+<span id="s337_n26" from="12366" to="12375">
+<rel label="advcl">
+<span from="12255" to="12264"/>
+</rel>
+</span>
+<span id="s337_n27" from="12375" to="12376">
+<rel label="punct">
+<span from="12255" to="12264"/>
+</rel>
+</span>
+<span id="s338_n1" from="12377" to="12380">
+<rel label="det">
+<span from="12395" to="12404"/>
+</rel>
+</span>
+<span id="s338_n2" from="12381" to="12394">
+<rel label="amod">
+<span from="12395" to="12404"/>
+</rel>
+</span>
+<span id="s338_n3" from="12395" to="12404">
+<rel label="obj">
+<span from="12413" to="12419"/>
+</rel>
+</span>
+<span id="s338_n4" from="12405" to="12412">
+<rel label="advmod">
+<span from="12395" to="12404"/>
+</rel>
+</span>
+<span id="s338_n5" from="12413" to="12419">
+<rel label="root">
+<span from="12377" to="12561"/>
+</rel>
+</span>
+<span id="s338_n6" from="12420" to="12423">
+<rel label="det">
+<span from="12437" to="12452"/>
+</rel>
+</span>
+<span id="s338_n7" from="12424" to="12426">
+<rel label="advmod">
+<span from="12427" to="12435"/>
+</rel>
+</span>
+<span id="s338_n8" from="12427" to="12435">
+<rel label="amod">
+<span from="12437" to="12452"/>
+</rel>
+</span>
+<span id="s338_n9" from="12436" to="12437">
+<rel label="punct">
+<span from="12437" to="12452"/>
+</rel>
+</span>
+<span id="s338_n10" from="12437" to="12452">
+<rel label="nsubj">
+<span from="12413" to="12419"/>
+</rel>
+</span>
+<span id="s338_n11" from="12452" to="12453">
+<rel label="appos">
+<span from="12437" to="12452"/>
+</rel>
+</span>
+<span id="s338_n12" from="12454" to="12457">
+<rel label="compound:prt">
+<span from="12413" to="12419"/>
+</rel>
+</span>
+<span id="s338_n13" from="12457" to="12458">
+<rel label="punct">
+<span from="12480" to="12487"/>
+</rel>
+</span>
+<span id="s338_n14" from="12459" to="12462">
+<rel label="nsubj:pass">
+<span from="12480" to="12487"/>
+</rel>
+</span>
+<span id="s338_n15" from="12463" to="12466">
+<rel label="case">
+<span from="12467" to="12479"/>
+</rel>
+</span>
+<span id="s338_n16" from="12467" to="12479">
+<rel label="obl">
+<span from="12480" to="12487"/>
+</rel>
+</span>
+<span id="s338_n17" from="12480" to="12487">
+<rel label="acl">
+<span from="12437" to="12452"/>
+</rel>
+</span>
+<span id="s338_n18" from="12488" to="12492">
+<rel label="aux:pass">
+<span from="12480" to="12487"/>
+</rel>
+</span>
+<span id="s338_n19" from="12493" to="12497">
+<rel label="aux">
+<span from="12480" to="12487"/>
+</rel>
+</span>
+<span id="s338_n20" from="12498" to="12499">
+<rel label="punct">
+<span from="12502" to="12513"/>
+</rel>
+</span>
+<span id="s338_n21" from="12499" to="12501">
+<rel label="case">
+<span from="12502" to="12513"/>
+</rel>
+</span>
+<span id="s338_n22" from="12502" to="12513">
+<rel label="obl">
+<span from="12413" to="12419"/>
+</rel>
+</span>
+<span id="s338_n23" from="12514" to="12516">
+<rel label="case">
+<span from="12522" to="12540"/>
+</rel>
+</span>
+<span id="s338_n24" from="12517" to="12520">
+<rel label="det">
+<span from="12522" to="12540"/>
+</rel>
+</span>
+<span id="s338_n25" from="12521" to="12522">
+<rel label="punct">
+<span from="12522" to="12540"/>
+</rel>
+</span>
+<span id="s338_n26" from="12522" to="12540">
+<rel label="nmod">
+<span from="12502" to="12513"/>
+</rel>
+</span>
+<span id="s338_n27" from="12540" to="12541">
+<rel label="flat">
+<span from="12522" to="12540"/>
+</rel>
+</span>
+<span id="s338_n28" from="12542" to="12559">
+<rel label="appos">
+<span from="12522" to="12540"/>
+</rel>
+</span>
+<span id="s338_n29" from="12559" to="12560">
+<rel label="punct">
+<span from="12522" to="12540"/>
+</rel>
+</span>
+<span id="s338_n30" from="12560" to="12561">
+<rel label="punct">
+<span from="12413" to="12419"/>
+</rel>
+</span>
+<span id="s339_n1" from="12563" to="12575">
+<rel label="amod">
+<span from="12576" to="12586"/>
+</rel>
+</span>
+<span id="s339_n2" from="12576" to="12586">
+<rel label="nsubj">
+<span from="12655" to="12660"/>
+</rel>
+</span>
+<span id="s339_n3" from="12588" to="12592">
+<rel label="appos">
+<span from="12576" to="12586"/>
+</rel>
+</span>
+<span id="s339_n4" from="12592" to="12593">
+<rel label="appos">
+<span from="12606" to="12616"/>
+</rel>
+</span>
+<span id="s339_n5" from="12593" to="12605">
+<rel label="amod">
+<span from="12606" to="12616"/>
+</rel>
+</span>
+<span id="s339_n6" from="12606" to="12616">
+<rel label="appos">
+<span from="12576" to="12586"/>
+</rel>
+</span>
+<span id="s339_n7" from="12617" to="12620">
+<rel label="det">
+<span from="12621" to="12635"/>
+</rel>
+</span>
+<span id="s339_n8" from="12621" to="12635">
+<rel label="appos">
+<span from="12606" to="12616"/>
+</rel>
+</span>
+<span id="s339_n9" from="12636" to="12639">
+<rel label="case">
+<span from="12650" to="12654"/>
+</rel>
+</span>
+<span id="s339_n10" from="12640" to="12649">
+<rel label="amod">
+<span from="12650" to="12654"/>
+</rel>
+</span>
+<span id="s339_n11" from="12650" to="12654">
+<rel label="nmod">
+<span from="12621" to="12635"/>
+</rel>
+</span>
+<span id="s339_n12" from="12655" to="12660">
+<rel label="root">
+<span from="12563" to="12708"/>
+</rel>
+</span>
+<span id="s339_n13" from="12661" to="12664">
+<rel label="case">
+<span from="12669" to="12680"/>
+</rel>
+</span>
+<span id="s339_n14" from="12665" to="12668">
+<rel label="det">
+<span from="12669" to="12680"/>
+</rel>
+</span>
+<span id="s339_n15" from="12669" to="12680">
+<rel label="obj">
+<span from="12655" to="12660"/>
+</rel>
+</span>
+<span id="s339_n16" from="12682" to="12685">
+<rel label="det">
+<span from="12686" to="12704"/>
+</rel>
+</span>
+<span id="s339_n17" from="12686" to="12704">
+<rel label="nmod">
+<span from="12669" to="12680"/>
+</rel>
+</span>
+<span id="s339_n18" from="12705" to="12707">
+<rel label="compound:prt">
+<span from="12655" to="12660"/>
+</rel>
+</span>
+<span id="s339_n19" from="12707" to="12708">
+<rel label="punct">
+<span from="12655" to="12660"/>
+</rel>
+</span>
+<span id="s340_n1" from="12709" to="12714">
+<rel label="det">
+<span from="12715" to="12726"/>
+</rel>
+</span>
+<span id="s340_n2" from="12715" to="12726">
+<rel label="nsubj:pass">
+<span from="12743" to="12750"/>
+</rel>
+</span>
+<span id="s340_n3" from="12727" to="12731">
+<rel label="aux:pass">
+<span from="12743" to="12750"/>
+</rel>
+</span>
+<span id="s340_n4" from="12732" to="12742">
+<rel label="obj">
+<span from="12743" to="12750"/>
+</rel>
+</span>
+<span id="s340_n5" from="12743" to="12750">
+<rel label="root">
+<span from="12709" to="12751"/>
+</rel>
+</span>
+<span id="s340_n6" from="12750" to="12751">
+<rel label="punct">
+<span from="12743" to="12750"/>
+</rel>
+</span>
+<span id="s341_n1" from="12752" to="12755">
+<rel label="nsubj">
+<span from="12764" to="12771"/>
+</rel>
+</span>
+<span id="s341_n2" from="12756" to="12759">
+<rel label="cop">
+<span from="12764" to="12771"/>
+</rel>
+</span>
+<span id="s341_n3" from="12760" to="12763">
+<rel label="det">
+<span from="12764" to="12771"/>
+</rel>
+</span>
+<span id="s341_n4" from="12764" to="12771">
+<rel label="root">
+<span from="12752" to="12804"/>
+</rel>
+</span>
+<span id="s341_n5" from="12772" to="12775">
+<rel label="case">
+<span from="12793" to="12803"/>
+</rel>
+</span>
+<span id="s341_n6" from="12776" to="12779">
+<rel label="det">
+<span from="12793" to="12803"/>
+</rel>
+</span>
+<span id="s341_n7" from="12780" to="12792">
+<rel label="amod">
+<span from="12793" to="12803"/>
+</rel>
+</span>
+<span id="s341_n8" from="12793" to="12803">
+<rel label="nmod">
+<span from="12764" to="12771"/>
+</rel>
+</span>
+<span id="s341_n9" from="12803" to="12804">
+<rel label="punct">
+<span from="12764" to="12771"/>
+</rel>
+</span>
+<span id="s342_n1" from="12806" to="12820">
+<rel label="nsubj">
+<span from="12928" to="12939"/>
+</rel>
+</span>
+<span id="s342_n2" from="12822" to="12826">
+<rel label="flat:name">
+<span from="12806" to="12820"/>
+</rel>
+</span>
+<span id="s342_n3" from="12826" to="12827">
+<rel label="appos">
+<span from="12806" to="12820"/>
+</rel>
+</span>
+<span id="s342_n4" from="12827" to="12835">
+<rel label="advmod">
+<span from="12826" to="12827"/>
+</rel>
+</span>
+<span id="s342_n5" from="12835" to="12836">
+<rel label="appos">
+<span from="12826" to="12827"/>
+</rel>
+</span>
+<span id="s342_n6" from="12836" to="12850">
+<rel label="appos">
+<span from="12826" to="12827"/>
+</rel>
+</span>
+<span id="s342_n7" from="12850" to="12851">
+<rel label="punct">
+<span from="12851" to="12873"/>
+</rel>
+</span>
+<span id="s342_n8" from="12851" to="12873">
+<rel label="appos">
+<span from="12836" to="12850"/>
+</rel>
+</span>
+<span id="s342_n9" from="12874" to="12877">
+<rel label="det">
+<span from="12878" to="12892"/>
+</rel>
+</span>
+<span id="s342_n10" from="12878" to="12892">
+<rel label="appos">
+<span from="12851" to="12873"/>
+</rel>
+</span>
+<span id="s342_n11" from="12893" to="12896">
+<rel label="det">
+<span from="12897" to="12903"/>
+</rel>
+</span>
+<span id="s342_n12" from="12897" to="12903">
+<rel label="nmod">
+<span from="12878" to="12892"/>
+</rel>
+</span>
+<span id="s342_n13" from="12904" to="12909">
+<rel label="det">
+<span from="12920" to="12927"/>
+</rel>
+</span>
+<span id="s342_n14" from="12910" to="12919">
+<rel label="amod">
+<span from="12920" to="12927"/>
+</rel>
+</span>
+<span id="s342_n15" from="12920" to="12927">
+<rel label="nmod">
+<span from="12897" to="12903"/>
+</rel>
+</span>
+<span id="s342_n16" from="12928" to="12939">
+<rel label="root">
+<span from="12806" to="13000"/>
+</rel>
+</span>
+<span id="s342_n17" from="12940" to="12943">
+<rel label="det">
+<span from="12944" to="12961"/>
+</rel>
+</span>
+<span id="s342_n18" from="12944" to="12961">
+<rel label="obj">
+<span from="12928" to="12939"/>
+</rel>
+</span>
+<span id="s342_n19" from="12961" to="12962">
+<rel label="punct">
+<span from="12992" to="12999"/>
+</rel>
+</span>
+<span id="s342_n20" from="12963" to="12966">
+<rel label="nsubj">
+<span from="12992" to="12999"/>
+</rel>
+</span>
+<span id="s342_n21" from="12967" to="12972">
+<rel label="advmod">
+<span from="12992" to="12999"/>
+</rel>
+</span>
+<span id="s342_n22" from="12973" to="12976">
+<rel label="case">
+<span from="12977" to="12991"/>
+</rel>
+</span>
+<span id="s342_n23" from="12977" to="12991">
+<rel label="obj">
+<span from="12992" to="12999"/>
+</rel>
+</span>
+<span id="s342_n24" from="12992" to="12999">
+<rel label="acl">
+<span from="12944" to="12961"/>
+</rel>
+</span>
+<span id="s342_n25" from="12999" to="13000">
+<rel label="punct">
+<span from="12928" to="12939"/>
+</rel>
+</span>
+<span id="s343_n1" from="13001" to="13004">
+<rel label="det">
+<span from="13005" to="13015"/>
+</rel>
+</span>
+<span id="s343_n2" from="13005" to="13015">
+<rel label="nsubj">
+<span from="13102" to="13106"/>
+</rel>
+</span>
+<span id="s343_n3" from="13015" to="13016">
+<rel label="punct">
+<span from="13069" to="13075"/>
+</rel>
+</span>
+<span id="s343_n4" from="13017" to="13020">
+<rel label="nsubj">
+<span from="13069" to="13075"/>
+</rel>
+</span>
+<span id="s343_n5" from="13021" to="13024">
+<rel label="case">
+<span from="13025" to="13030"/>
+</rel>
+</span>
+<span id="s343_n6" from="13025" to="13030">
+<rel label="obl">
+<span from="13069" to="13075"/>
+</rel>
+</span>
+<span id="s343_n7" from="13031" to="13048">
+<rel label="amod">
+<span from="13049" to="13068"/>
+</rel>
+</span>
+<span id="s343_n8" from="13049" to="13068">
+<rel label="nmod">
+<span from="13025" to="13030"/>
+</rel>
+</span>
+<span id="s343_n9" from="13069" to="13075">
+<rel label="acl">
+<span from="13005" to="13015"/>
+</rel>
+</span>
+<span id="s343_n10" from="13075" to="13076">
+<rel label="punct">
+<span from="13069" to="13075"/>
+</rel>
+</span>
+<span id="s343_n11" from="13077" to="13081">
+<rel label="cop">
+<span from="13102" to="13106"/>
+</rel>
+</span>
+<span id="s343_n12" from="13082" to="13089">
+<rel label="advmod">
+<span from="13102" to="13106"/>
+</rel>
+</span>
+<span id="s343_n13" from="13090" to="13101">
+<rel label="advmod">
+<span from="13102" to="13106"/>
+</rel>
+</span>
+<span id="s343_n14" from="13102" to="13106">
+<rel label="root">
+<span from="13001" to="13107"/>
+</rel>
+</span>
+<span id="s343_n15" from="13106" to="13107">
+<rel label="punct">
+<span from="13102" to="13106"/>
+</rel>
+</span>
+<span id="s344_n1" from="13108" to="13114">
+<rel label="det">
+<span from="13115" to="13121"/>
+</rel>
+</span>
+<span id="s344_n2" from="13115" to="13121">
+<rel label="obj">
+<span from="13122" to="13127"/>
+</rel>
+</span>
+<span id="s344_n3" from="13122" to="13127">
+<rel label="root">
+<span from="13108" to="13147"/>
+</rel>
+</span>
+<span id="s344_n4" from="13128" to="13131">
+<rel label="nsubj">
+<span from="13122" to="13127"/>
+</rel>
+</span>
+<span id="s344_n5" from="13132" to="13146">
+<rel label="obj">
+<span from="13122" to="13127"/>
+</rel>
+</span>
+<span id="s344_n6" from="13146" to="13147">
+<rel label="punct">
+<span from="13122" to="13127"/>
+</rel>
+</span>
+<span id="s345_n1" from="13148" to="13150">
+<rel label="nsubj">
+<span from="13151" to="13158"/>
+</rel>
+</span>
+<span id="s345_n2" from="13151" to="13158">
+<rel label="root">
+<span from="13148" to="13260"/>
+</rel>
+</span>
+<span id="s345_n3" from="13159" to="13168">
+<rel label="obj">
+<span from="13151" to="13158"/>
+</rel>
+</span>
+<span id="s345_n4" from="13169" to="13171">
+<rel label="case">
+<span from="13172" to="13178"/>
+</rel>
+</span>
+<span id="s345_n5" from="13172" to="13178">
+<rel label="nmod">
+<span from="13159" to="13168"/>
+</rel>
+</span>
+<span id="s345_n6" from="13179" to="13182">
+<rel label="det">
+<span from="13183" to="13193"/>
+</rel>
+</span>
+<span id="s345_n7" from="13183" to="13193">
+<rel label="nmod">
+<span from="13172" to="13178"/>
+</rel>
+</span>
+<span id="s345_n8" from="13193" to="13194">
+<rel label="punct">
+<span from="13219" to="13228"/>
+</rel>
+</span>
+<span id="s345_n9" from="13195" to="13200">
+<rel label="mark">
+<span from="13219" to="13228"/>
+</rel>
+</span>
+<span id="s345_n10" from="13201" to="13211">
+<rel label="nsubj">
+<span from="13219" to="13228"/>
+</rel>
+</span>
+<span id="s345_n11" from="13212" to="13218">
+<rel label="advmod">
+<span from="13219" to="13228"/>
+</rel>
+</span>
+<span id="s345_n12" from="13219" to="13228">
+<rel label="advcl">
+<span from="13151" to="13158"/>
+</rel>
+</span>
+<span id="s345_n13" from="13228" to="13229">
+<rel label="punct">
+<span from="13239" to="13248"/>
+</rel>
+</span>
+<span id="s345_n14" from="13230" to="13233">
+<rel label="cc">
+<span from="13239" to="13248"/>
+</rel>
+</span>
+<span id="s345_n15" from="13234" to="13238">
+<rel label="det">
+<span from="13239" to="13248"/>
+</rel>
+</span>
+<span id="s345_n16" from="13239" to="13248">
+<rel label="conj">
+<span from="13159" to="13168"/>
+</rel>
+</span>
+<span id="s345_n17" from="13249" to="13252">
+<rel label="det">
+<span from="13253" to="13259"/>
+</rel>
+</span>
+<span id="s345_n18" from="13253" to="13259">
+<rel label="nmod">
+<span from="13239" to="13248"/>
+</rel>
+</span>
+<span id="s345_n19" from="13259" to="13260">
+<rel label="punct">
+<span from="13151" to="13158"/>
+</rel>
+</span>
+<span id="s346_n1" from="13261" to="13264">
+<rel label="det">
+<span from="13265" to="13271"/>
+</rel>
+</span>
+<span id="s346_n2" from="13265" to="13271">
+<rel label="nsubj">
+<span from="13290" to="13302"/>
+</rel>
+</span>
+<span id="s346_n3" from="13272" to="13275">
+<rel label="det">
+<span from="13276" to="13285"/>
+</rel>
+</span>
+<span id="s346_n4" from="13276" to="13285">
+<rel label="nmod">
+<span from="13265" to="13271"/>
+</rel>
+</span>
+<span id="s346_n5" from="13286" to="13289">
+<rel label="cop">
+<span from="13290" to="13302"/>
+</rel>
+</span>
+<span id="s346_n6" from="13290" to="13302">
+<rel label="root">
+<span from="13261" to="13332"/>
+</rel>
+</span>
+<span id="s346_n7" from="13303" to="13306">
+<rel label="case">
+<span from="13307" to="13314"/>
+</rel>
+</span>
+<span id="s346_n8" from="13307" to="13314">
+<rel label="obl">
+<span from="13290" to="13302"/>
+</rel>
+</span>
+<span id="s346_n9" from="13315" to="13318">
+<rel label="case">
+<span from="13319" to="13331"/>
+</rel>
+</span>
+<span id="s346_n10" from="13319" to="13331">
+<rel label="nmod">
+<span from="13307" to="13314"/>
+</rel>
+</span>
+<span id="s346_n11" from="13331" to="13332">
+<rel label="punct">
+<span from="13290" to="13302"/>
+</rel>
+</span>
+<span id="s347_n1" from="13334" to="13349">
+<rel label="root">
+<span from="13334" to="13632"/>
+</rel>
+</span>
+<span id="s347_n2" from="13351" to="13355">
+<rel label="flat:name">
+<span from="13334" to="13349"/>
+</rel>
+</span>
+<span id="s347_n3" from="13355" to="13356">
+<rel label="appos">
+<span from="13334" to="13349"/>
+</rel>
+</span>
+<span id="s347_n4" from="13356" to="13364">
+<rel label="advmod">
+<span from="13334" to="13349"/>
+</rel>
+</span>
+<span id="s347_n5" from="13364" to="13365">
+<rel label="appos">
+<span from="13355" to="13356"/>
+</rel>
+</span>
+<span id="s347_n6" from="13365" to="13380">
+<rel label="appos">
+<span from="13355" to="13356"/>
+</rel>
+</span>
+<span id="s347_n7" from="13380" to="13381">
+<rel label="punct">
+<span from="13334" to="13349"/>
+</rel>
+</span>
+<span id="s347_n8" from="13382" to="13386">
+<rel label="amod">
+<span from="13387" to="13396"/>
+</rel>
+</span>
+<span id="s347_n9" from="13387" to="13396">
+<rel label="nsubj">
+<span from="13623" to="13631"/>
+</rel>
+</span>
+<span id="s347_n10" from="13397" to="13400">
+<rel label="case">
+<span from="13417" to="13429"/>
+</rel>
+</span>
+<span id="s347_n11" from="13401" to="13416">
+<rel label="amod">
+<span from="13417" to="13429"/>
+</rel>
+</span>
+<span id="s347_n12" from="13417" to="13429">
+<rel label="nmod">
+<span from="13387" to="13396"/>
+</rel>
+</span>
+<span id="s347_n13" from="13429" to="13430">
+<rel label="punct">
+<span from="13455" to="13467"/>
+</rel>
+</span>
+<span id="s347_n14" from="13431" to="13436">
+<rel label="advmod">
+<span from="13455" to="13467"/>
+</rel>
+</span>
+<span id="s347_n15" from="13437" to="13445">
+<rel label="advmod">
+<span from="13455" to="13467"/>
+</rel>
+</span>
+<span id="s347_n16" from="13446" to="13450">
+<rel label="advmod">
+<span from="13455" to="13467"/>
+</rel>
+</span>
+<span id="s347_n17" from="13451" to="13454">
+<rel label="det">
+<span from="13455" to="13467"/>
+</rel>
+</span>
+<span id="s347_n18" from="13455" to="13467">
+<rel label="conj">
+<span from="13387" to="13396"/>
+</rel>
+</span>
+<span id="s347_n19" from="13468" to="13471">
+<rel label="det">
+<span from="13472" to="13479"/>
+</rel>
+</span>
+<span id="s347_n20" from="13472" to="13479">
+<rel label="nmod">
+<span from="13455" to="13467"/>
+</rel>
+</span>
+<span id="s347_n21" from="13479" to="13480">
+<rel label="punct">
+<span from="13495" to="13502"/>
+</rel>
+</span>
+<span id="s347_n22" from="13481" to="13484">
+<rel label="cc">
+<span from="13495" to="13502"/>
+</rel>
+</span>
+<span id="s347_n23" from="13485" to="13490">
+<rel label="advmod">
+<span from="13495" to="13502"/>
+</rel>
+</span>
+<span id="s347_n24" from="13491" to="13494">
+<rel label="det">
+<span from="13495" to="13502"/>
+</rel>
+</span>
+<span id="s347_n25" from="13495" to="13502">
+<rel label="conj">
+<span from="13455" to="13467"/>
+</rel>
+</span>
+<span id="s347_n26" from="13503" to="13506">
+<rel label="det">
+<span from="13507" to="13516"/>
+</rel>
+</span>
+<span id="s347_n27" from="13507" to="13516">
+<rel label="nmod">
+<span from="13495" to="13502"/>
+</rel>
+</span>
+<span id="s347_n28" from="13517" to="13520">
+<rel label="det">
+<span from="13529" to="13535"/>
+</rel>
+</span>
+<span id="s347_n29" from="13521" to="13528">
+<rel label="amod">
+<span from="13529" to="13535"/>
+</rel>
+</span>
+<span id="s347_n30" from="13529" to="13535">
+<rel label="nmod">
+<span from="13495" to="13502"/>
+</rel>
+</span>
+<span id="s347_n31" from="13536" to="13539">
+<rel label="det">
+<span from="13540" to="13547"/>
+</rel>
+</span>
+<span id="s347_n32" from="13540" to="13547">
+<rel label="nmod">
+<span from="13529" to="13535"/>
+</rel>
+</span>
+<span id="s347_n33" from="13547" to="13548">
+<rel label="punct">
+<span from="13495" to="13502"/>
+</rel>
+</span>
+<span id="s347_n34" from="13549" to="13552">
+<rel label="cop">
+<span from="13623" to="13631"/>
+</rel>
+</span>
+<span id="s347_n35" from="13553" to="13556">
+<rel label="case">
+<span from="13557" to="13571"/>
+</rel>
+</span>
+<span id="s347_n36" from="13557" to="13571">
+<rel label="obl">
+<span from="13623" to="13631"/>
+</rel>
+</span>
+<span id="s347_n37" from="13572" to="13575">
+<rel label="det">
+<span from="13576" to="13585"/>
+</rel>
+</span>
+<span id="s347_n38" from="13576" to="13585">
+<rel label="nmod">
+<span from="13557" to="13571"/>
+</rel>
+</span>
+<span id="s347_n39" from="13586" to="13591">
+<rel label="advmod">
+<span from="13623" to="13631"/>
+</rel>
+</span>
+<span id="s347_n40" from="13592" to="13595">
+<rel label="case">
+<span from="13600" to="13611"/>
+</rel>
+</span>
+<span id="s347_n41" from="13596" to="13599">
+<rel label="det">
+<span from="13600" to="13611"/>
+</rel>
+</span>
+<span id="s347_n42" from="13600" to="13611">
+<rel label="obj">
+<span from="13623" to="13631"/>
+</rel>
+</span>
+<span id="s347_n43" from="13612" to="13615">
+<rel label="det">
+<span from="13616" to="13622"/>
+</rel>
+</span>
+<span id="s347_n44" from="13616" to="13622">
+<rel label="nmod">
+<span from="13600" to="13611"/>
+</rel>
+</span>
+<span id="s347_n45" from="13623" to="13631">
+<rel label="parataxis">
+<span from="13334" to="13349"/>
+</rel>
+</span>
+<span id="s347_n46" from="13631" to="13632">
+<rel label="punct">
+<span from="13334" to="13349"/>
+</rel>
+</span>
+<span id="s348_n1" from="13633" to="13640">
+<rel label="advmod">
+<span from="13715" to="13724"/>
+</rel>
+</span>
+<span id="s348_n2" from="13641" to="13645">
+<rel label="aux">
+<span from="13715" to="13724"/>
+</rel>
+</span>
+<span id="s348_n3" from="13646" to="13649">
+<rel label="nsubj">
+<span from="13715" to="13724"/>
+</rel>
+</span>
+<span id="s348_n4" from="13650" to="13653">
+<rel label="det">
+<span from="13654" to="13664"/>
+</rel>
+</span>
+<span id="s348_n5" from="13654" to="13664">
+<rel label="obj">
+<span from="13715" to="13724"/>
+</rel>
+</span>
+<span id="s348_n6" from="13665" to="13682">
+<rel label="amod">
+<span from="13683" to="13694"/>
+</rel>
+</span>
+<span id="s348_n7" from="13683" to="13694">
+<rel label="nmod">
+<span from="13654" to="13664"/>
+</rel>
+</span>
+<span id="s348_n8" from="13695" to="13707">
+<rel label="advmod">
+<span from="13715" to="13724"/>
+</rel>
+</span>
+<span id="s348_n9" from="13708" to="13714">
+<rel label="advmod">
+<span from="13715" to="13724"/>
+</rel>
+</span>
+<span id="s348_n10" from="13715" to="13724">
+<rel label="root">
+<span from="13633" to="13769"/>
+</rel>
+</span>
+<span id="s348_n11" from="13724" to="13725">
+<rel label="punct">
+<span from="13762" to="13768"/>
+</rel>
+</span>
+<span id="s348_n12" from="13726" to="13730">
+<rel label="mark">
+<span from="13762" to="13768"/>
+</rel>
+</span>
+<span id="s348_n13" from="13731" to="13734">
+<rel label="nsubj">
+<span from="13762" to="13768"/>
+</rel>
+</span>
+<span id="s348_n14" from="13735" to="13737">
+<rel label="case">
+<span from="13738" to="13761"/>
+</rel>
+</span>
+<span id="s348_n15" from="13738" to="13761">
+<rel label="obl">
+<span from="13762" to="13768"/>
+</rel>
+</span>
+<span id="s348_n16" from="13762" to="13768">
+<rel label="advcl">
+<span from="13715" to="13724"/>
+</rel>
+</span>
+<span id="s348_n17" from="13768" to="13769">
+<rel label="punct">
+<span from="13715" to="13724"/>
+</rel>
+</span>
+<span id="s349_n1" from="13770" to="13774">
+<rel label="obj">
+<span from="13775" to="13780"/>
+</rel>
+</span>
+<span id="s349_n2" from="13775" to="13780">
+<rel label="root">
+<span from="13770" to="13801"/>
+</rel>
+</span>
+<span id="s349_n3" from="13781" to="13784">
+<rel label="nsubj">
+<span from="13775" to="13780"/>
+</rel>
+</span>
+<span id="s349_n4" from="13785" to="13800">
+<rel label="obj">
+<span from="13775" to="13780"/>
+</rel>
+</span>
+<span id="s349_n5" from="13800" to="13801">
+<rel label="punct">
+<span from="13775" to="13780"/>
+</rel>
+</span>
+<span id="s350_n1" from="13802" to="13804">
+<rel label="expl">
+<span from="13805" to="13813"/>
+</rel>
+</span>
+<span id="s350_n2" from="13805" to="13813">
+<rel label="root">
+<span from="13802" to="13864"/>
+</rel>
+</span>
+<span id="s350_n3" from="13814" to="13818">
+<rel label="det">
+<span from="13819" to="13828"/>
+</rel>
+</span>
+<span id="s350_n4" from="13819" to="13828">
+<rel label="nsubj">
+<span from="13805" to="13813"/>
+</rel>
+</span>
+<span id="s350_n5" from="13828" to="13829">
+<rel label="punct">
+<span from="13848" to="13863"/>
+</rel>
+</span>
+<span id="s350_n6" from="13830" to="13833">
+<rel label="nsubj">
+<span from="13848" to="13863"/>
+</rel>
+</span>
+<span id="s350_n7" from="13834" to="13839">
+<rel label="advmod">
+<span from="13848" to="13863"/>
+</rel>
+</span>
+<span id="s350_n8" from="13840" to="13843">
+<rel label="case">
+<span from="13848" to="13863"/>
+</rel>
+</span>
+<span id="s350_n9" from="13844" to="13847">
+<rel label="det">
+<span from="13848" to="13863"/>
+</rel>
+</span>
+<span id="s350_n10" from="13848" to="13863">
+<rel label="obl">
+<span from="13805" to="13813"/>
+</rel>
+</span>
+<span id="s350_n11" from="13863" to="13864">
+<rel label="punct">
+<span from="13805" to="13813"/>
+</rel>
+</span>
+<span id="s351_n1" from="13866" to="13876">
+<rel label="nsubj">
+<span from="13914" to="13921"/>
+</rel>
+</span>
+<span id="s351_n2" from="13878" to="13881">
+<rel label="det">
+<span from="13882" to="13892"/>
+</rel>
+</span>
+<span id="s351_n3" from="13882" to="13892">
+<rel label="appos">
+<span from="13866" to="13876"/>
+</rel>
+</span>
+<span id="s351_n4" from="13893" to="13896">
+<rel label="det">
+<span from="13907" to="13913"/>
+</rel>
+</span>
+<span id="s351_n5" from="13897" to="13906">
+<rel label="amod">
+<span from="13907" to="13913"/>
+</rel>
+</span>
+<span id="s351_n6" from="13907" to="13913">
+<rel label="nmod">
+<span from="13882" to="13892"/>
+</rel>
+</span>
+<span id="s351_n7" from="13914" to="13921">
+<rel label="root">
+<span from="13866" to="13985"/>
+</rel>
+</span>
+<span id="s351_n8" from="13922" to="13926">
+<rel label="det">
+<span from="13927" to="13939"/>
+</rel>
+</span>
+<span id="s351_n9" from="13927" to="13939">
+<rel label="obj">
+<span from="13914" to="13921"/>
+</rel>
+</span>
+<span id="s351_n10" from="13940" to="13947">
+<rel label="amod">
+<span from="13948" to="13964"/>
+</rel>
+</span>
+<span id="s351_n11" from="13948" to="13964">
+<rel label="appos">
+<span from="13927" to="13939"/>
+</rel>
+</span>
+<span id="s351_n12" from="13965" to="13968">
+<rel label="case">
+<span from="13973" to="13984"/>
+</rel>
+</span>
+<span id="s351_n13" from="13969" to="13972">
+<rel label="det">
+<span from="13973" to="13984"/>
+</rel>
+</span>
+<span id="s351_n14" from="13973" to="13984">
+<rel label="obl">
+<span from="13914" to="13921"/>
+</rel>
+</span>
+<span id="s351_n15" from="13984" to="13985">
+<rel label="punct">
+<span from="13914" to="13921"/>
+</rel>
+</span>
+<span id="s352_n1" from="13986" to="13990">
+<rel label="mark">
+<span from="14017" to="14027"/>
+</rel>
+</span>
+<span id="s352_n2" from="13991" to="13994">
+<rel label="det">
+<span from="13995" to="13999"/>
+</rel>
+</span>
+<span id="s352_n3" from="13995" to="13999">
+<rel label="nsubj:pass">
+<span from="14017" to="14027"/>
+</rel>
+</span>
+<span id="s352_n4" from="14000" to="14003">
+<rel label="case">
+<span from="14011" to="14016"/>
+</rel>
+</span>
+<span id="s352_n5" from="14004" to="14010">
+<rel label="amod">
+<span from="14011" to="14016"/>
+</rel>
+</span>
+<span id="s352_n6" from="14011" to="14016">
+<rel label="obl">
+<span from="14017" to="14027"/>
+</rel>
+</span>
+<span id="s352_n7" from="14017" to="14027">
+<rel label="advcl">
+<span from="14077" to="14086"/>
+</rel>
+</span>
+<span id="s352_n8" from="14028" to="14031">
+<rel label="aux:pass">
+<span from="14017" to="14027"/>
+</rel>
+</span>
+<span id="s352_n9" from="14031" to="14032">
+<rel label="punct">
+<span from="14017" to="14027"/>
+</rel>
+</span>
+<span id="s352_n10" from="14033" to="14037">
+<rel label="aux">
+<span from="14077" to="14086"/>
+</rel>
+</span>
+<span id="s352_n11" from="14038" to="14041">
+<rel label="nsubj">
+<span from="14077" to="14086"/>
+</rel>
+</span>
+<span id="s352_n12" from="14042" to="14050">
+<rel label="amod">
+<span from="14062" to="14067"/>
+</rel>
+</span>
+<span id="s352_n13" from="14051" to="14054">
+<rel label="cc">
+<span from="14055" to="14061"/>
+</rel>
+</span>
+<span id="s352_n14" from="14055" to="14061">
+<rel label="conj">
+<span from="14042" to="14050"/>
+</rel>
+</span>
+<span id="s352_n15" from="14062" to="14067">
+<rel label="obj">
+<span from="14077" to="14086"/>
+</rel>
+</span>
+<span id="s352_n16" from="14068" to="14076">
+<rel label="advmod">
+<span from="14077" to="14086"/>
+</rel>
+</span>
+<span id="s352_n17" from="14077" to="14086">
+<rel label="root">
+<span from="13986" to="14092"/>
+</rel>
+</span>
+<span id="s352_n18" from="14087" to="14091">
+<rel label="cop">
+<span from="14077" to="14086"/>
+</rel>
+</span>
+<span id="s352_n19" from="14091" to="14092">
+<rel label="punct">
+<span from="14077" to="14086"/>
+</rel>
+</span>
+<span id="s353_n1" from="14093" to="14099">
+<rel label="det">
+<span from="14100" to="14106"/>
+</rel>
+</span>
+<span id="s353_n2" from="14100" to="14106">
+<rel label="nsubj">
+<span from="14137" to="14158"/>
+</rel>
+</span>
+<span id="s353_n3" from="14107" to="14111">
+<rel label="aux">
+<span from="14137" to="14158"/>
+</rel>
+</span>
+<span id="s353_n4" from="14112" to="14115">
+<rel label="det">
+<span from="14116" to="14120"/>
+</rel>
+</span>
+<span id="s353_n5" from="14116" to="14120">
+<rel label="obj">
+<span from="14137" to="14158"/>
+</rel>
+</span>
+<span id="s353_n6" from="14121" to="14126">
+<rel label="det">
+<span from="14127" to="14136"/>
+</rel>
+</span>
+<span id="s353_n7" from="14127" to="14136">
+<rel label="nmod">
+<span from="14116" to="14120"/>
+</rel>
+</span>
+<span id="s353_n8" from="14137" to="14158">
+<rel label="root">
+<span from="14093" to="14236"/>
+</rel>
+</span>
+<span id="s353_n9" from="14159" to="14162">
+<rel label="cc">
+<span from="14206" to="14228"/>
+</rel>
+</span>
+<span id="s353_n10" from="14163" to="14167">
+<rel label="aux">
+<span from="14206" to="14228"/>
+</rel>
+</span>
+<span id="s353_n11" from="14168" to="14171">
+<rel label="case">
+<span from="14176" to="14188"/>
+</rel>
+</span>
+<span id="s353_n12" from="14172" to="14175">
+<rel label="det">
+<span from="14176" to="14188"/>
+</rel>
+</span>
+<span id="s353_n13" from="14176" to="14188">
+<rel label="obl">
+<span from="14206" to="14228"/>
+</rel>
+</span>
+<span id="s353_n14" from="14189" to="14192">
+<rel label="case">
+<span from="14193" to="14205"/>
+</rel>
+</span>
+<span id="s353_n15" from="14193" to="14205">
+<rel label="nmod">
+<span from="14176" to="14188"/>
+</rel>
+</span>
+<span id="s353_n16" from="14206" to="14228">
+<rel label="conj">
+<span from="14137" to="14158"/>
+</rel>
+</span>
+<span id="s353_n17" from="14229" to="14235">
+<rel label="aux:pass">
+<span from="14206" to="14228"/>
+</rel>
+</span>
+<span id="s353_n18" from="14235" to="14236">
+<rel label="punct">
+<span from="14137" to="14158"/>
+</rel>
+</span>
+<span id="s354_n1" from="14237" to="14239">
+<rel label="case">
+<span from="14240" to="14244"/>
+</rel>
+</span>
+<span id="s354_n2" from="14240" to="14244">
+<rel label="obl">
+<span from="14272" to="14282"/>
+</rel>
+</span>
+<span id="s354_n3" from="14245" to="14248">
+<rel label="det">
+<span from="14261" to="14271"/>
+</rel>
+</span>
+<span id="s354_n4" from="14249" to="14260">
+<rel label="amod">
+<span from="14261" to="14271"/>
+</rel>
+</span>
+<span id="s354_n5" from="14261" to="14271">
+<rel label="nmod">
+<span from="14240" to="14244"/>
+</rel>
+</span>
+<span id="s354_n6" from="14272" to="14282">
+<rel label="root">
+<span from="14237" to="14380"/>
+</rel>
+</span>
+<span id="s354_n7" from="14283" to="14286">
+<rel label="nsubj">
+<span from="14272" to="14282"/>
+</rel>
+</span>
+<span id="s354_n8" from="14287" to="14299">
+<rel label="obj">
+<span from="14272" to="14282"/>
+</rel>
+</span>
+<span id="s354_n9" from="14300" to="14303">
+<rel label="case">
+<span from="14304" to="14314"/>
+</rel>
+</span>
+<span id="s354_n10" from="14304" to="14314">
+<rel label="obl">
+<span from="14272" to="14282"/>
+</rel>
+</span>
+<span id="s354_n11" from="14314" to="14315">
+<rel label="punct">
+<span from="14364" to="14374"/>
+</rel>
+</span>
+<span id="s354_n12" from="14316" to="14321">
+<rel label="advmod">
+<span from="14364" to="14374"/>
+</rel>
+</span>
+<span id="s354_n13" from="14322" to="14325">
+<rel label="det">
+<span from="14326" to="14337"/>
+</rel>
+</span>
+<span id="s354_n14" from="14326" to="14337">
+<rel label="nsubj:pass">
+<span from="14364" to="14374"/>
+</rel>
+</span>
+<span id="s354_n15" from="14338" to="14341">
+<rel label="advmod">
+<span from="14364" to="14374"/>
+</rel>
+</span>
+<span id="s354_n16" from="14342" to="14345">
+<rel label="case">
+<span from="14350" to="14363"/>
+</rel>
+</span>
+<span id="s354_n17" from="14346" to="14349">
+<rel label="det">
+<span from="14350" to="14363"/>
+</rel>
+</span>
+<span id="s354_n18" from="14350" to="14363">
+<rel label="obl">
+<span from="14364" to="14374"/>
+</rel>
+</span>
+<span id="s354_n19" from="14364" to="14374">
+<rel label="acl">
+<span from="14272" to="14282"/>
+</rel>
+</span>
+<span id="s354_n20" from="14375" to="14379">
+<rel label="aux:pass">
+<span from="14364" to="14374"/>
+</rel>
+</span>
+<span id="s354_n21" from="14379" to="14380">
+<rel label="punct">
+<span from="14272" to="14282"/>
+</rel>
+</span>
+<span id="s355_n1" from="14381" to="14385">
+<rel label="nsubj:pass">
+<span from="14551" to="14561"/>
+</rel>
+</span>
+<span id="s355_n2" from="14385" to="14386">
+<rel label="flat">
+<span from="14381" to="14385"/>
+</rel>
+</span>
+<span id="s355_n3" from="14386" to="14394">
+<rel label="appos">
+<span from="14381" to="14385"/>
+</rel>
+</span>
+<span id="s355_n4" from="14395" to="14399">
+<rel label="flat:name">
+<span from="14381" to="14385"/>
+</rel>
+</span>
+<span id="s355_n5" from="14399" to="14400">
+<rel label="flat">
+<span from="14381" to="14385"/>
+</rel>
+</span>
+<span id="s355_n6" from="14400" to="14410">
+<rel label="appos">
+<span from="14381" to="14385"/>
+</rel>
+</span>
+<span id="s355_n7" from="14412" to="14420">
+<rel label="appos">
+<span from="14400" to="14410"/>
+</rel>
+</span>
+<span id="s355_n8" from="14422" to="14426">
+<rel label="mark">
+<span from="14508" to="14517"/>
+</rel>
+</span>
+<span id="s355_n9" from="14427" to="14429">
+<rel label="case">
+<span from="14436" to="14442"/>
+</rel>
+</span>
+<span id="s355_n10" from="14430" to="14435">
+<rel label="det">
+<span from="14436" to="14442"/>
+</rel>
+</span>
+<span id="s355_n11" from="14436" to="14442">
+<rel label="obl">
+<span from="14508" to="14517"/>
+</rel>
+</span>
+<span id="s355_n12" from="14443" to="14455">
+<rel label="nsubj:pass">
+<span from="14508" to="14517"/>
+</rel>
+</span>
+<span id="s355_n13" from="14456" to="14459">
+<rel label="case">
+<span from="14496" to="14507"/>
+</rel>
+</span>
+<span id="s355_n14" from="14460" to="14469">
+<rel label="advmod">
+<span from="14482" to="14495"/>
+</rel>
+</span>
+<span id="s355_n15" from="14470" to="14481">
+<rel label="advmod">
+<span from="14482" to="14495"/>
+</rel>
+</span>
+<span id="s355_n16" from="14482" to="14495">
+<rel label="amod">
+<span from="14496" to="14507"/>
+</rel>
+</span>
+<span id="s355_n17" from="14496" to="14507">
+<rel label="nmod">
+<span from="14443" to="14455"/>
+</rel>
+</span>
+<span id="s355_n18" from="14508" to="14517">
+<rel label="advcl">
+<span from="14551" to="14561"/>
+</rel>
+</span>
+<span id="s355_n19" from="14518" to="14524">
+<rel label="aux:pass">
+<span from="14508" to="14517"/>
+</rel>
+</span>
+<span id="s355_n20" from="14524" to="14525">
+<rel label="punct">
+<span from="14508" to="14517"/>
+</rel>
+</span>
+<span id="s355_n21" from="14526" to="14530">
+<rel label="aux">
+<span from="14551" to="14561"/>
+</rel>
+</span>
+<span id="s355_n22" from="14531" to="14544">
+<rel label="nsubj:pass">
+<span from="14551" to="14561"/>
+</rel>
+</span>
+<span id="s355_n23" from="14545" to="14550">
+<rel label="advmod">
+<span from="14551" to="14561"/>
+</rel>
+</span>
+<span id="s355_n24" from="14551" to="14561">
+<rel label="root">
+<span from="14381" to="14569"/>
+</rel>
+</span>
+<span id="s355_n25" from="14562" to="14568">
+<rel label="aux:pass">
+<span from="14551" to="14561"/>
+</rel>
+</span>
+<span id="s355_n26" from="14568" to="14569">
+<rel label="punct">
+<span from="14551" to="14561"/>
+</rel>
+</span>
+<span id="s356_n1" from="14570" to="14578">
+<rel label="advmod">
+<span from="14579" to="14587"/>
+</rel>
+</span>
+<span id="s356_n2" from="14579" to="14587">
+<rel label="root">
+<span from="14570" to="14720"/>
+</rel>
+</span>
+<span id="s356_n3" from="14588" to="14591">
+<rel label="nsubj">
+<span from="14579" to="14587"/>
+</rel>
+</span>
+<span id="s356_n4" from="14592" to="14597">
+<rel label="case">
+<span from="14604" to="14614"/>
+</rel>
+</span>
+<span id="s356_n5" from="14598" to="14603">
+<rel label="det">
+<span from="14604" to="14614"/>
+</rel>
+</span>
+<span id="s356_n6" from="14604" to="14614">
+<rel label="obl">
+<span from="14579" to="14587"/>
+</rel>
+</span>
+<span id="s356_n7" from="14615" to="14618">
+<rel label="det">
+<span from="14619" to="14627"/>
+</rel>
+</span>
+<span id="s356_n8" from="14619" to="14627">
+<rel label="obj">
+<span from="14579" to="14587"/>
+</rel>
+</span>
+<span id="s356_n9" from="14627" to="14628">
+<rel label="punct">
+<span from="14641" to="14649"/>
+</rel>
+</span>
+<span id="s356_n10" from="14629" to="14632">
+<rel label="case">
+<span from="14633" to="14636"/>
+</rel>
+</span>
+<span id="s356_n11" from="14633" to="14636">
+<rel label="nmod">
+<span from="14641" to="14649"/>
+</rel>
+</span>
+<span id="s356_n12" from="14637" to="14640">
+<rel label="det">
+<span from="14641" to="14649"/>
+</rel>
+</span>
+<span id="s356_n13" from="14641" to="14649">
+<rel label="nsubj">
+<span from="14579" to="14587"/>
+</rel>
+</span>
+<span id="s356_n14" from="14650" to="14653">
+<rel label="det">
+<span from="14654" to="14666"/>
+</rel>
+</span>
+<span id="s356_n15" from="14654" to="14666">
+<rel label="nmod">
+<span from="14641" to="14649"/>
+</rel>
+</span>
+<span id="s356_n16" from="14667" to="14670">
+<rel label="case">
+<span from="14675" to="14686"/>
+</rel>
+</span>
+<span id="s356_n17" from="14671" to="14674">
+<rel label="det">
+<span from="14675" to="14686"/>
+</rel>
+</span>
+<span id="s356_n18" from="14675" to="14686">
+<rel label="nmod">
+<span from="14641" to="14649"/>
+</rel>
+</span>
+<span id="s356_n19" from="14687" to="14690">
+<rel label="case">
+<span from="14696" to="14719"/>
+</rel>
+</span>
+<span id="s356_n20" from="14691" to="14695">
+<rel label="det">
+<span from="14696" to="14719"/>
+</rel>
+</span>
+<span id="s356_n21" from="14696" to="14719">
+<rel label="nmod">
+<span from="14675" to="14686"/>
+</rel>
+</span>
+<span id="s356_n22" from="14719" to="14720">
+<rel label="punct">
+<span from="14579" to="14587"/>
+</rel>
+</span>
+<span id="s357_n1" from="14722" to="14732">
+<rel label="advmod">
+<span from="14757" to="14764"/>
+</rel>
+</span>
+<span id="s357_n2" from="14734" to="14738">
+<rel label="det">
+<span from="14739" to="14756"/>
+</rel>
+</span>
+<span id="s357_n3" from="14739" to="14756">
+<rel label="obj">
+<span from="14757" to="14764"/>
+</rel>
+</span>
+<span id="s357_n4" from="14757" to="14764">
+<rel label="root">
+<span from="14722" to="14835"/>
+</rel>
+</span>
+<span id="s357_n5" from="14765" to="14767">
+<rel label="advmod">
+<span from="14792" to="14803"/>
+</rel>
+</span>
+<span id="s357_n6" from="14768" to="14776">
+<rel label="amod">
+<span from="14804" to="14813"/>
+</rel>
+</span>
+<span id="s357_n7" from="14777" to="14791">
+<rel label="advmod">
+<span from="14792" to="14803"/>
+</rel>
+</span>
+<span id="s357_n8" from="14792" to="14803">
+<rel label="amod">
+<span from="14804" to="14813"/>
+</rel>
+</span>
+<span id="s357_n9" from="14804" to="14813">
+<rel label="nsubj">
+<span from="14757" to="14764"/>
+</rel>
+</span>
+<span id="s357_n10" from="14814" to="14818">
+<rel label="cc">
+<span from="14819" to="14830"/>
+</rel>
+</span>
+<span id="s357_n11" from="14819" to="14830">
+<rel label="conj">
+<span from="14804" to="14813"/>
+</rel>
+</span>
+<span id="s357_n12" from="14831" to="14834">
+<rel label="compound:prt">
+<span from="14757" to="14764"/>
+</rel>
+</span>
+<span id="s357_n13" from="14834" to="14835">
+<rel label="punct">
+<span from="14757" to="14764"/>
+</rel>
+</span>
+<span id="s358_n1" from="14836" to="14839">
+<rel label="case">
+<span from="14840" to="14845"/>
+</rel>
+</span>
+<span id="s358_n2" from="14840" to="14845">
+<rel label="obl">
+<span from="14846" to="14855"/>
+</rel>
+</span>
+<span id="s358_n3" from="14846" to="14855">
+<rel label="root">
+<span from="14836" to="14967"/>
+</rel>
+</span>
+<span id="s358_n4" from="14856" to="14859">
+<rel label="nsubj">
+<span from="14846" to="14855"/>
+</rel>
+</span>
+<span id="s358_n5" from="14860" to="14866">
+<rel label="obj">
+<span from="14846" to="14855"/>
+</rel>
+</span>
+<span id="s358_n6" from="14867" to="14870">
+<rel label="case">
+<span from="14886" to="14906"/>
+</rel>
+</span>
+<span id="s358_n7" from="14871" to="14885">
+<rel label="amod">
+<span from="14886" to="14906"/>
+</rel>
+</span>
+<span id="s358_n8" from="14886" to="14906">
+<rel label="nmod">
+<span from="14860" to="14866"/>
+</rel>
+</span>
+<span id="s358_n9" from="14906" to="14907">
+<rel label="punct">
+<span from="14944" to="14954"/>
+</rel>
+</span>
+<span id="s358_n10" from="14908" to="14915">
+<rel label="advmod">
+<span from="14944" to="14954"/>
+</rel>
+</span>
+<span id="s358_n11" from="14916" to="14920">
+<rel label="advmod">
+<span from="14935" to="14943"/>
+</rel>
+</span>
+<span id="s358_n12" from="14921" to="14924">
+<rel label="det">
+<span from="14935" to="14943"/>
+</rel>
+</span>
+<span id="s358_n13" from="14925" to="14934">
+<rel label="amod">
+<span from="14935" to="14943"/>
+</rel>
+</span>
+<span id="s358_n14" from="14935" to="14943">
+<rel label="nsubj:pass">
+<span from="14944" to="14954"/>
+</rel>
+</span>
+<span id="s358_n15" from="14944" to="14954">
+<rel label="acl">
+<span from="14846" to="14855"/>
+</rel>
+</span>
+<span id="s358_n16" from="14955" to="14961">
+<rel label="aux:pass">
+<span from="14944" to="14954"/>
+</rel>
+</span>
+<span id="s358_n17" from="14962" to="14966">
+<rel label="aux">
+<span from="14944" to="14954"/>
+</rel>
+</span>
+<span id="s358_n18" from="14966" to="14967">
+<rel label="punct">
+<span from="14846" to="14855"/>
+</rel>
+</span>
+<span id="s359_n1" from="14968" to="14970">
+<rel label="case">
+<span from="14987" to="14997"/>
+</rel>
+</span>
+<span id="s359_n2" from="14971" to="14974">
+<rel label="det">
+<span from="14987" to="14997"/>
+</rel>
+</span>
+<span id="s359_n3" from="14975" to="14986">
+<rel label="amod">
+<span from="14987" to="14997"/>
+</rel>
+</span>
+<span id="s359_n4" from="14987" to="14997">
+<rel label="obl">
+<span from="15014" to="15023"/>
+</rel>
+</span>
+<span id="s359_n5" from="14998" to="15004">
+<rel label="aux:pass">
+<span from="15014" to="15023"/>
+</rel>
+</span>
+<span id="s359_n6" from="15005" to="15010">
+<rel label="nsubj:pass">
+<span from="15014" to="15023"/>
+</rel>
+</span>
+<span id="s359_n7" from="15011" to="15013">
+<rel label="advmod">
+<span from="15014" to="15023"/>
+</rel>
+</span>
+<span id="s359_n8" from="15014" to="15023">
+<rel label="root">
+<span from="14968" to="15213"/>
+</rel>
+</span>
+<span id="s359_n9" from="15023" to="15024">
+<rel label="punct">
+<span from="15096" to="15110"/>
+</rel>
+</span>
+<span id="s359_n10" from="15025" to="15032">
+<rel label="nsubj">
+<span from="15096" to="15110"/>
+</rel>
+</span>
+<span id="s359_n11" from="15033" to="15046">
+<rel label="obj">
+<span from="15096" to="15110"/>
+</rel>
+</span>
+<span id="s359_n12" from="15047" to="15050">
+<rel label="case">
+<span from="15056" to="15068"/>
+</rel>
+</span>
+<span id="s359_n13" from="15051" to="15055">
+<rel label="nummod">
+<span from="15056" to="15068"/>
+</rel>
+</span>
+<span id="s359_n14" from="15056" to="15068">
+<rel label="nmod">
+<span from="15033" to="15046"/>
+</rel>
+</span>
+<span id="s359_n15" from="15069" to="15070">
+<rel label="punct">
+<span from="15076" to="15079"/>
+</rel>
+</span>
+<span id="s359_n16" from="15070" to="15072">
+<rel label="case">
+<span from="15073" to="15075"/>
+</rel>
+</span>
+<span id="s359_n17" from="15073" to="15075">
+<rel label="nmod">
+<span from="15076" to="15079"/>
+</rel>
+</span>
+<span id="s359_n18" from="15076" to="15079">
+<rel label="appos">
+<span from="15056" to="15068"/>
+</rel>
+</span>
+<span id="s359_n19" from="15079" to="15080">
+<rel label="punct">
+<span from="15081" to="15085"/>
+</rel>
+</span>
+<span id="s359_n20" from="15081" to="15085">
+<rel label="conj">
+<span from="15076" to="15079"/>
+</rel>
+</span>
+<span id="s359_n21" from="15086" to="15089">
+<rel label="cc">
+<span from="15090" to="15094"/>
+</rel>
+</span>
+<span id="s359_n22" from="15090" to="15094">
+<rel label="conj">
+<span from="15076" to="15079"/>
+</rel>
+</span>
+<span id="s359_n23" from="15094" to="15095">
+<rel label="punct">
+<span from="15076" to="15079"/>
+</rel>
+</span>
+<span id="s359_n24" from="15096" to="15110">
+<rel label="acl">
+<span from="15005" to="15010"/>
+</rel>
+</span>
+<span id="s359_n25" from="15110" to="15111">
+<rel label="punct">
+<span from="15208" to="15212"/>
+</rel>
+</span>
+<span id="s359_n26" from="15112" to="15119">
+<rel label="advmod">
+<span from="15208" to="15212"/>
+</rel>
+</span>
+<span id="s359_n27" from="15120" to="15138">
+<rel label="nsubj">
+<span from="15208" to="15212"/>
+</rel>
+</span>
+<span id="s359_n28" from="15139" to="15143">
+<rel label="advmod">
+<span from="15162" to="15174"/>
+</rel>
+</span>
+<span id="s359_n29" from="15144" to="15147">
+<rel label="case">
+<span from="15162" to="15174"/>
+</rel>
+</span>
+<span id="s359_n30" from="15148" to="15153">
+<rel label="det">
+<span from="15162" to="15174"/>
+</rel>
+</span>
+<span id="s359_n31" from="15154" to="15161">
+<rel label="amod">
+<span from="15162" to="15174"/>
+</rel>
+</span>
+<span id="s359_n32" from="15162" to="15174">
+<rel label="obl">
+<span from="15208" to="15212"/>
+</rel>
+</span>
+<span id="s359_n33" from="15175" to="15178">
+<rel label="det">
+<span from="15179" to="15195"/>
+</rel>
+</span>
+<span id="s359_n34" from="15179" to="15195">
+<rel label="nmod">
+<span from="15162" to="15174"/>
+</rel>
+</span>
+<span id="s359_n35" from="15196" to="15200">
+<rel label="advmod">
+<span from="15201" to="15207"/>
+</rel>
+</span>
+<span id="s359_n36" from="15201" to="15207">
+<rel label="advmod">
+<span from="15208" to="15212"/>
+</rel>
+</span>
+<span id="s359_n37" from="15208" to="15212">
+<rel label="acl">
+<span from="15096" to="15110"/>
+</rel>
+</span>
+<span id="s359_n38" from="15212" to="15213">
+<rel label="punct">
+<span from="15014" to="15023"/>
+</rel>
+</span>
+<span id="s360_n1" from="15214" to="15217">
+<rel label="det">
+<span from="15218" to="15225"/>
+</rel>
+</span>
+<span id="s360_n2" from="15218" to="15225">
+<rel label="root">
+<span from="15214" to="15300"/>
+</rel>
+</span>
+<span id="s360_n3" from="15226" to="15229">
+<rel label="case">
+<span from="15245" to="15252"/>
+</rel>
+</span>
+<span id="s360_n4" from="15230" to="15232">
+<rel label="advmod">
+<span from="15233" to="15244"/>
+</rel>
+</span>
+<span id="s360_n5" from="15233" to="15244">
+<rel label="amod">
+<span from="15245" to="15252"/>
+</rel>
+</span>
+<span id="s360_n6" from="15245" to="15252">
+<rel label="nmod">
+<span from="15218" to="15225"/>
+</rel>
+</span>
+<span id="s360_n7" from="15253" to="15256">
+<rel label="cop">
+<span from="15218" to="15225"/>
+</rel>
+</span>
+<span id="s360_n8" from="15257" to="15262">
+<rel label="advmod">
+<span from="15218" to="15225"/>
+</rel>
+</span>
+<span id="s360_n9" from="15263" to="15266">
+<rel label="det">
+<span from="15267" to="15276"/>
+</rel>
+</span>
+<span id="s360_n10" from="15267" to="15276">
+<rel label="nsubj">
+<span from="15218" to="15225"/>
+</rel>
+</span>
+<span id="s360_n11" from="15277" to="15280">
+<rel label="flat:name">
+<span from="15267" to="15276"/>
+</rel>
+</span>
+<span id="s360_n12" from="15281" to="15284">
+<rel label="case">
+<span from="15289" to="15299"/>
+</rel>
+</span>
+<span id="s360_n13" from="15285" to="15288">
+<rel label="det">
+<span from="15289" to="15299"/>
+</rel>
+</span>
+<span id="s360_n14" from="15289" to="15299">
+<rel label="nmod">
+<span from="15267" to="15276"/>
+</rel>
+</span>
+<span id="s360_n15" from="15299" to="15300">
+<rel label="punct">
+<span from="15218" to="15225"/>
+</rel>
+</span>
+<span id="s361_n1" from="15301" to="15304">
+<rel label="nsubj">
+<span from="15335" to="15341"/>
+</rel>
+</span>
+<span id="s361_n2" from="15305" to="15309">
+<rel label="cop">
+<span from="15335" to="15341"/>
+</rel>
+</span>
+<span id="s361_n3" from="15310" to="15312">
+<rel label="case">
+<span from="15319" to="15324"/>
+</rel>
+</span>
+<span id="s361_n4" from="15313" to="15318">
+<rel label="det">
+<span from="15319" to="15324"/>
+</rel>
+</span>
+<span id="s361_n5" from="15319" to="15324">
+<rel label="obl">
+<span from="15335" to="15341"/>
+</rel>
+</span>
+<span id="s361_n6" from="15325" to="15334">
+<rel label="advmod">
+<span from="15335" to="15341"/>
+</rel>
+</span>
+<span id="s361_n7" from="15335" to="15341">
+<rel label="root">
+<span from="15301" to="15389"/>
+</rel>
+</span>
+<span id="s361_n8" from="15342" to="15345">
+<rel label="case">
+<span from="15380" to="15388"/>
+</rel>
+</span>
+<span id="s361_n9" from="15346" to="15367">
+<rel label="advmod">
+<span from="15368" to="15379"/>
+</rel>
+</span>
+<span id="s361_n10" from="15368" to="15379">
+<rel label="amod">
+<span from="15380" to="15388"/>
+</rel>
+</span>
+<span id="s361_n11" from="15380" to="15388">
+<rel label="obl">
+<span from="15335" to="15341"/>
+</rel>
+</span>
+<span id="s361_n12" from="15388" to="15389">
+<rel label="punct">
+<span from="15335" to="15341"/>
+</rel>
+</span>
+<span id="s362_n1" from="15391" to="15396">
+<rel label="root">
+<span from="15391" to="15401"/>
+</rel>
+</span>
+<span id="s362_n2" from="15397" to="15401">
+<rel label="advmod">
+<span from="15391" to="15396"/>
+</rel>
+</span>
+</spanList>
+</layer>
diff --git a/t/real/corpus/ICCGER/DeReKo-WPD17/A00-82293/ud/morpho.xml b/t/real/corpus/ICCGER/DeReKo-WPD17/A00-82293/ud/morpho.xml
new file mode 100644
index 0000000..90e2bca
--- /dev/null
+++ b/t/real/corpus/ICCGER/DeReKo-WPD17/A00-82293/ud/morpho.xml
@@ -0,0 +1,23951 @@
+<?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="ICCGER_DeReKo-WPD17.A00-82293" xmlns="http://ids-mannheim.de/ns/KorAP" version="KorAP-0.4">
+<spanList>
+ <span id="s245_n1" from="0" to="2">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">PRON</f>
+ <f name="lemma">Es</f>
+ <f name="msd">Case=Nom|Gender=Neut|Number=Sing|Person=3|PronType=Prs</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s245_n2" from="3" to="6">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">AUX</f>
+ <f name="lemma">sein</f>
+ <f name="msd">Mood=Ind|Number=Sing|Person=3|Tense=Pres|VerbForm=Fin</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s245_n3" from="7" to="11">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">ADV</f>
+ <f name="lemma">aber</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s245_n4" from="12" to="19">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">ADJ</f>
+ <f name="lemma">möglich</f>
+ <f name="msd">Degree=Pos|Variant=Short</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s245_n5" from="19" to="20">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">PUNCT</f>
+ <f name="lemma">,</f>
+ <f name="msd">PunctType=Comm</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s245_n6" from="21" to="24">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">DET</f>
+ <f name="lemma">die</f>
+ <f name="msd">Case=Acc|Number=Plur|PronType=Art</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s245_n7" from="25" to="41">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">NOUN</f>
+ <f name="lemma">Fehler</f>
+ <f name="msd">Gender=Masc|Number=Plur|Person=3</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s245_n8" from="42" to="51">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">ADP</f>
+ <f name="lemma">gegenüber</f>
+ <f name="msd">AdpType=Prep|Case=Dat</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s245_n9" from="52" to="57">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">DET</f>
+ <f name="lemma">einem</f>
+ <f name="msd">Case=Dat|Gender=Neut|Number=Sing|PronType=Art</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s245_n10" from="58" to="67">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">ADJ</f>
+ <f name="lemma">einfach</f>
+ <f name="msd">Degree=Pos|Number=Sing</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s245_n11" from="68" to="74">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">NOUN</f>
+ <f name="lemma">System</f>
+ <f name="msd">Gender=Neut|Number=Sing|Person=3</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s245_n12" from="75" to="78">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">ADP</f>
+ <f name="lemma">aus</f>
+ <f name="msd">AdpType=Prep|Case=Dat</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s245_n13" from="79" to="84">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">DET</f>
+ <f name="lemma">einer</f>
+ <f name="msd">Case=Dat|Gender=Fem|Number=Sing|PronType=Art</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s245_n14" from="85" to="94">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">ADJ</f>
+ <f name="lemma">einzeln</f>
+ <f name="msd">Degree=Pos|Number=Sing</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s245_n15" from="95" to="100">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">NOUN</f>
+ <f name="lemma">Linse</f>
+ <f name="msd">Gender=Fem|Number=Sing|Person=3</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s245_n16" from="101" to="105">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">CCONJ</f>
+ <f name="lemma">oder</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s245_n17" from="106" to="111">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">DET</f>
+ <f name="lemma">einem</f>
+ <f name="msd">Case=Dat|Gender=Masc|Number=Sing|PronType=Art</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s245_n18" from="112" to="119">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">NOUN</f>
+ <f name="lemma">Spiegel</f>
+ <f name="msd">Gender=Masc|Number=Sing|Person=3</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s245_n19" from="120" to="124">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">ADV</f>
+ <f name="lemma">sehr</f>
+ <f name="msd">Degree=Pos</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s245_n20" from="125" to="130">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">ADJ</f>
+ <f name="lemma">stark</f>
+ <f name="msd">Degree=Pos|Variant=Short</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s245_n21" from="131" to="133">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">PART</f>
+ <f name="lemma">zu</f>
+ <f name="msd">PartType=Inf</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s245_n22" from="134" to="144">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">VERB</f>
+ <f name="lemma">reduzieren</f>
+ <f name="msd">VerbForm=Inf</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s245_n23" from="144" to="145">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">PUNCT</f>
+ <f name="lemma">.</f>
+ <f name="msd">PunctType=Peri</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s246_n1" from="146" to="150">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">ADV</f>
+ <f name="lemma">Dazu</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s246_n2" from="151" to="157">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">AUX</f>
+ <f name="lemma">werden</f>
+ <f name="msd">Mood=Ind|Number=Plur|Person=3|Tense=Pres|VerbForm=Fin</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s246_n3" from="158" to="165">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">DET</f>
+ <f name="lemma">mehrer</f>
+ <f name="msd">Case=Nom|Number=Plur|Person=3|PronType=Ind,Neg,Tot</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s246_n4" from="166" to="172">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">NOUN</f>
+ <f name="lemma">Linse</f>
+ <f name="msd">Gender=Fem|Number=Plur|Person=3</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s246_n5" from="173" to="176">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">ADP</f>
+ <f name="lemma">aus</f>
+ <f name="msd">AdpType=Prep|Case=Dat</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s246_n6" from="177" to="190">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">ADJ</f>
+ <f name="lemma">verscheiden</f>
+ <f name="msd">Case=Dat|Degree=Pos|Number=Plur</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s246_n7" from="191" to="201">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">NOUN</f>
+ <f name="lemma">Glassort</f>
+ <f name="msd">Gender=Fem|Number=Plur|Person=3</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s246_n8" from="202" to="206">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">CCONJ</f>
+ <f name="lemma">bzw.</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s246_n9" from="207" to="214">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">NOUN</f>
+ <f name="lemma">Spiegel</f>
+ <f name="msd">Gender=Masc|Number=Sing|Person=3</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s246_n10" from="215" to="226">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">ADV</f>
+ <f name="lemma">miteinander</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s246_n11" from="227" to="237">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">VERB</f>
+ <f name="lemma">kombinieren</f>
+ <f name="msd">Aspect=Perf|VerbForm=Part</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s246_n12" from="238" to="241">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">CCONJ</f>
+ <f name="lemma">und</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s246_n13" from="242" to="247">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">ADV</f>
+ <f name="lemma">evtl.</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s246_n14" from="248" to="252">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">ADV</f>
+ <f name="lemma">auch</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s246_n15" from="253" to="264">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">ADJ</f>
+ <f name="lemma">asphärisch</f>
+ <f name="msd">Degree=Pos|Number=Plur</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s246_n16" from="265" to="272">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">NOUN</f>
+ <f name="lemma">Fläche</f>
+ <f name="msd">Gender=Fem|Number=Plur|Person=3</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s246_n17" from="273" to="283">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">VERB</f>
+ <f name="lemma">einsetzen</f>
+ <f name="msd">Aspect=Perf|VerbForm=Part</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s246_n18" from="283" to="284">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">PUNCT</f>
+ <f name="lemma">.</f>
+ <f name="msd">PunctType=Peri</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s247_n1" from="285" to="288">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">PRON</f>
+ <f name="lemma">Sie</f>
+ <f name="msd">Case=Nom|Number=Plur|Person=3|PronType=Prs</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s247_n2" from="289" to="295">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">AUX</f>
+ <f name="lemma">werden</f>
+ <f name="msd">Mood=Ind|Number=Plur|Person=3|Tense=Pres|VerbForm=Fin</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s247_n3" from="296" to="301">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">ADP</f>
+ <f name="lemma">durch</f>
+ <f name="msd">AdpType=Prep|Case=Acc</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s247_n4" from="302" to="306">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">DET</f>
+ <f name="lemma">eine</f>
+ <f name="msd">Case=Acc|Gender=Fem|Number=Sing|PronType=Art</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s247_n5" from="307" to="327">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">NOUN</f>
+ <f name="lemma">Rechnung</f>
+ <f name="msd">Gender=Fem|Number=Sing|Person=3</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s247_n6" from="328" to="330">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">ADV</f>
+ <f name="lemma">so</f>
+ <f name="msd">Degree=Pos</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s247_n7" from="331" to="352">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">VERB</f>
+ <f name="lemma">-</f>
+ <f name="msd">Aspect=Perf|VerbForm=Part</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s247_n8" from="352" to="353">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">PUNCT</f>
+ <f name="lemma">,</f>
+ <f name="msd">PunctType=Comm</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s247_n9" from="354" to="358">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">SCONJ</f>
+ <f name="lemma">dass</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s247_n10" from="359" to="362">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">DET</f>
+ <f name="lemma">die</f>
+ <f name="msd">Case=Nom|Gender=Fem|Number=Sing|PronType=Art</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s247_n11" from="363" to="373">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">ADJ</f>
+ <f name="lemma">gemeinsam</f>
+ <f name="msd">Degree=Pos|Gender=Fem|Number=Sing</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s247_n12" from="374" to="384">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">NOUN</f>
+ <f name="lemma">Auswirkung</f>
+ <f name="msd">Gender=Fem|Number=Sing|Person=3</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s247_n13" from="385" to="390">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">DET</f>
+ <f name="lemma">all</f>
+ <f name="msd">Case=Gen|Number=Plur|Person=3</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s247_n14" from="391" to="407">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">NOUN</f>
+ <f name="lemma">Fehler</f>
+ <f name="msd">Gender=Masc|Number=Plur|Person=3</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s247_n15" from="408" to="419">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">ADJ</f>
+ <f name="lemma">minimalwird</f>
+ <f name="msd">Degree=Pos|Variant=Short</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s247_n16" from="419" to="420">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">PUNCT</f>
+ <f name="lemma">.</f>
+ <f name="msd">PunctType=Peri</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s248_n1" from="421" to="425">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">PRON</f>
+ <f name="lemma">Dies</f>
+ <f name="msd">Case=Acc|Gender=Neut|Number=Sing|Person=3|PronType=Dem</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s248_n2" from="426" to="431">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">VERB</f>
+ <f name="lemma">nennen</f>
+ <f name="msd">Mood=Ind|Number=Sing|Person=3|Tense=Pres|VerbForm=Fin</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s248_n3" from="432" to="435">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">PRON</f>
+ <f name="lemma">man</f>
+ <f name="msd">Case=Nom|Number=Sing|Person=3|PronType=Ind,Neg,Tot</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s248_n4" from="436" to="446">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">NOUN</f>
+ <f name="lemma">Korrektion</f>
+ <f name="msd">Gender=Fem|Number=Sing|Person=3</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s248_n5" from="447" to="450">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">DET</f>
+ <f name="lemma">der</f>
+ <f name="msd">Case=Gen|Number=Plur|PronType=Art</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s248_n6" from="451" to="457">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">NOUN</f>
+ <f name="lemma">Fehler</f>
+ <f name="msd">Gender=Masc|Number=Plur|Person=3</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s248_n7" from="458" to="462">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">CCONJ</f>
+ <f name="lemma">bzw.</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s248_n8" from="463" to="475">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">ADJ</f>
+ <f name="lemma">desoptischen</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s248_n9" from="476" to="483">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">NOUN</f>
+ <f name="lemma">System</f>
+ <f name="msd">Case=Gen|Gender=Neut|Number=Sing|Person=3</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s248_n10" from="483" to="484">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">PUNCT</f>
+ <f name="lemma">.</f>
+ <f name="msd">PunctType=Peri</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s249_n1" from="485" to="491">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">DET</f>
+ <f name="lemma">dies</f>
+ <f name="msd">Case=Nom|Gender=Masc|Number=Sing|PronType=Dem</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s249_n2" from="492" to="499">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">NOUN</f>
+ <f name="lemma">Prozess</f>
+ <f name="msd">Gender=Masc|Number=Sing|Person=3</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s249_n3" from="500" to="503">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">DET</f>
+ <f name="lemma">der</f>
+ <f name="msd">Case=Gen|Gender=Fem|Number=Sing|PronType=Art</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s249_n4" from="504" to="514">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">NOUN</f>
+ <f name="lemma">Korrektion</f>
+ <f name="msd">Gender=Fem|Number=Sing|Person=3</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s249_n5" from="515" to="518">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">AUX</f>
+ <f name="lemma">sein</f>
+ <f name="msd">Mood=Ind|Number=Sing|Person=3|Tense=Pres|VerbForm=Fin</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s249_n6" from="519" to="534">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">ADJ</f>
+ <f name="lemma">sehrkomplizieren</f>
+ <f name="msd">Degree=Pos|Variant=Short</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s249_n7" from="534" to="535">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">PUNCT</f>
+ <f name="lemma">.</f>
+ <f name="msd">PunctType=Peri</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s250_n1" from="536" to="540">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">DET</f>
+ <f name="lemma">all</f>
+ <f name="msd">Case=Nom|Number=Plur|Person=3</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s250_n2" from="541" to="545">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">ADV</f>
+ <f name="lemma">hier</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s250_n3" from="546" to="559">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">ADJ</f>
+ <f name="lemma">beschreiben</f>
+ <f name="msd">Degree=Pos|Number=Plur</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s250_n4" from="560" to="576">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">NOUN</f>
+ <f name="lemma">Fehler</f>
+ <f name="msd">Gender=Masc|Number=Plur|Person=3</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s250_n5" from="577" to="587">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">VERB</f>
+ <f name="lemma">überlagern</f>
+ <f name="msd">Mood=Ind|Number=Plur|Person=3|Tense=Pres|VerbForm=Fin</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s250_n6" from="588" to="592">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">PRON</f>
+ <f name="lemma">sich</f>
+ <f name="msd">Case=Acc|Person=3|PronType=Prs|Reflex=Yes</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s250_n7" from="592" to="593">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">PUNCT</f>
+ <f name="lemma">,</f>
+ <f name="msd">PunctType=Comm</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s250_n8" from="594" to="606">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">NOUN</f>
+ <f name="lemma">Massnahme</f>
+ <f name="msd">Gender=Fem|Number=Plur|Person=3</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s250_n9" from="607" to="610">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">ADP</f>
+ <f name="lemma">zur</f>
+ <f name="msd">AdpType=Prep|Case=Acc</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s250_n10" from="611" to="623">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">NOUN</f>
+ <f name="lemma">Verminderung</f>
+ <f name="msd">Gender=Fem|Number=Sing|Person=3</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s250_n11" from="624" to="629">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">DET</f>
+ <f name="lemma">eines</f>
+ <f name="msd">Case=Gen|Gender=Masc|Number=Sing|PronType=Art</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s250_n12" from="630" to="640">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">ADJ</f>
+ <f name="lemma">bestimmen</f>
+ <f name="msd">Degree=Pos|Number=Sing</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s250_n13" from="641" to="648">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">NOUN</f>
+ <f name="lemma">Fehler</f>
+ <f name="msd">Case=Gen|Gender=Masc|Number=Sing|Person=3</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s250_n14" from="649" to="661">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">VERB</f>
+ <f name="lemma">beeinflussen</f>
+ <f name="msd">Mood=Ind|Number=Plur|Person=3|Tense=Pres|VerbForm=Fin</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s250_n15" from="662" to="675">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">ADJ</f>
+ <f name="lemma">imallgemein</f>
+ <f name="msd">Degree=Pos|Variant=Short</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s250_n16" from="676" to="680">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">ADV</f>
+ <f name="lemma">auch</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s250_n17" from="681" to="685">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">DET</f>
+ <f name="lemma">all</f>
+ <f name="msd">Case=Acc|Number=Plur|Person=3</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s250_n18" from="686" to="693">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">PRON</f>
+ <f name="lemma">ander</f>
+ <f name="msd">Degree=Pos|Number=Plur</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s250_n19" from="693" to="694">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">PUNCT</f>
+ <f name="lemma">.</f>
+ <f name="msd">PunctType=Peri</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s251_n1" from="695" to="698">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">ADV</f>
+ <f name="lemma">Nur</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s251_n2" from="699" to="702">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">ADP</f>
+ <f name="lemma">bei</f>
+ <f name="msd">AdpType=Prep|Case=Dat</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s251_n3" from="703" to="711">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">NOUN</f>
+ <f name="lemma">System</f>
+ <f name="msd">Case=Dat|Gender=Neut|Number=Plur|Person=3</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s251_n4" from="711" to="712">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">PUNCT</f>
+ <f name="lemma">,</f>
+ <f name="msd">PunctType=Comm</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s251_n5" from="713" to="716">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">PRON</f>
+ <f name="lemma">die</f>
+ <f name="msd">Case=Nom|Number=Plur|Person=3|PronType=Rel</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s251_n6" from="717" to="731">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">ADV</f>
+ <f name="lemma">ausschließlich</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s251_n7" from="732" to="737">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">ADP</f>
+ <f name="lemma">durch</f>
+ <f name="msd">AdpType=Prep|Case=Acc</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s251_n8" from="738" to="745">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">NOUN</f>
+ <f name="lemma">Spiegel</f>
+ <f name="msd">Gender=Masc|Number=Plur|Person=3</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s251_n9" from="746" to="754">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">VERB</f>
+ <f name="lemma">abbilden</f>
+ <f name="msd">Mood=Ind|Number=Plur|Person=3|Tense=Pres|VerbForm=Fin</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s251_n10" from="754" to="755">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">PUNCT</f>
+ <f name="lemma">,</f>
+ <f name="msd">PunctType=Comm</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s251_n11" from="756" to="761">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">VERB</f>
+ <f name="lemma">treten</f>
+ <f name="msd">Mood=Ind|Number=Sing|Person=3|Tense=Pres|VerbForm=Fin</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s251_n12" from="762" to="766">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">DET</f>
+ <f name="lemma">kein</f>
+ <f name="msd">Case=Nom|Gender=Masc|Number=Sing|Person=3|PronType=Ind,Neg,Tot</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s251_n13" from="767" to="777">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">NOUN</f>
+ <f name="lemma">Farbfehler</f>
+ <f name="msd">Gender=Masc|Number=Sing|Person=3</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s251_n14" from="778" to="781">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">ADP</f>
+ <f name="lemma">auf</f>
+ <f name="msd">PartType=Vbp</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s251_n15" from="781" to="782">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">PUNCT</f>
+ <f name="lemma">.</f>
+ <f name="msd">PunctType=Peri</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s252_n1" from="784" to="800">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">ADJ</f>
+ <f name="lemma">Monochromatische</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s252_n2" from="801" to="807">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">NOUN</f>
+ <f name="lemma">Fehler</f>
+ <f name="msd">Gender=Masc|Number=Plur|Person=3</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s252_n3" from="810" to="820">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">ADJ</f>
+ <f name="lemma">sphärisch</f>
+ <f name="msd">Degree=Pos|Gender=Fem|Number=Sing</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s252_n4" from="821" to="831">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">NOUN</f>
+ <f name="lemma">Aberration</f>
+ <f name="msd">Gender=Fem|Number=Sing|Person=3</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s252_n5" from="833" to="837">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">X</f>
+ <f name="lemma">mini</f>
+ <f name="msd">Foreign=Yes|Person=3</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s252_n6" from="837" to="838">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">X</f>
+ <f name="lemma">|</f>
+ <f name="msd">Foreign=Yes|Person=3</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s252_n7" from="838" to="846">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">ADJ</f>
+ <f name="lemma">hochkant</f>
+ <f name="msd">Degree=Pos|Variant=Short</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s252_n8" from="846" to="847">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">ADP</f>
+ <f name="lemma">=</f>
+ <f name="msd">AdpType=Prep|Case=Acc</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s252_n9" from="847" to="850">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">NUM</f>
+ <f name="lemma">1.5</f>
+ <f name="msd">Number=Plur|NumType=Card|Person=3</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s252_n10" from="850" to="851">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">NOUN</f>
+ <f name="lemma">|</f>
+ <f name="msd">Gender=Fem|Number=Plur|Person=3</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s252_n11" from="851" to="861">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">ADJ</f>
+ <f name="lemma">sphärisch</f>
+ <f name="msd">Degree=Pos|Gender=Fem|Number=Sing</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s252_n12" from="862" to="872">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">NOUN</f>
+ <f name="lemma">Ration</f>
+ <f name="msd">Gender=Fem|Number=Sing|Person=3</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s252_n13" from="873" to="880">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">ADJ</f>
+ <f name="lemma">zweit</f>
+ <f name="msd">Degree=Pos|Gender=Fem|Number=Sing</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s252_n14" from="880" to="881">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">PUNCT</f>
+ <f name="lemma">(</f>
+ <f name="msd">PunctType=Brck</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s252_n15" from="881" to="892">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">ADJ</f>
+ <f name="lemma">niedrig</f>
+ <f name="msd">Degree=Sup|Gender=Fem|Number=Sing</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s252_n16" from="892" to="893">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">PUNCT</f>
+ <f name="lemma">)</f>
+ <f name="msd">PunctType=Brck</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s252_n17" from="894" to="901">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">NOUN</f>
+ <f name="lemma">Ordnung</f>
+ <f name="msd">Gender=Fem|Number=Sing|Person=3</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s252_n18" from="902" to="906">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">X</f>
+ <f name="lemma">mini</f>
+ <f name="msd">Foreign=Yes|Person=3</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s252_n19" from="906" to="907">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">X</f>
+ <f name="lemma">|</f>
+ <f name="msd">Foreign=Yes|Person=3</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s252_n20" from="907" to="915">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">ADJ</f>
+ <f name="lemma">hochkant</f>
+ <f name="msd">Degree=Pos|Variant=Short</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s252_n21" from="915" to="916">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">ADP</f>
+ <f name="lemma">=</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s252_n22" from="916" to="919">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">NUM</f>
+ <f name="lemma">1.5</f>
+ <f name="msd">Number=Plur|NumType=Card|Person=3</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s252_n23" from="919" to="920">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">NOUN</f>
+ <f name="lemma">|</f>
+ <f name="msd">Foreign=Yes|Person=3</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s252_n24" from="920" to="923">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">ADP</f>
+ <f name="lemma">Auf</f>
+ <f name="msd">AdpType=Prep|Case=Dat</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s252_n25" from="924" to="927">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">DET</f>
+ <f name="lemma">der</f>
+ <f name="msd">Case=Dat|Gender=Fem|Number=Sing|PronType=Art</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s252_n26" from="928" to="937">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">NOUN</f>
+ <f name="lemma">Abbildung</f>
+ <f name="msd">Gender=Fem|Number=Sing|Person=3</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s252_n27" from="938" to="945">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">VERB</f>
+ <f name="lemma">erkennen</f>
+ <f name="msd">Mood=Ind|Number=Sing|Person=3|Tense=Pres|VerbForm=Fin</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s252_n28" from="946" to="949">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">PRON</f>
+ <f name="lemma">man</f>
+ <f name="msd">Case=Nom|Number=Sing|Person=3|PronType=Ind,Neg,Tot</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s252_n29" from="949" to="950">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">PUNCT</f>
+ <f name="lemma">,</f>
+ <f name="msd">PunctType=Comm</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s252_n30" from="951" to="957">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">ADV</f>
+ <f name="lemma">wiedie</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s252_n31" from="958" to="963">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">ADJ</f>
+ <f name="lemma">rot</f>
+ <f name="msd">Case=Dat|Degree=Pos|Number=Plur</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s252_n32" from="964" to="976">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">ADJ</f>
+ <f name="lemma">einfallen</f>
+ <f name="msd">Case=Dat|Degree=Pos|Number=Plur</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s252_n33" from="977" to="985">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">NOUN</f>
+ <f name="lemma">Strahl</f>
+ <f name="msd">Gender=Masc|Number=Plur|Person=3</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s252_n34" from="986" to="988">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">ADP</f>
+ <f name="lemma">an</f>
+ <f name="msd">AdpType=Prep|Case=Dat</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s252_n35" from="989" to="994">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">DET</f>
+ <f name="lemma">einem</f>
+ <f name="msd">Case=Dat|Gender=Neut|Number=Sing|PronType=Art</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s252_n36" from="995" to="1006">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">ADJ</f>
+ <f name="lemma">sphärisch</f>
+ <f name="msd">Degree=Pos|Number=Sing</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s252_n37" from="1007" to="1029">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">NOUN</f>
+ <f name="lemma">Reflektiert</f>
+ <f name="msd">Gender=Neut|Number=Sing|Person=3</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s252_n38" from="1030" to="1036">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">AUX</f>
+ <f name="lemma">werden</f>
+ <f name="msd">Mood=Ind|Number=Plur|Person=3|Tense=Pres|VerbForm=Fin</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s252_n39" from="1036" to="1037">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">PUNCT</f>
+ <f name="lemma">.</f>
+ <f name="msd">PunctType=Peri</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s253_n1" from="1038" to="1041">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">DET</f>
+ <f name="lemma">Den</f>
+ <f name="msd">Case=Dat|Number=Plur|PronType=Art</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s253_n2" from="1042" to="1047">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">ADP</f>
+ <f name="lemma">durch</f>
+ <f name="msd">AdpType=Prep|Case=Acc</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s253_n3" from="1048" to="1051">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">DET</f>
+ <f name="lemma">die</f>
+ <f name="msd">Case=Acc|Number=Plur|PronType=Art</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s253_n4" from="1052" to="1058">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">ADJ</f>
+ <f name="lemma">grün</f>
+ <f name="msd">Degree=Pos|Number=Plur</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s253_n5" from="1059" to="1067">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">NOUN</f>
+ <f name="lemma">Strahl</f>
+ <f name="msd">Gender=Masc|Number=Plur|Person=3</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s253_n6" from="1068" to="1079">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">ADJ</f>
+ <f name="lemma">erkennbar</f>
+ <f name="msd">Degree=Pos|Number=Plur</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s253_n7" from="1080" to="1101">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">NOUN</f>
+ <f name="lemma">Fehlernennt</f>
+ <f name="msd">Person=3</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s253_n8" from="1102" to="1105">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">PRON</f>
+ <f name="lemma">man</f>
+ <f name="msd">Case=Nom|Number=Sing|Person=3|PronType=Ind,Neg,Tot</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s253_n9" from="1106" to="1117">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">NOUN</f>
+ <f name="lemma">Katakaustik</f>
+ <f name="msd">Gender=Fem|Number=Sing|Person=3</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s253_n10" from="1117" to="1118">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">PUNCT</f>
+ <f name="lemma">.</f>
+ <f name="msd">PunctType=Peri</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s254_n1" from="1119" to="1122">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">DET</f>
+ <f name="lemma">Die</f>
+ <f name="msd">Case=Nom|Gender=Fem|Number=Sing|PronType=Art</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s254_n2" from="1123" to="1133">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">ADJ</f>
+ <f name="lemma">sphärisch</f>
+ <f name="msd">Degree=Pos|Gender=Fem|Number=Sing</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s254_n3" from="1134" to="1144">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">NOUN</f>
+ <f name="lemma">Ration</f>
+ <f name="msd">Gender=Fem|Number=Sing|Person=3</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s254_n4" from="1144" to="1145">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">PUNCT</f>
+ <f name="lemma">,</f>
+ <f name="msd">PunctType=Comm</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s254_n5" from="1146" to="1150">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">ADV</f>
+ <f name="lemma">auch</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s254_n6" from="1151" to="1165">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">NOUN</f>
+ <f name="lemma">Fehler</f>
+ <f name="msd">Gender=Masc|Number=Sing|Person=3</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s254_n7" from="1166" to="1170">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">CCONJ</f>
+ <f name="lemma">oder</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s254_n8" from="1171" to="1190">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">NOUN</f>
+ <f name="lemma">Fehler</f>
+ <f name="msd">Gender=Masc|Number=Plur|Person=3</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s254_n9" from="1191" to="1198">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">VERB</f>
+ <f name="lemma">nennen</f>
+ <f name="msd">Aspect=Perf|VerbForm=Part</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s254_n10" from="1198" to="1199">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">PUNCT</f>
+ <f name="lemma">,</f>
+ <f name="msd">PunctType=Comm</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s254_n11" from="1200" to="1203">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">AUX</f>
+ <f name="lemma">sein</f>
+ <f name="msd">Mood=Ind|Number=Sing|Person=3|Tense=Pres|VerbForm=Fin</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s254_n12" from="1204" to="1207">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">DET</f>
+ <f name="lemma">ein</f>
+ <f name="msd">Case=Nom|Gender=Masc|Number=Sing|PronType=Art</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s254_n13" from="1208" to="1221">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">NOUN</f>
+ <f name="lemma">Fehler</f>
+ <f name="msd">Gender=Masc|Number=Sing|Person=3</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s254_n14" from="1222" to="1232">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">ADJ</f>
+ <f name="lemma">undbewirkt</f>
+ <f name="msd">Degree=Pos|Variant=Short</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s254_n15" from="1232" to="1233">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">PUNCT</f>
+ <f name="lemma">,</f>
+ <f name="msd">PunctType=Comm</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s254_n16" from="1234" to="1238">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">SCONJ</f>
+ <f name="lemma">dass</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s254_n17" from="1239" to="1251">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">ADJ</f>
+ <f name="lemma">achsparallel</f>
+ <f name="msd">Degree=Pos|Variant=Short</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s254_n18" from="1252" to="1263">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">ADJ</f>
+ <f name="lemma">einfallen</f>
+ <f name="msd">Degree=Pos|Number=Plur</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s254_n19" from="1264" to="1268">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">CCONJ</f>
+ <f name="lemma">oder</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s254_n20" from="1269" to="1272">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">ADP</f>
+ <f name="lemma">vom</f>
+ <f name="msd">AdpType=Prep|Case=Dat</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s254_n21" from="1273" to="1281">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">ADJ</f>
+ <f name="lemma">gleich</f>
+ <f name="msd">Case=Acc|Degree=Pos|Gender=Masc|Number=Sing</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s254_n22" from="1282" to="1293">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">NOUN</f>
+ <f name="lemma">Punkt</f>
+ <f name="msd">Gender=Masc|Number=Sing|Person=3</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s254_n23" from="1294" to="1297">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">ADP</f>
+ <f name="lemma">auf</f>
+ <f name="msd">AdpType=Prep|Case=Dat</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s254_n24" from="1298" to="1301">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">DET</f>
+ <f name="lemma">der</f>
+ <f name="msd">Case=Dat|Gender=Fem|Number=Sing|PronType=Art</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s254_n25" from="1302" to="1311">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">ADJ</f>
+ <f name="lemma">optisch</f>
+ <f name="msd">Degree=Pos|Number=Sing</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s254_n26" from="1312" to="1317">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">NOUN</f>
+ <f name="lemma">Achse</f>
+ <f name="msd">Gender=Fem|Number=Sing|Person=3</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s254_n27" from="1318" to="1328">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">ADJ</f>
+ <f name="lemma">ausgehen</f>
+ <f name="msd">Degree=Pos|Number=Plur</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s254_n28" from="1329" to="1342">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">NOUN</f>
+ <f name="lemma">Strahl</f>
+ <f name="msd">Gender=Masc|Number=Plur|Person=3</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s254_n29" from="1343" to="1347">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">ADP</f>
+ <f name="lemma">nach</f>
+ <f name="msd">AdpType=Prep|Case=Dat</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s254_n30" from="1348" to="1351">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">DET</f>
+ <f name="lemma">dem</f>
+ <f name="msd">Case=Dat|Gender=Masc|Number=Sing|PronType=Art</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s254_n31" from="1352" to="1361">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">NOUN</f>
+ <f name="lemma">Gang</f>
+ <f name="msd">Gender=Masc|Number=Sing|Person=3</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s254_n32" from="1362" to="1367">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">ADP</f>
+ <f name="lemma">durch</f>
+ <f name="msd">AdpType=Prep|Case=Acc</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s254_n33" from="1368" to="1371">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">DET</f>
+ <f name="lemma">das</f>
+ <f name="msd">Case=Acc|Gender=Neut|Number=Sing|PronType=Art</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s254_n34" from="1372" to="1378">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">NOUN</f>
+ <f name="lemma">System</f>
+ <f name="msd">Gender=Neut|Number=Sing|Person=3</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s254_n35" from="1379" to="1384">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">PART</f>
+ <f name="lemma">nicht</f>
+ <f name="msd">Polarity=Neg</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s254_n36" from="1385" to="1388">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">DET</f>
+ <f name="lemma">die</f>
+ <f name="msd">Case=Acc|Gender=Fem|Number=Sing|PronType=Art</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s254_n37" from="1389" to="1396">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">ADJ</f>
+ <f name="lemma">gleich</f>
+ <f name="msd">Degree=Pos|Gender=Fem|Number=Sing</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s254_n38" from="1397" to="1409">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">NOUN</f>
+ <f name="lemma">Weite</f>
+ <f name="msd">Gender=Fem|Number=Sing|Person=3</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s254_n39" from="1410" to="1415">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">AUX</f>
+ <f name="lemma">haben</f>
+ <f name="msd">Mood=Ind|Number=Plur|Person=3|Tense=Pres|VerbForm=Fin</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s254_n40" from="1415" to="1416">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">PUNCT</f>
+ <f name="lemma">.</f>
+ <f name="msd">PunctType=Peri</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s255_n1" from="1417" to="1420">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">PRON</f>
+ <f name="lemma">Sie</f>
+ <f name="msd">Case=Nom|Number=Plur|Person=3|PronType=Prs</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s255_n2" from="1421" to="1427">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">VERB</f>
+ <f name="lemma">laufen</f>
+ <f name="msd">Mood=Ind|Number=Plur|Person=3|Tense=Pres|VerbForm=Fin</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s255_n3" from="1428" to="1433">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">ADV</f>
+ <f name="lemma">somit</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s255_n4" from="1434" to="1439">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">PART</f>
+ <f name="lemma">nicht</f>
+ <f name="msd">Polarity=Neg</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s255_n5" from="1440" to="1442">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">ADP</f>
+ <f name="lemma">in</f>
+ <f name="msd">AdpType=Prep|Case=Dat</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s255_n6" from="1443" to="1448">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">DET</f>
+ <f name="lemma">einem</f>
+ <f name="msd">Case=Dat|Gender=Masc|Number=Sing|PronType=Art</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s255_n7" from="1449" to="1454">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">NOUN</f>
+ <f name="lemma">Punkt</f>
+ <f name="msd">Gender=Masc|Number=Sing|Person=3</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s255_n8" from="1455" to="1463">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">ADP</f>
+ <f name="lemma">zusammen</f>
+ <f name="msd">PartType=Vbp</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s255_n9" from="1463" to="1464">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">PUNCT</f>
+ <f name="lemma">.</f>
+ <f name="msd">PunctType=Peri</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s256_n1" from="1465" to="1467">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">ADP</f>
+ <f name="lemma">Im</f>
+ <f name="msd">AdpType=Prep|Case=Dat</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s256_n2" from="1468" to="1479">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">NOUN</f>
+ <f name="lemma">Allgemein</f>
+ <f name="msd">Case=Dat|Number=Plur|Person=3</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s256_n3" from="1480" to="1483">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">AUX</f>
+ <f name="lemma">sein</f>
+ <f name="msd">Mood=Ind|Number=Sing|Person=3|Tense=Pres|VerbForm=Fin</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s256_n4" from="1484" to="1487">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">DET</f>
+ <f name="lemma">die</f>
+ <f name="msd">Case=Nom|Gender=Fem|Number=Sing|PronType=Art</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s256_n5" from="1488" to="1498">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">NOUN</f>
+ <f name="lemma">Abweichung</f>
+ <f name="msd">Gender=Fem|Number=Sing|Person=3</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s256_n6" from="1499" to="1503">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">ADV</f>
+ <f name="lemma">umso</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s256_n7" from="1504" to="1511">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">ADJ</f>
+ <f name="lemma">stark</f>
+ <f name="msd">Degree=Cmp|Variant=Short</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s256_n8" from="1511" to="1512">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">PUNCT</f>
+ <f name="lemma">,</f>
+ <f name="msd">PunctType=Comm</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s256_n9" from="1513" to="1521">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">ADV</f>
+ <f name="lemma">jeweiter</f>
+ <f name="msd">Degree=Cmp</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s256_n10" from="1522" to="1527">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">ADV</f>
+ <f name="lemma">außen</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s256_n11" from="1528" to="1531">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">DET</f>
+ <f name="lemma">der</f>
+ <f name="msd">Case=Nom|Gender=Masc|Number=Sing|PronType=Art</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s256_n12" from="1532" to="1538">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">NOUN</f>
+ <f name="lemma">Strahl</f>
+ <f name="msd">Gender=Masc|Number=Sing|Person=3</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s256_n13" from="1539" to="1547">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">VERB</f>
+ <f name="lemma">verlaufen</f>
+ <f name="msd">Mood=Ind|Number=Sing|Person=3|Tense=Pres|VerbForm=Fin</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s256_n14" from="1547" to="1548">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">PUNCT</f>
+ <f name="lemma">.</f>
+ <f name="msd">PunctType=Peri</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s257_n1" from="1549" to="1552">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">DET</f>
+ <f name="lemma">Die</f>
+ <f name="msd">Case=Nom|Gender=Fem|Number=Sing|PronType=Art</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s257_n2" from="1553" to="1565">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">NOUN</f>
+ <f name="lemma">Weite</f>
+ <f name="msd">Gender=Fem|Number=Sing|Person=3</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s257_n3" from="1567" to="1570">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">DET</f>
+ <f name="lemma">des</f>
+ <f name="msd">Case=Gen|Gender=Masc|Number=Sing|PronType=Art</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s257_n4" from="1571" to="1582">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">ADJ</f>
+ <f name="lemma">sprehen</f>
+ <f name="msd">Degree=Pos|Number=Sing</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s257_n5" from="1583" to="1590">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">NOUN</f>
+ <f name="lemma">Strahl</f>
+ <f name="msd">Case=Gen|Gender=Masc|Number=Sing|Person=3</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s257_n6" from="1591" to="1595">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">AUX</f>
+ <f name="lemma">werden</f>
+ <f name="msd">Mood=Ind|Number=Sing|Person=3|Tense=Pres|VerbForm=Fin</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s257_n7" from="1596" to="1599">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">ADP</f>
+ <f name="lemma">aus</f>
+ <f name="msd">AdpType=Prep|Case=Dat</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s257_n8" from="1600" to="1616">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">NOUN</f>
+ <f name="lemma">Gründen</f>
+ <f name="msd">Case=Dat|Gender=Masc|Number=Plur|Person=3</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s257_n9" from="1617" to="1622">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">ADP</f>
+ <f name="lemma">durch</f>
+ <f name="msd">AdpType=Prep|Case=Acc</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s257_n10" from="1623" to="1627">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">DET</f>
+ <f name="lemma">eine</f>
+ <f name="msd">Case=Acc|Gender=Fem|Number=Sing|PronType=Art</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s257_n11" from="1628" to="1634">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">ADV</f>
+ <f name="lemma">gerade</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s257_n12" from="1635" to="1643">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">NOUN</f>
+ <f name="lemma">Funktion</f>
+ <f name="msd">Gender=Fem|Number=Sing|Person=3</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s257_n13" from="1644" to="1651">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">VERB</f>
+ <f name="lemma">geben</f>
+ <f name="msd">Aspect=Perf|VerbForm=Part</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s257_n14" from="1651" to="1652">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">PUNCT</f>
+ <f name="lemma">:</f>
+ <f name="msd">PunctType=Peri</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s257_n15" from="1654" to="1659">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">ADV</f>
+ <f name="lemma">Dabei</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s257_n16" from="1660" to="1663">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">AUX</f>
+ <f name="lemma">sein</f>
+ <f name="msd">Mood=Ind|Number=Sing|Person=3|Tense=Pres|VerbForm=Fin</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s257_n17" from="1665" to="1668">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">DET</f>
+ <f name="lemma">der</f>
+ <f name="msd">Case=Nom|Gender=Masc|Number=Sing|PronType=Art</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s257_n18" from="1669" to="1680">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">NOUN</f>
+ <f name="lemma">Abstand</f>
+ <f name="msd">Gender=Masc|Number=Sing|Person=3</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s257_n19" from="1680" to="1681">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">PUNCT</f>
+ <f name="lemma">,</f>
+ <f name="msd">PunctType=Comm</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s257_n20" from="1682" to="1685">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">ADP</f>
+ <f name="lemma">mit</f>
+ <f name="msd">AdpType=Prep|Case=Dat</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s257_n21" from="1686" to="1689">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">PRON</f>
+ <f name="lemma">dem</f>
+ <f name="msd">Case=Dat|Gender=Masc|Number=Sing|Person=3|PronType=Rel</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s257_n22" from="1690" to="1693">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">DET</f>
+ <f name="lemma">der</f>
+ <f name="msd">Case=Nom|Gender=Masc|Number=Sing|PronType=Art</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s257_n23" from="1694" to="1700">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">NOUN</f>
+ <f name="lemma">Strahl</f>
+ <f name="msd">Gender=Masc|Number=Sing|Person=3</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s257_n24" from="1701" to="1703">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">ADP</f>
+ <f name="lemma">in</f>
+ <f name="msd">AdpType=Prep|Case=Acc</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s257_n25" from="1704" to="1707">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">DET</f>
+ <f name="lemma">das</f>
+ <f name="msd">Case=Acc|Gender=Neut|Number=Sing|PronType=Art</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s257_n26" from="1708" to="1714">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">NOUN</f>
+ <f name="lemma">System</f>
+ <f name="msd">Gender=Neut|Number=Sing|Person=3</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s257_n27" from="1715" to="1723">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">VERB</f>
+ <f name="lemma">einfallen</f>
+ <f name="msd">Mood=Ind|Number=Sing|Person=3|Tense=Pres|VerbForm=Fin</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s257_n28" from="1723" to="1724">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">PUNCT</f>
+ <f name="lemma">,</f>
+ <f name="msd">PunctType=Comm</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s257_n29" from="1725" to="1728">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">CCONJ</f>
+ <f name="lemma">und</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s257_n30" from="1730" to="1737">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">VERB</f>
+ <f name="lemma">gibtdie</f>
+ <f name="msd">Mood=Ind|Number=Sing|Person=3|Tense=Pres|VerbForm=Fin</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s257_n31" from="1738" to="1744">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">NOUN</f>
+ <f name="lemma">Stärke</f>
+ <f name="msd">Gender=Fem|Number=Sing|Person=3</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s257_n32" from="1745" to="1748">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">DET</f>
+ <f name="lemma">der</f>
+ <f name="msd">Case=Gen|Gender=Fem|Number=Sing|PronType=Art</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s257_n33" from="1749" to="1760">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">ADJ</f>
+ <f name="lemma">sphärisch</f>
+ <f name="msd">Degree=Pos|Number=Sing</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s257_n34" from="1761" to="1771">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">NOUN</f>
+ <f name="lemma">Ration</f>
+ <f name="msd">Gender=Fem|Number=Sing|Person=3</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s257_n35" from="1772" to="1777">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">ADJ</f>
+ <f name="lemma">k-ter</f>
+ <f name="msd">Degree=Pos|Gender=Fem|Number=Sing</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s257_n36" from="1778" to="1785">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">NOUN</f>
+ <f name="lemma">Ordnung</f>
+ <f name="msd">Gender=Fem|Number=Sing|Person=3</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s257_n37" from="1786" to="1788">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">ADP</f>
+ <f name="lemma">an</f>
+ <f name="msd">PartType=Vbp</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s257_n38" from="1788" to="1789">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">PUNCT</f>
+ <f name="lemma">.</f>
+ <f name="msd">PunctType=Peri</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s258_n1" from="1791" to="1794">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">AUX</f>
+ <f name="lemma">sein</f>
+ <f name="msd">Mood=Ind|Number=Sing|Person=3|Tense=Pres|VerbForm=Fin</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s258_n2" from="1795" to="1798">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">DET</f>
+ <f name="lemma">die</f>
+ <f name="msd">Case=Nom|Gender=Fem|Number=Sing|PronType=Art</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s258_n3" from="1799" to="1808">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">ADJ</f>
+ <f name="lemma">paraxiale</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s258_n4" from="1809" to="1821">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">NOUN</f>
+ <f name="lemma">Weite</f>
+ <f name="msd">Gender=Fem|Number=Sing|Person=3</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s258_n5" from="1822" to="1825">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">DET</f>
+ <f name="lemma">des</f>
+ <f name="msd">Case=Gen|Gender=Masc|Number=Sing|PronType=Art</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s258_n6" from="1826" to="1844">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">PROPN</f>
+ <f name="lemma">Rochenenstrahl</f>
+ <f name="msd">Case=Gen|Person=3</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s258_n7" from="1844" to="1845">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">PUNCT</f>
+ <f name="lemma">.</f>
+ <f name="msd">PunctType=Peri</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s259_n1" from="1846" to="1855">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">NOUN</f>
+ <f name="lemma">Objektiv</f>
+ <f name="msd">Gender=Neut|Number=Plur|Person=3</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s259_n2" from="1856" to="1859">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">ADP</f>
+ <f name="lemma">mit</f>
+ <f name="msd">AdpType=Prep|Case=Dat</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s259_n3" from="1860" to="1871">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">ADJ</f>
+ <f name="lemma">sphärisch</f>
+ <f name="msd">Degree=Pos|Gender=Fem|Number=Sing</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s259_n4" from="1872" to="1882">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">NOUN</f>
+ <f name="lemma">Ration</f>
+ <f name="msd">Gender=Fem|Number=Sing|Person=3</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s259_n5" from="1883" to="1890">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">VERB</f>
+ <f name="lemma">liefern</f>
+ <f name="msd">Mood=Ind|Number=Plur|Person=3|Tense=Pres|VerbForm=Fin</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s259_n6" from="1891" to="1901">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">ADJ</f>
+ <f name="lemma">einweich</f>
+ <f name="msd">Degree=Pos|Gender=Neut|Number=Sing</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s259_n7" from="1902" to="1906">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">NOUN</f>
+ <f name="lemma">Bild</f>
+ <f name="msd">Gender=Neut|Number=Sing|Person=3</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s259_n8" from="1907" to="1910">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">ADP</f>
+ <f name="lemma">mit</f>
+ <f name="msd">AdpType=Prep|Case=Dat</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s259_n9" from="1911" to="1915">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">ADV</f>
+ <f name="lemma">zwar</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s259_n10" from="1916" to="1924">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">ADJ</f>
+ <f name="lemma">scharf</f>
+ <f name="msd">Case=Dat|Degree=Pos|Number=Plur</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s259_n11" from="1924" to="1925">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">PUNCT</f>
+ <f name="lemma">,</f>
+ <f name="msd">PunctType=Comm</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s259_n12" from="1926" to="1930">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">CCONJ</f>
+ <f name="lemma">aber</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s259_n13" from="1931" to="1944">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">ADJ</f>
+ <f name="lemma">kontrastarmen</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s259_n14" from="1945" to="1952">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">NOUN</f>
+ <f name="lemma">Detail</f>
+ <f name="msd">Gender=Neut|Number=Plur|Person=3</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s259_n15" from="1952" to="1953">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">PUNCT</f>
+ <f name="lemma">,</f>
+ <f name="msd">PunctType=Comm</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s259_n16" from="1954" to="1956">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">ADP</f>
+ <f name="lemma">zu</f>
+ <f name="msd">AdpType=Prep|Case=Dat</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s259_n17" from="1957" to="1965">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">PRON</f>
+ <f name="lemma">denennur</f>
+ <f name="msd">Case=Dat|Gender=Fem|Number=Sing|Person=3|PronType=Rel</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s259_n18" from="1966" to="1969">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">DET</f>
+ <f name="lemma">die</f>
+ <f name="msd">Case=Nom|Number=Plur|PronType=Art</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s259_n19" from="1970" to="1979">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">ADJ</f>
+ <f name="lemma">achsnahen</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s259_n20" from="1980" to="1988">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">NOUN</f>
+ <f name="lemma">Strahl</f>
+ <f name="msd">Gender=Masc|Number=Plur|Person=3</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s259_n21" from="1989" to="1998">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">VERB</f>
+ <f name="lemma">beitragen</f>
+ <f name="msd">Mood=Ind|Number=Plur|Person=3|Tense=Pres|VerbForm=Fin</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s259_n22" from="1998" to="1999">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">PUNCT</f>
+ <f name="lemma">.</f>
+ <f name="msd">PunctType=Peri</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s260_n1" from="2000" to="2003">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">DET</f>
+ <f name="lemma">Die</f>
+ <f name="msd">Case=Nom|Number=Plur|PronType=Art</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s260_n2" from="2004" to="2014">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">ADJ</f>
+ <f name="lemma">achsfernen</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s260_n3" from="2015" to="2023">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">NOUN</f>
+ <f name="lemma">Strahl</f>
+ <f name="msd">Gender=Masc|Number=Plur|Person=3</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s260_n4" from="2024" to="2032">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">VERB</f>
+ <f name="lemma">erzeugen</f>
+ <f name="msd">Mood=Ind|Number=Plur|Person=3|Tense=Pres|VerbForm=Fin</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s260_n5" from="2033" to="2038">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">PROPN</f>
+ <f name="lemma">Halos</f>
+ <f name="msd">Number=Plur|Person=3</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s260_n6" from="2039" to="2041">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">ADP</f>
+ <f name="lemma">an</f>
+ <f name="msd">AdpType=Prep|Case=Dat</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s260_n7" from="2042" to="2064">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">NOUN</f>
+ <f name="lemma">El-übergang</f>
+ <f name="msd">Case=Dat|Gender=Masc|Number=Plur|Person=3</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s260_n8" from="2064" to="2065">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">PUNCT</f>
+ <f name="lemma">.</f>
+ <f name="msd">PunctType=Peri</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s261_n1" from="2066" to="2072">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">NOUN</f>
+ <f name="lemma">Motiv</f>
+ <f name="msd">Gender=Neut|Number=Plur|Person=3</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s261_n2" from="2073" to="2076">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">ADP</f>
+ <f name="lemma">vor</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s261_n3" from="2077" to="2080">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">CCONJ</f>
+ <f name="lemma">und</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s261_n4" from="2081" to="2087">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">ADP</f>
+ <f name="lemma">hinter</f>
+ <f name="msd">AdpType=Prep|Case=Dat</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s261_n5" from="2088" to="2091">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">DET</f>
+ <f name="lemma">der</f>
+ <f name="msd">Case=Dat|Gender=Fem|Number=Sing|PronType=Art</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s261_n6" from="2092" to="2097">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">NOUN</f>
+ <f name="lemma">Ebene</f>
+ <f name="msd">Gender=Fem|Number=Sing|Person=3</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s261_n7" from="2098" to="2114">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">NOUN</f>
+ <f name="lemma">Schärfe</f>
+ <f name="msd">Gender=Fem|Number=Sing|Person=3</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s261_n8" from="2115" to="2121">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">AUX</f>
+ <f name="lemma">werden</f>
+ <f name="msd">Mood=Ind|Number=Plur|Person=3|Tense=Pres|VerbForm=Fin</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s261_n9" from="2122" to="2137">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">ADJ</f>
+ <f name="lemma">unterschiedlich</f>
+ <f name="msd">Degree=Pos|Variant=Short</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s261_n10" from="2138" to="2146">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">ADJ</f>
+ <f name="lemma">unscharf</f>
+ <f name="msd">Degree=Pos|Variant=Short</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s261_n11" from="2147" to="2157">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">VERB</f>
+ <f name="lemma">zeichnen</f>
+ <f name="msd">Aspect=Perf|VerbForm=Part</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s261_n12" from="2157" to="2158">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">PUNCT</f>
+ <f name="lemma">.</f>
+ <f name="msd">PunctType=Peri</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s262_n1" from="2159" to="2161">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">PRON</f>
+ <f name="lemma">Es</f>
+ <f name="msd">Case=Nom|Gender=Neut|Number=Sing|Person=3|PronType=Prs</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s262_n2" from="2162" to="2166">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">VERB</f>
+ <f name="lemma">geben</f>
+ <f name="msd">Mood=Ind|Number=Sing|Person=3|Tense=Pres|VerbForm=Fin</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s262_n3" from="2167" to="2176">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">NOUN</f>
+ <f name="lemma">Objektiv</f>
+ <f name="msd">Gender=Neut|Number=Plur|Person=3</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s262_n4" from="2176" to="2177">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">PUNCT</f>
+ <f name="lemma">,</f>
+ <f name="msd">PunctType=Comm</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s262_n5" from="2178" to="2183">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">DET</f>
+ <f name="lemma">deren</f>
+ <f name="msd">PronType=Rel</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s262_n6" from="2184" to="2194">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">ADJ</f>
+ <f name="lemma">sphärisch</f>
+ <f name="msd">Degree=Pos|Gender=Fem|Number=Sing</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s262_n7" from="2195" to="2205">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">NOUN</f>
+ <f name="lemma">Ration</f>
+ <f name="msd">Gender=Fem|Number=Sing|Person=3</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s262_n8" from="2206" to="2218">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">ADJ</f>
+ <f name="lemma">manstufenlos</f>
+ <f name="msd">Degree=Pos|Variant=Short</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s262_n9" from="2219" to="2221">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">ADP</f>
+ <f name="lemma">in</f>
+ <f name="msd">AdpType=Prep|Case=Dat</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s262_n10" from="2222" to="2227">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">DET</f>
+ <f name="lemma">einem</f>
+ <f name="msd">Case=Dat|Gender=Masc|Number=Sing|PronType=Art</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s262_n11" from="2228" to="2234">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">ADJ</f>
+ <f name="lemma">weit</f>
+ <f name="msd">Degree=Pos|Number=Sing</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s262_n12" from="2235" to="2242">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">NOUN</f>
+ <f name="lemma">Bereich</f>
+ <f name="msd">Gender=Masc|Number=Sing|Person=3</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s262_n13" from="2243" to="2253">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">VERB</f>
+ <f name="lemma">einstellen</f>
+ <f name="msd">VerbForm=Inf</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s262_n14" from="2254" to="2258">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">AUX</f>
+ <f name="lemma">können</f>
+ <f name="msd">Mood=Ind|Number=Sing|Person=3|Tense=Pres|VerbForm=Fin|VerbType=Mod</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s262_n15" from="2258" to="2259">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">PUNCT</f>
+ <f name="lemma">,</f>
+ <f name="msd">PunctType=Comm</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s262_n16" from="2260" to="2262">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">SCONJ</f>
+ <f name="lemma">um</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s262_n17" from="2263" to="2266">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">DET</f>
+ <f name="lemma">die</f>
+ <f name="msd">Case=Acc|Gender=Fem|Number=Sing|PronType=Art</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s262_n18" from="2267" to="2279">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">NOUN</f>
+ <f name="lemma">Evor</f>
+ <f name="msd">Gender=Fem|Number=Sing|Person=3</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s262_n19" from="2280" to="2283">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">CCONJ</f>
+ <f name="lemma">und</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s262_n20" from="2284" to="2290">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">ADP</f>
+ <f name="lemma">hinter</f>
+ <f name="msd">AdpType=Prep|Case=Dat</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s262_n21" from="2291" to="2294">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">DET</f>
+ <f name="lemma">dem</f>
+ <f name="msd">Case=Dat|Gender=Masc|Number=Sing|PronType=Art</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s262_n22" from="2295" to="2300">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">NOUN</f>
+ <f name="lemma">Fokus</f>
+ <f name="msd">Gender=Masc|Number=Sing|Person=3</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s262_n23" from="2301" to="2304">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">CCONJ</f>
+ <f name="lemma">und</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s262_n24" from="2305" to="2308">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">DET</f>
+ <f name="lemma">die</f>
+ <f name="msd">Case=Acc|Gender=Fem|Number=Sing|PronType=Art</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s262_n25" from="2309" to="2316">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">NOUN</f>
+ <f name="lemma">Schärfe</f>
+ <f name="msd">Gender=Fem|Number=Sing|Person=3</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s262_n26" from="2317" to="2319">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">ADP</f>
+ <f name="lemma">im</f>
+ <f name="msd">AdpType=Prep|Case=Dat</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s262_n27" from="2320" to="2325">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">NOUN</f>
+ <f name="lemma">Fokus</f>
+ <f name="msd">Gender=Masc|Number=Sing|Person=3</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s262_n28" from="2326" to="2334">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">VERB</f>
+ <f name="lemma">anpassen</f>
+ <f name="msd">VerbForm=Inf</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s262_n29" from="2335" to="2343">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">VERB</f>
+ <f name="lemma">zukönnen</f>
+ <f name="msd">VerbForm=Inf</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s262_n30" from="2343" to="2344">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">PUNCT</f>
+ <f name="lemma">.</f>
+ <f name="msd">PunctType=Peri</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s263_n1" from="2345" to="2348">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">ADP</f>
+ <f name="lemma">Mit</f>
+ <f name="msd">AdpType=Prep|Case=Dat</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s263_n2" from="2349" to="2354">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">DET</f>
+ <f name="lemma">einem</f>
+ <f name="msd">Case=Dat|Gender=Neut|Number=Sing|PronType=Art</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s263_n3" from="2355" to="2361">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">NOUN</f>
+ <f name="lemma">System</f>
+ <f name="msd">Gender=Neut|Number=Sing|Person=3</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s263_n4" from="2361" to="2362">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">PUNCT</f>
+ <f name="lemma">,</f>
+ <f name="msd">PunctType=Comm</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s263_n5" from="2363" to="2366">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">PRON</f>
+ <f name="lemma">das</f>
+ <f name="msd">Case=Nom|Gender=Neut|Number=Sing|Person=3|PronType=Rel</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s263_n6" from="2367" to="2370">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">ADV</f>
+ <f name="lemma">nur</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s263_n7" from="2371" to="2381">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">ADJ</f>
+ <f name="lemma">sphärisch</f>
+ <f name="msd">Degree=Pos|Number=Plur</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s263_n8" from="2381" to="2382">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">PUNCT</f>
+ <f name="lemma">(</f>
+ <f name="msd">PunctType=Brck</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s263_n9" from="2382" to="2394">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">ADJ</f>
+ <f name="lemma">kugelförmige</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s263_n10" from="2394" to="2395">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">PUNCT</f>
+ <f name="lemma">)</f>
+ <f name="msd">PunctType=Brck</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s263_n11" from="2396" to="2405">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">ADJ</f>
+ <f name="lemma">brechen</f>
+ <f name="msd">Degree=Pos|Number=Plur</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s263_n12" from="2406" to="2410">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">CCONJ</f>
+ <f name="lemma">oder</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s263_n13" from="2411" to="2425">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">ADJ</f>
+ <f name="lemma">reflektieren</f>
+ <f name="msd">Degree=Pos|Number=Plur</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s263_n14" from="2426" to="2433">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">NOUN</f>
+ <f name="lemma">Fläche</f>
+ <f name="msd">Gender=Fem|Number=Plur|Person=3</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s263_n15" from="2434" to="2441">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">VERB</f>
+ <f name="lemma">enthalten</f>
+ <f name="msd">Mood=Ind|Number=Sing|Person=3|Tense=Pres|VerbForm=Fin</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s263_n16" from="2441" to="2442">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">PUNCT</f>
+ <f name="lemma">,</f>
+ <f name="msd">PunctType=Comm</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s263_n17" from="2443" to="2447">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">AUX</f>
+ <f name="lemma">können</f>
+ <f name="msd">Mood=Ind|Number=Sing|Person=3|Tense=Pres|VerbForm=Fin|VerbType=Mod</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s263_n18" from="2448" to="2456">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">ADJ</f>
+ <f name="lemma">mankein</f>
+ <f name="msd">Degree=Pos|Gender=Fem|Number=Sing</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s263_n19" from="2457" to="2460">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">ADP</f>
+ <f name="lemma">von</f>
+ <f name="msd">AdpType=Prep|Case=Dat</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s263_n20" from="2461" to="2472">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">ADJ</f>
+ <f name="lemma">sphärisch</f>
+ <f name="msd">Degree=Pos|Gender=Fem|Number=Sing</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s263_n21" from="2473" to="2483">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">NOUN</f>
+ <f name="lemma">Ration</f>
+ <f name="msd">Gender=Fem|Number=Sing|Person=3</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s263_n22" from="2484" to="2490">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">ADJ</f>
+ <f name="lemma">völlig</f>
+ <f name="msd">Degree=Pos|Variant=Short</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s263_n23" from="2491" to="2496">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">ADJ</f>
+ <f name="lemma">frei</f>
+ <f name="msd">Degree=Pos|Gender=Fem|Number=Sing</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s263_n24" from="2497" to="2503">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">ADJ</f>
+ <f name="lemma">reell</f>
+ <f name="msd">Degree=Pos|Gender=Fem|Number=Sing</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s263_n25" from="2504" to="2513">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">NOUN</f>
+ <f name="lemma">Abbildung</f>
+ <f name="msd">Gender=Fem|Number=Sing|Person=3</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s263_n26" from="2514" to="2523">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">VERB</f>
+ <f name="lemma">erreichen</f>
+ <f name="msd">VerbForm=Inf</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s263_n27" from="2524" to="2525">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">PUNCT</f>
+ <f name="lemma">(</f>
+ <f name="msd">PunctType=Brck</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s263_n28" from="2525" to="2530">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">VERB</f>
+ <f name="lemma">sehen</f>
+ <f name="msd">Mood=Imp|Number=Sing|Person=2|VerbForm=Fin</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s263_n29" from="2531" to="2543">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">ADJ</f>
+ <f name="lemma">aplanatisch</f>
+ <f name="msd">Degree=Pos|Gender=Fem|Number=Sing</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s263_n30" from="2544" to="2550">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">NOUN</f>
+ <f name="lemma">Fläche</f>
+ <f name="msd">Gender=Fem|Number=Sing|Person=3</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s263_n31" from="2550" to="2551">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">PUNCT</f>
+ <f name="lemma">)</f>
+ <f name="msd">PunctType=Brck</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s263_n32" from="2551" to="2552">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">PUNCT</f>
+ <f name="lemma">.</f>
+ <f name="msd">PunctType=Peri</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s264_n1" from="2553" to="2556">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">ADP</f>
+ <f name="lemma">Mit</f>
+ <f name="msd">AdpType=Prep|Case=Dat</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s264_n2" from="2557" to="2562">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">DET</f>
+ <f name="lemma">einer</f>
+ <f name="msd">Case=Dat|Gender=Fem|Number=Sing|PronType=Art</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s264_n3" from="2563" to="2575">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">ADJ</f>
+ <f name="lemma">asphärischen</f>
+ <f name="msd">Degree=Pos|Number=Sing</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s264_n4" from="2576" to="2586">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">NOUN</f>
+ <f name="lemma">Oberfläche</f>
+ <f name="msd">Gender=Fem|Number=Sing|Person=3</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s264_n5" from="2587" to="2592">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">DET</f>
+ <f name="lemma">einer</f>
+ <f name="msd">Case=Gen|Gender=Fem|Number=Sing|PronType=Art</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s264_n6" from="2593" to="2598">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">NOUN</f>
+ <f name="lemma">Linse</f>
+ <f name="msd">Gender=Fem|Number=Sing|Person=3</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s264_n7" from="2599" to="2603">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">CCONJ</f>
+ <f name="lemma">oder</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s264_n8" from="2604" to="2617">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">PROPN</f>
+ <f name="lemma">Spiegel</f>
+ <f name="msd">Case=Gen|Person=3</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s264_n9" from="2618" to="2622">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">AUX</f>
+ <f name="lemma">können</f>
+ <f name="msd">Mood=Ind|Number=Sing|Person=3|Tense=Pres|VerbForm=Fin|VerbType=Mod</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s264_n10" from="2623" to="2626">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">PRON</f>
+ <f name="lemma">man</f>
+ <f name="msd">Case=Nom|Number=Sing|Person=3|PronType=Ind,Neg,Tot</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s264_n11" from="2627" to="2630">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">DET</f>
+ <f name="lemma">die</f>
+ <f name="msd">Case=Acc|Gender=Fem|Number=Sing|PronType=Art</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s264_n12" from="2631" to="2641">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">ADJ</f>
+ <f name="lemma">sphärisch</f>
+ <f name="msd">Degree=Pos|Gender=Fem|Number=Sing</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s264_n13" from="2642" to="2652">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">NOUN</f>
+ <f name="lemma">Ration</f>
+ <f name="msd">Gender=Fem|Number=Sing|Person=3</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s264_n14" from="2653" to="2659">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">ADJ</f>
+ <f name="lemma">völlig</f>
+ <f name="msd">Degree=Pos|Variant=Short</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s264_n15" from="2660" to="2671">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">VERB</f>
+ <f name="lemma">korrigieren</f>
+ <f name="msd">VerbForm=Inf</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s264_n16" from="2671" to="2672">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">PUNCT</f>
+ <f name="lemma">.</f>
+ <f name="msd">PunctType=Peri</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s265_n1" from="2673" to="2683">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">ADV</f>
+ <f name="lemma">Allerdings</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s265_n2" from="2684" to="2687">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">AUX</f>
+ <f name="lemma">sein</f>
+ <f name="msd">Mood=Ind|Number=Sing|Person=3|Tense=Pres|VerbForm=Fin</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s265_n3" from="2688" to="2691">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">DET</f>
+ <f name="lemma">das</f>
+ <f name="msd">Case=Nom|Gender=Neut|Number=Sing|PronType=Art</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s265_n4" from="2692" to="2701">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">NOUN</f>
+ <f name="lemma">Schleifen</f>
+ <f name="msd">Gender=Neut|Number=Sing|Person=3</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s265_n5" from="2702" to="2707">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">DET</f>
+ <f name="lemma">einer</f>
+ <f name="msd">Case=Gen|Gender=Fem|Number=Sing|PronType=Art</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s265_n6" from="2708" to="2723">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">NOUN</f>
+ <f name="lemma">Oberfläche</f>
+ <f name="msd">Gender=Fem|Number=Sing|Person=3</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s265_n7" from="2724" to="2741">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">ADJ</f>
+ <f name="lemma">deutlicheinfacher</f>
+ <f name="msd">Degree=Cmp|Variant=Short</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s265_n8" from="2742" to="2745">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">CCONJ</f>
+ <f name="lemma">und</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s265_n9" from="2746" to="2751">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">ADV</f>
+ <f name="lemma">damit</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s265_n10" from="2752" to="2760">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">ADJ</f>
+ <f name="lemma">billig</f>
+ <f name="msd">Degree=Cmp|Variant=Short</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s265_n11" from="2761" to="2764">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">CCONJ</f>
+ <f name="lemma">als</f>
+ <f name="msd">ConjType=Comp</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s265_n12" from="2765" to="2768">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">DET</f>
+ <f name="lemma">das</f>
+ <f name="msd">Case=Acc|Gender=Neut|Number=Sing|PronType=Art</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s265_n13" from="2769" to="2778">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">NOUN</f>
+ <f name="lemma">Schleifen</f>
+ <f name="msd">Gender=Neut|Number=Sing|Person=3</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s265_n14" from="2779" to="2789">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">ADJ</f>
+ <f name="lemma">asphärisch</f>
+ <f name="msd">Degree=Pos|Variant=Short</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s265_n15" from="2790" to="2807">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">ADJ</f>
+ <f name="lemma">gekrümmterfläieren</f>
+ <f name="msd">Person=3</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s265_n16" from="2807" to="2808">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">PUNCT</f>
+ <f name="lemma">.</f>
+ <f name="msd">PunctType=Peri</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s266_n1" from="2809" to="2812">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">DET</f>
+ <f name="lemma">Der</f>
+ <f name="msd">Case=Nom|Gender=Masc|Number=Sing|PronType=Art</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s266_n2" from="2813" to="2818">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">ADJ</f>
+ <f name="lemma">weit</f>
+ <f name="msd">Case=Nom|Degree=Pos|Gender=Masc|Number=Sing</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s266_n3" from="2819" to="2826">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">NOUN</f>
+ <f name="lemma">Einsatz</f>
+ <f name="msd">Gender=Masc|Number=Sing|Person=3</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s266_n4" from="2827" to="2838">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">ADJ</f>
+ <f name="lemma">sphärisch</f>
+ <f name="msd">Case=Gen|Degree=Pos|Number=Plur</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s266_n5" from="2839" to="2846">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">NOUN</f>
+ <f name="lemma">Fläche</f>
+ <f name="msd">Gender=Fem|Number=Plur|Person=3</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s266_n6" from="2847" to="2853">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">VERB</f>
+ <f name="lemma">beruhen</f>
+ <f name="msd">Mood=Ind|Number=Sing|Person=3|Tense=Pres|VerbForm=Fin</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s266_n7" from="2854" to="2857">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">ADP</f>
+ <f name="lemma">auf</f>
+ <f name="msd">AdpType=Prep|Case=Dat</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s266_n8" from="2858" to="2861">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">DET</f>
+ <f name="lemma">der</f>
+ <f name="msd">Case=Dat|Gender=Fem|Number=Sing|PronType=Art</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s266_n9" from="2862" to="2870">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">NOUN</f>
+ <f name="lemma">Tatsache</f>
+ <f name="msd">Gender=Fem|Number=Sing|Person=3</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s266_n10" from="2870" to="2871">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">PUNCT</f>
+ <f name="lemma">,</f>
+ <f name="msd">PunctType=Comm</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s266_n11" from="2872" to="2876">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">SCONJ</f>
+ <f name="lemma">dass</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s266_n12" from="2877" to="2881">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">PRON</f>
+ <f name="lemma">sein</f>
+ <f name="msd">Case=Nom|Number=Plur|Person=3|Poss=Yes|PronType=Prs</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s266_n13" from="2882" to="2905">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">NOUN</f>
+ <f name="lemma">Eigenschaft</f>
+ <f name="msd">Gender=Fem|Number=Plur|Person=3</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s266_n14" from="2906" to="2909">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">ADJ</f>
+ <f name="lemma">gut</f>
+ <f name="msd">Degree=Pos|Variant=Short</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s266_n15" from="2910" to="2915">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">ADV</f>
+ <f name="lemma">genug</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s266_n16" from="2916" to="2920">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">AUX</f>
+ <f name="lemma">sein</f>
+ <f name="msd">Mood=Ind|Number=Plur|Person=3|Tense=Pres|VerbForm=Fin</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s266_n17" from="2920" to="2921">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">PUNCT</f>
+ <f name="lemma">,</f>
+ <f name="msd">PunctType=Comm</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s266_n18" from="2922" to="2925">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">ADP</f>
+ <f name="lemma">bei</f>
+ <f name="msd">AdpType=Prep|Case=Dat</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s266_n19" from="2926" to="2938">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">ADJ</f>
+ <f name="lemma">gleichzeitig</f>
+ <f name="msd">Degree=Pos|Variant=Short</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s266_n20" from="2939" to="2969">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">NOUN</f>
+ <f name="lemma">Aufwand</f>
+ <f name="msd">Gender=Masc|Number=Sing|Person=3</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s266_n21" from="2969" to="2970">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">PUNCT</f>
+ <f name="lemma">.</f>
+ <f name="msd">PunctType=Peri</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s267_n1" from="2971" to="2974">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">DET</f>
+ <f name="lemma">Die</f>
+ <f name="msd">Case=Nom|Number=Plur|PronType=Art</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s267_n2" from="2975" to="2981">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">NOUN</f>
+ <f name="lemma">Kosten</f>
+ <f name="msd">Gender=Neut|Number=Plur|Person=3</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s267_n3" from="2982" to="2985">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">ADP</f>
+ <f name="lemma">für</f>
+ <f name="msd">AdpType=Prep|Case=Acc</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s267_n4" from="2986" to="2996">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">ADJ</f>
+ <f name="lemma">asphärisch</f>
+ <f name="msd">Degree=Pos|Variant=Short</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s267_n5" from="2997" to="3009">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">ADJ</f>
+ <f name="lemma">schliffen</f>
+ <f name="msd">Degree=Pos|Number=Plur</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s267_n6" from="3010" to="3016">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">NOUN</f>
+ <f name="lemma">Linse</f>
+ <f name="msd">Gender=Fem|Number=Plur|Person=3</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s267_n7" from="3017" to="3033">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">ADJ</f>
+ <f name="lemma">relativierensich</f>
+ <f name="msd">Degree=Pos|Variant=Short</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s267_n8" from="3034" to="3037">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">ADP</f>
+ <f name="lemma">bei</f>
+ <f name="msd">AdpType=Prep|Case=Dat</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s267_n9" from="3038" to="3056">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">NOUN</f>
+ <f name="lemma">System</f>
+ <f name="msd">Case=Dat|Gender=Neut|Number=Plur|Person=3</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s267_n10" from="3056" to="3057">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">PUNCT</f>
+ <f name="lemma">,</f>
+ <f name="msd">PunctType=Comm</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s267_n11" from="3058" to="3060">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">SCONJ</f>
+ <f name="lemma">da</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s267_n12" from="3061" to="3064">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">PRON</f>
+ <f name="lemma">man</f>
+ <f name="msd">Case=Nom|Number=Sing|Person=3|PronType=Ind,Neg,Tot</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s267_n13" from="3065" to="3079">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">ADV</f>
+ <f name="lemma">gegebenenfalls</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s267_n14" from="3080" to="3083">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">ADP</f>
+ <f name="lemma">mit</f>
+ <f name="msd">AdpType=Prep|Case=Dat</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s267_n15" from="3084" to="3091">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">DET</f>
+ <f name="lemma">wenig</f>
+ <f name="msd">Degree=Cmp|Person=3|PronType=Ind,Neg,Tot</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s267_n16" from="3092" to="3101">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">NOUN</f>
+ <f name="lemma">unknown</f>
+ <f name="msd">Person=3</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s267_n17" from="3102" to="3109">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">ADJ</f>
+ <f name="lemma">gleich</f>
+ <f name="msd">Degree=Pos|Number=Plur</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s267_n18" from="3110" to="3124">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">NOUN</f>
+ <f name="lemma">Güt</f>
+ <f name="msd">Gender=Fem|Number=Plur|Person=3</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s267_n19" from="3125" to="3133">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">VERB</f>
+ <f name="lemma">erzielen</f>
+ <f name="msd">VerbForm=Inf</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s267_n20" from="3134" to="3138">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">AUX</f>
+ <f name="lemma">können</f>
+ <f name="msd">Mood=Ind|Number=Sing|Person=3|Tense=Pres|VerbForm=Fin|VerbType=Mod</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s267_n21" from="3138" to="3139">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">PUNCT</f>
+ <f name="lemma">.</f>
+ <f name="msd">PunctType=Peri</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s268_n1" from="3140" to="3151">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">ADV</f>
+ <f name="lemma">Unterdessen</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s268_n2" from="3152" to="3156">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">VERB</f>
+ <f name="lemma">geben</f>
+ <f name="msd">Mood=Ind|Number=Sing|Person=3|Tense=Pres|VerbForm=Fin</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s268_n3" from="3157" to="3159">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">PRON</f>
+ <f name="lemma">es</f>
+ <f name="msd">Case=Nom|Gender=Neut|Number=Sing|Person=3|PronType=Prs</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s268_n4" from="3160" to="3169">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">NOUN</f>
+ <f name="lemma">Verfahren</f>
+ <f name="msd">Gender=Neut|Number=Plur|Person=3</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s268_n5" from="3169" to="3170">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">PUNCT</f>
+ <f name="lemma">,</f>
+ <f name="msd">PunctType=Comm</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s268_n6" from="3171" to="3179">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">NOUN</f>
+ <f name="lemma">Asphäre</f>
+ <f name="msd">Gender=Fem|Number=Plur|Person=3</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s268_n7" from="3180" to="3185">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">ADJ</f>
+ <f name="lemma">hoch</f>
+ <f name="msd">Degree=Pos|Gender=Fem|Number=Sing</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s268_n8" from="3186" to="3194">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">NOUN</f>
+ <f name="lemma">Qualität</f>
+ <f name="msd">Gender=Fem|Number=Sing|Person=3</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s268_n9" from="3195" to="3198">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">CCONJ</f>
+ <f name="lemma">als</f>
+ <f name="msd">ConjType=Comp</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s268_n10" from="3199" to="3209">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">NOUN</f>
+ <f name="lemma">Presslinge</f>
+ <f name="msd">Gender=Fem|Number=Sing|Person=3</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s268_n11" from="3210" to="3211">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">PUNCT</f>
+ <f name="lemma">(</f>
+ <f name="msd">PunctType=Brck</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s268_n12" from="3211" to="3218">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">NOUN</f>
+ <f name="lemma">Molding</f>
+ <f name="msd">Person=3</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s268_n13" from="3218" to="3219">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">PUNCT</f>
+ <f name="lemma">)</f>
+ <f name="msd">PunctType=Brck</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s268_n14" from="3219" to="3231">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">VERB</f>
+ <f name="lemma">herstellen</f>
+ <f name="msd">VerbForm=Inf</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s268_n15" from="3231" to="3232">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">PUNCT</f>
+ <f name="lemma">.</f>
+ <f name="msd">PunctType=Peri</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s269_n1" from="3233" to="3235">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">PRON</f>
+ <f name="lemma">Es</f>
+ <f name="msd">Case=Nom|Gender=Neut|Number=Sing|Person=3|PronType=Prs</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s269_n2" from="3236" to="3240">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">VERB</f>
+ <f name="lemma">geben</f>
+ <f name="msd">Mood=Ind|Number=Sing|Person=3|Tense=Pres|VerbForm=Fin</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s269_n3" from="3241" to="3245">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">NUM</f>
+ <f name="lemma">zwei</f>
+ <f name="msd">Number=Plur|NumType=Card|Person=3</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s269_n4" from="3246" to="3267">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">NOUN</f>
+ <f name="lemma">Verfahren</f>
+ <f name="msd">Gender=Neut|Number=Plur|Person=3</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s269_n5" from="3267" to="3268">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">PUNCT</f>
+ <f name="lemma">:</f>
+ <f name="msd">PunctType=Peri</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s269_n6" from="3269" to="3275">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">ADJ</f>
+ <f name="lemma">klein</f>
+ <f name="msd">Degree=Pos|Number=Plur</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s269_n7" from="3276" to="3282">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">NOUN</f>
+ <f name="lemma">Linse</f>
+ <f name="msd">Gender=Fem|Number=Plur|Person=3</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s269_n8" from="3283" to="3295">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">ADJ</f>
+ <f name="lemma">könnendirekt</f>
+ <f name="msd">Degree=Pos|Variant=Short</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s269_n9" from="3296" to="3304">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">VERB</f>
+ <f name="lemma">pressen</f>
+ <f name="msd">Aspect=Perf|VerbForm=Part</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s269_n10" from="3305" to="3311">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">AUX</f>
+ <f name="lemma">werden</f>
+ <f name="msd">VerbForm=Inf</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s269_n11" from="3311" to="3312">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">PUNCT</f>
+ <f name="lemma">;</f>
+ <f name="msd">PunctType=Peri</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s269_n12" from="3313" to="3320">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">ADJ</f>
+ <f name="lemma">groß</f>
+ <f name="msd">Degree=Cmp|Number=Plur</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s269_n13" from="3321" to="3327">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">AUX</f>
+ <f name="lemma">werden</f>
+ <f name="msd">Mood=Ind|Number=Plur|Person=3|Tense=Pres|VerbForm=Fin</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s269_n14" from="3328" to="3333">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">ADP</f>
+ <f name="lemma">durch</f>
+ <f name="msd">AdpType=Prep|Case=Acc</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s269_n15" from="3334" to="3342">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">NOUN</f>
+ <f name="lemma">Formen</f>
+ <f name="msd">Gender=Neut|Number=Sing|Person=3</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s269_n16" from="3343" to="3363">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">ADJ</f>
+ <f name="lemma">einervolumengleichen</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s269_n17" from="3364" to="3375">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">ADJ</f>
+ <f name="lemma">sphärisch</f>
+ <f name="msd">Degree=Pos|Number=Sing</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s269_n18" from="3376" to="3381">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">NOUN</f>
+ <f name="lemma">Linse</f>
+ <f name="msd">Gender=Fem|Number=Sing|Person=3</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s269_n19" from="3382" to="3393">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">VERB</f>
+ <f name="lemma">herstellen</f>
+ <f name="msd">Aspect=Perf|VerbForm=Part</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s269_n20" from="3393" to="3394">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">PUNCT</f>
+ <f name="lemma">.</f>
+ <f name="msd">PunctType=Peri</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s270_n1" from="3395" to="3398">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">DET</f>
+ <f name="lemma">Die</f>
+ <f name="msd">Case=Nom|Gender=Fem|Number=Sing|PronType=Art</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s270_n2" from="3399" to="3404">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">NOUN</f>
+ <f name="lemma">Grösse</f>
+ <f name="msd">Gender=Fem|Number=Sing|Person=3</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s270_n3" from="3405" to="3408">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">AUX</f>
+ <f name="lemma">sein</f>
+ <f name="msd">Mood=Ind|Number=Sing|Person=3|Tense=Pres|VerbForm=Fin</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s270_n4" from="3409" to="3414">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">ADV</f>
+ <f name="lemma">dabei</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s270_n5" from="3415" to="3419">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">ADP</f>
+ <f name="lemma">nach</f>
+ <f name="msd">AdpType=Prep|Case=Dat</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s270_n6" from="3420" to="3424">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">ADV</f>
+ <f name="lemma">oben</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s270_n7" from="3425" to="3430">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">ADP</f>
+ <f name="lemma">durch</f>
+ <f name="msd">AdpType=Prep|Case=Acc</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s270_n8" from="3431" to="3435">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">NUM</f>
+ <f name="lemma">zwei</f>
+ <f name="msd">Number=Plur|NumType=Card|Person=3</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s270_n9" from="3436" to="3444">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">NOUN</f>
+ <f name="lemma">Problem</f>
+ <f name="msd">Gender=Neut|Number=Plur|Person=3</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s270_n10" from="3445" to="3455">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">VERB</f>
+ <f name="lemma">beschränken</f>
+ <f name="msd">Aspect=Perf|VerbForm=Part</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s270_n11" from="3455" to="3456">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">PUNCT</f>
+ <f name="lemma">:</f>
+ <f name="msd">PunctType=Peri</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s270_n12" from="3456" to="3459">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">ADP</f>
+ <f name="lemma">Zum</f>
+ <f name="msd">AdpType=Prep|Case=Dat</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s270_n13" from="3460" to="3465">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">PRON</f>
+ <f name="lemma">ein</f>
+ <f name="msd">Case=Dat|Gender=Neut|Number=Sing|Person=3|PronType=Ind,Neg,Tot</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s270_n14" from="3466" to="3470">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">VERB</f>
+ <f name="lemma">geben</f>
+ <f name="msd">Mood=Ind|Number=Sing|Person=3|Tense=Pres|VerbForm=Fin</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s270_n15" from="3471" to="3473">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">PRON</f>
+ <f name="lemma">es</f>
+ <f name="msd">Case=Nom|Gender=Neut|Number=Sing|Person=3|PronType=Prs</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s270_n16" from="3474" to="3477">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">ADV</f>
+ <f name="lemma">nur</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s270_n17" from="3478" to="3484">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">ADJ</f>
+ <f name="lemma">wenig</f>
+ <f name="msd">Case=Acc|Degree=Pos|Number=Plur|Person=3</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s270_n18" from="3485" to="3495">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">NOUN</f>
+ <f name="lemma">Glassort</f>
+ <f name="msd">Gender=Fem|Number=Plur|Person=3</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s270_n19" from="3495" to="3496">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">PUNCT</f>
+ <f name="lemma">,</f>
+ <f name="msd">PunctType=Comm</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s270_n20" from="3497" to="3500">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">PRON</f>
+ <f name="lemma">die</f>
+ <f name="msd">Case=Nom|Number=Plur|Person=3|PronType=Rel</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s270_n21" from="3501" to="3504">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">ADP</f>
+ <f name="lemma">für</f>
+ <f name="msd">AdpType=Prep|Case=Acc</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s270_n22" from="3505" to="3509">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">DET</f>
+ <f name="lemma">eine</f>
+ <f name="msd">Case=Acc|Gender=Fem|Number=Sing|PronType=Art</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s270_n23" from="3510" to="3527">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">NOUN</f>
+ <f name="lemma">Geeignet</f>
+ <f name="msd">Gender=Fem|Number=Sing|Person=3</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s270_n24" from="3528" to="3532">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">AUX</f>
+ <f name="lemma">sein</f>
+ <f name="msd">Mood=Ind|Number=Plur|Person=3|Tense=Pres|VerbForm=Fin</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s270_n25" from="3532" to="3533">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">PUNCT</f>
+ <f name="lemma">,</f>
+ <f name="msd">PunctType=Comm</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s270_n26" from="3534" to="3537">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">ADP</f>
+ <f name="lemma">zum</f>
+ <f name="msd">AdpType=Prep|Case=Dat</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s270_n27" from="3538" to="3545">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">PRON</f>
+ <f name="lemma">ander</f>
+ <f name="msd">Case=Dat|Gender=Neut|Number=Sing|Person=3|PronType=Ind,Neg,Tot</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s270_n28" from="3546" to="3552">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">VERB</f>
+ <f name="lemma">neigen</f>
+ <f name="msd">Mood=Ind|Number=Plur|Person=3|Tense=Pres|VerbForm=Fin</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s270_n29" from="3553" to="3563">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">ADJ</f>
+ <f name="lemma">umgeformte</f>
+ <f name="msd">Degree=Pos|Number=Plur</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s270_n30" from="3564" to="3570">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">NOUN</f>
+ <f name="lemma">Linse</f>
+ <f name="msd">Gender=Fem|Number=Plur|Person=3</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s270_n31" from="3571" to="3573">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">ADP</f>
+ <f name="lemma">zu</f>
+ <f name="msd">AdpType=Prep|Case=Dat</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s270_n32" from="3574" to="3594">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">NOUN</f>
+ <f name="lemma">Durch</f>
+ <f name="msd">Person=3</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s270_n33" from="3595" to="3601">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">ADJ</f>
+ <f name="lemma">innere</f>
+ <f name="msd">Degree=Pos|Number=Plur</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s270_n34" from="3602" to="3612">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">NOUN</f>
+ <f name="lemma">Spannung</f>
+ <f name="msd">Gender=Fem|Number=Plur|Person=3</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s270_n35" from="3612" to="3613">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">PUNCT</f>
+ <f name="lemma">,</f>
+ <f name="msd">PunctType=Comm</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s270_n36" from="3614" to="3617">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">PRON</f>
+ <f name="lemma">die</f>
+ <f name="msd">Case=Nom|Number=Plur|Person=3|PronType=Rel</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s270_n37" from="3618" to="3623">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">ADP</f>
+ <f name="lemma">durch</f>
+ <f name="msd">AdpType=Prep|Case=Acc</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s270_n38" from="3624" to="3627">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">DET</f>
+ <f name="lemma">den</f>
+ <f name="msd">Case=Acc|Gender=Masc|Number=Sing|PronType=Art</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s270_n39" from="3628" to="3641">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">NOUN</f>
+ <f name="lemma">Prozess</f>
+ <f name="msd">Gender=Masc|Number=Sing|Person=3</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s270_n40" from="3642" to="3651">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">VERB</f>
+ <f name="lemma">entstehen</f>
+ <f name="msd">Mood=Ind|Number=Plur|Person=3|Tense=Pres|VerbForm=Fin</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s270_n41" from="3651" to="3652">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">PUNCT</f>
+ <f name="lemma">.</f>
+ <f name="msd">PunctType=Peri</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s271_n1" from="3653" to="3659">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">ADJ</f>
+ <f name="lemma">klein</f>
+ <f name="msd">Degree=Pos|Number=Plur</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s271_n2" from="3660" to="3676">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">NOUN</f>
+ <f name="lemma">Linse</f>
+ <f name="msd">Gender=Fem|Number=Plur|Person=3</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s271_n3" from="3677" to="3683">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">AUX</f>
+ <f name="lemma">werden</f>
+ <f name="msd">Mood=Ind|Number=Plur|Person=3|Tense=Pres|VerbForm=Fin</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s271_n4" from="3684" to="3686">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">ADP</f>
+ <f name="lemma">im</f>
+ <f name="msd">AdpType=Prep|Case=Dat</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s271_n5" from="3687" to="3702">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">ADJ</f>
+ <f name="lemma">Spritzgiess-oder</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s271_n6" from="3703" to="3723">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">NOUN</f>
+ <f name="lemma">Verfahren</f>
+ <f name="msd">Gender=Neut|Number=Plur|Person=3</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s271_n7" from="3724" to="3737">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">ADJ</f>
+ <f name="lemma">kostengünstig</f>
+ <f name="msd">Degree=Pos|Variant=Short</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s271_n8" from="3738" to="3747">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">VERB</f>
+ <f name="lemma">fertigen</f>
+ <f name="msd">Aspect=Perf|VerbForm=Part</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s271_n9" from="3747" to="3748">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">PUNCT</f>
+ <f name="lemma">.</f>
+ <f name="msd">PunctType=Peri</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s272_n1" from="3749" to="3751">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">ADP</f>
+ <f name="lemma">In</f>
+ <f name="msd">AdpType=Prep|Case=Dat</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s272_n2" from="3752" to="3759">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">DET</f>
+ <f name="lemma">einig</f>
+ <f name="msd">Case=Dat|Number=Plur|Person=3|PronType=Ind,Neg,Tot</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s272_n3" from="3760" to="3766">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">NOUN</f>
+ <f name="lemma">Fall</f>
+ <f name="msd">Case=Dat|Gender=Masc|Number=Plur|Person=3</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s272_n4" from="3767" to="3771">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">AUX</f>
+ <f name="lemma">werden</f>
+ <f name="msd">Mood=Ind|Number=Sing|Person=3|Tense=Pres|VerbForm=Fin</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s272_n5" from="3772" to="3776">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">ADV</f>
+ <f name="lemma">auch</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s272_n6" from="3777" to="3798">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">NOUN</f>
+ <f name="lemma">Schicht</f>
+ <f name="msd">Gender=Fem|Number=Sing|Person=3</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s272_n7" from="3799" to="3802">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">ADP</f>
+ <f name="lemma">auf</f>
+ <f name="msd">AdpType=Prep|Case=Acc</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s272_n8" from="3803" to="3807">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">DET</f>
+ <f name="lemma">eine</f>
+ <f name="msd">Case=Acc|Gender=Fem|Number=Sing|PronType=Art</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s272_n9" from="3808" to="3818">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">ADJ</f>
+ <f name="lemma">sphärisch</f>
+ <f name="msd">Degree=Pos|Gender=Fem|Number=Sing</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s272_n10" from="3819" to="3828">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">NOUN</f>
+ <f name="lemma">Linse</f>
+ <f name="msd">Gender=Fem|Number=Sing|Person=3</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s272_n11" from="3829" to="3837">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">VERB</f>
+ <f name="lemma">gegießen</f>
+ <f name="msd">Aspect=Perf|VerbForm=Part</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s272_n12" from="3838" to="3841">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">CCONJ</f>
+ <f name="lemma">und</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s272_n13" from="3842" to="3851">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">ADV</f>
+ <f name="lemma">danndurch</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s272_n14" from="3852" to="3859">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">NOUN</f>
+ <f name="lemma">Pressen</f>
+ <f name="msd">Gender=Fem|Number=Plur|Person=3</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s272_n15" from="3860" to="3862">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">ADP</f>
+ <f name="lemma">in</f>
+ <f name="msd">AdpType=Prep|Case=Acc</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s272_n16" from="3863" to="3867">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">DET</f>
+ <f name="lemma">eine</f>
+ <f name="msd">Case=Acc|Gender=Fem|Number=Sing|PronType=Art</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s272_n17" from="3868" to="3879">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">ADJ</f>
+ <f name="lemma">asphärisch</f>
+ <f name="msd">Degree=Pos|Gender=Fem|Number=Sing</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s272_n18" from="3880" to="3884">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">NOUN</f>
+ <f name="lemma">Form</f>
+ <f name="msd">Gender=Fem|Number=Sing|Person=3</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s272_n19" from="3885" to="3893">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">VERB</f>
+ <f name="lemma">bringen</f>
+ <f name="msd">Aspect=Perf|VerbForm=Part</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s272_n20" from="3893" to="3894">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">PUNCT</f>
+ <f name="lemma">.</f>
+ <f name="msd">PunctType=Peri</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s273_n1" from="3895" to="3898">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">ADP</f>
+ <f name="lemma">Mit</f>
+ <f name="msd">AdpType=Prep|Case=Dat</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s273_n2" from="3899" to="3904">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">NOUN</f>
+ <f name="lemma">Hilfe</f>
+ <f name="msd">Gender=Fem|Number=Sing|Person=3</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s273_n3" from="3905" to="3908">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">DET</f>
+ <f name="lemma">des</f>
+ <f name="msd">Case=Gen|Gender=Neut|Number=Sing|PronType=Art</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s273_n4" from="3909" to="3922">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">ADJ</f>
+ <f name="lemma">foucaultschen</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s273_n5" from="3923" to="3942">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">NOUN</f>
+ <f name="lemma">Verfahren</f>
+ <f name="msd">Case=Gen|Gender=Neut|Number=Sing|Person=3</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s273_n6" from="3943" to="3949">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">VERB</f>
+ <f name="lemma">lassen</f>
+ <f name="msd">Mood=Ind|Number=Plur|Person=3|Tense=Pres|VerbForm=Fin</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s273_n7" from="3950" to="3964">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">ADJ</f>
+ <f name="lemma">sichsphärische</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s273_n8" from="3965" to="3977">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">NOUN</f>
+ <f name="lemma">Aberration</f>
+ <f name="msd">Gender=Fem|Number=Plur|Person=3</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s273_n9" from="3978" to="3982">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">ADV</f>
+ <f name="lemma">auch</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s273_n10" from="3983" to="3986">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">ADP</f>
+ <f name="lemma">mit</f>
+ <f name="msd">AdpType=Prep|Case=Dat</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s273_n11" from="3987" to="3996">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">ADJ</f>
+ <f name="lemma">einfach</f>
+ <f name="msd">Case=Dat|Degree=Pos|Number=Plur</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s273_n12" from="3997" to="4004">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">NOUN</f>
+ <f name="lemma">Mittel</f>
+ <f name="msd">Case=Dat|Gender=Neut|Number=Plur|Person=3</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s273_n13" from="4005" to="4008">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">ADJ</f>
+ <f name="lemma">gut</f>
+ <f name="msd">Degree=Pos|Variant=Short</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s273_n14" from="4009" to="4019">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">VERB</f>
+ <f name="lemma">nachweisen</f>
+ <f name="msd">VerbForm=Inf</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s273_n15" from="4019" to="4020">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">PUNCT</f>
+ <f name="lemma">.</f>
+ <f name="msd">PunctType=Peri</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s274_n1" from="4021" to="4023">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">ADP</f>
+ <f name="lemma">In</f>
+ <f name="msd">AdpType=Prep|Case=Dat</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s274_n2" from="4024" to="4027">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">DET</f>
+ <f name="lemma">der</f>
+ <f name="msd">Case=Dat|Gender=Fem|Number=Sing|PronType=Art</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s274_n3" from="4028" to="4043">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">NOUN</f>
+ <f name="lemma">Fertigung</f>
+ <f name="msd">Gender=Fem|Number=Sing|Person=3</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s274_n4" from="4044" to="4053">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">ADJ</f>
+ <f name="lemma">optisch</f>
+ <f name="msd">Case=Gen|Degree=Pos|Number=Plur</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s274_n5" from="4054" to="4059">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">NOUN</f>
+ <f name="lemma">Teil</f>
+ <f name="msd">Number=Plur|Person=3</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s274_n6" from="4060" to="4064">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">AUX</f>
+ <f name="lemma">sein</f>
+ <f name="msd">Mood=Ind|Number=Plur|Person=3|Tense=Pres|VerbForm=Fin</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s274_n7" from="4065" to="4070">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">ADV</f>
+ <f name="lemma">heute</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s274_n8" from="4071" to="4089">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">ADJ</f>
+ <f name="lemma">interferometrische</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s274_n9" from="4090" to="4099">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">NOUN</f>
+ <f name="lemma">Verfahren</f>
+ <f name="msd">Gender=Neut|Number=Plur|Person=3</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s274_n10" from="4100" to="4106">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">ADJ</f>
+ <f name="lemma">üblich</f>
+ <f name="msd">Degree=Pos|Variant=Short</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s274_n11" from="4106" to="4107">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">PUNCT</f>
+ <f name="lemma">.</f>
+ <f name="msd">PunctType=Peri</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s275_n1" from="4108" to="4114">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">SCONJ</f>
+ <f name="lemma">Sofern</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s275_n2" from="4115" to="4118">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">DET</f>
+ <f name="lemma">die</f>
+ <f name="msd">Case=Nom|Gender=Fem|Number=Sing|PronType=Art</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s275_n3" from="4119" to="4129">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">ADJ</f>
+ <f name="lemma">sphärisch</f>
+ <f name="msd">Degree=Pos|Gender=Fem|Number=Sing</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s275_n4" from="4130" to="4140">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">NOUN</f>
+ <f name="lemma">Ration</f>
+ <f name="msd">Gender=Fem|Number=Sing|Person=3</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s275_n5" from="4141" to="4144">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">DET</f>
+ <f name="lemma">das</f>
+ <f name="msd">Case=Acc|Gender=Neut|Number=Sing|PronType=Art</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s275_n6" from="4145" to="4163">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">NOUN</f>
+ <f name="lemma">Vermögen</f>
+ <f name="msd">Gender=Neut|Number=Sing|Person=3</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s275_n7" from="4164" to="4172">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">VERB</f>
+ <f name="lemma">begrenzen</f>
+ <f name="msd">Mood=Ind|Number=Sing|Person=3|Tense=Pres|VerbForm=Fin</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s275_n8" from="4172" to="4173">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">PUNCT</f>
+ <f name="lemma">,</f>
+ <f name="msd">PunctType=Comm</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s275_n9" from="4174" to="4178">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">AUX</f>
+ <f name="lemma">können</f>
+ <f name="msd">Mood=Ind|Number=Sing|Person=3|Tense=Pres|VerbForm=Fin|VerbType=Mod</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s275_n10" from="4179" to="4185">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">PRON</f>
+ <f name="lemma">dieses</f>
+ <f name="msd">Case=Nom|Gender=Neut|Number=Sing|Person=3|PronType=Dem</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s275_n11" from="4186" to="4191">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">ADP</f>
+ <f name="lemma">durch</f>
+ <f name="msd">AdpType=Prep|Case=Acc</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s275_n12" from="4192" to="4201">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">NOUN</f>
+ <f name="lemma">Abblenden</f>
+ <f name="msd">Gender=Neut|Number=Sing|Person=3</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s275_n13" from="4202" to="4205">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">ADP</f>
+ <f name="lemma">bis</f>
+ <f name="msd">AdpType=Prep</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s275_n14" from="4206" to="4209">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">ADP</f>
+ <f name="lemma">zur</f>
+ <f name="msd">AdpType=Prep|Case=Dat</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s275_n15" from="4210" to="4220">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">ADJ</f>
+ <f name="lemma">kritisch</f>
+ <f name="msd">Degree=Pos|Number=Sing</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s275_n16" from="4221" to="4227">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">NOUN</f>
+ <f name="lemma">Blende</f>
+ <f name="msd">Gender=Fem|Number=Sing|Person=3</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s275_n17" from="4228" to="4238">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">VERB</f>
+ <f name="lemma">steigern</f>
+ <f name="msd">Aspect=Perf|VerbForm=Part</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s275_n18" from="4239" to="4245">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">AUX</f>
+ <f name="lemma">werden</f>
+ <f name="msd">VerbForm=Inf</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s275_n19" from="4245" to="4246">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">PUNCT</f>
+ <f name="lemma">.</f>
+ <f name="msd">PunctType=Peri</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s276_n1" from="4247" to="4250">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">ADP</f>
+ <f name="lemma">Bei</f>
+ <f name="msd">AdpType=Prep|Case=Dat</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s276_n2" from="4251" to="4254">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">DET</f>
+ <f name="lemma">der</f>
+ <f name="msd">Case=Dat|Gender=Fem|Number=Sing|PronType=Art</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s276_n3" from="4255" to="4264">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">NOUN</f>
+ <f name="lemma">Reflexion</f>
+ <f name="msd">Gender=Fem|Number=Sing|Person=3</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s276_n4" from="4265" to="4267">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">ADP</f>
+ <f name="lemma">an</f>
+ <f name="msd">AdpType=Prep|Case=Dat</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s276_n5" from="4268" to="4273">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">DET</f>
+ <f name="lemma">einem</f>
+ <f name="msd">Case=Dat|Gender=Masc|Number=Sing|PronType=Art</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s276_n6" from="4274" to="4285">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">ADJ</f>
+ <f name="lemma">sphärisch</f>
+ <f name="msd">Degree=Pos|Number=Sing</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s276_n7" from="4286" to="4297">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">NOUN</f>
+ <f name="lemma">Spiegel</f>
+ <f name="msd">Gender=Masc|Number=Sing|Person=3</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s276_n8" from="4298" to="4306">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">VERB</f>
+ <f name="lemma">entstehen</f>
+ <f name="msd">Mood=Ind|Number=Sing|Person=3|Tense=Pres|VerbForm=Fin</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s276_n9" from="4307" to="4310">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">DET</f>
+ <f name="lemma">ein</f>
+ <f name="msd">Case=Nom|Gender=Masc|Number=Sing|PronType=Art</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s276_n10" from="4311" to="4327">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">NOUN</f>
+ <f name="lemma">Fehler</f>
+ <f name="msd">Gender=Masc|Number=Sing|Person=3</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s276_n11" from="4327" to="4328">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">PUNCT</f>
+ <f name="lemma">,</f>
+ <f name="msd">PunctType=Comm</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s276_n12" from="4329" to="4335">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">PRON</f>
+ <f name="lemma">dieser</f>
+ <f name="msd">Case=Nom|Gender=Masc|Number=Sing|Person=3|PronType=Dem</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s276_n13" from="4336" to="4341">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">VERB</f>
+ <f name="lemma">tragen</f>
+ <f name="msd">Mood=Ind|Number=Sing|Person=3|Tense=Pres|VerbForm=Fin</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s276_n14" from="4342" to="4345">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">DET</f>
+ <f name="lemma">den</f>
+ <f name="msd">Case=Acc|Gender=Masc|Number=Sing|PronType=Art</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s276_n15" from="4346" to="4351">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">NOUN</f>
+ <f name="lemma">Name</f>
+ <f name="msd">Gender=Masc|Number=Sing|Person=3</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s276_n16" from="4352" to="4363">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">NOUN</f>
+ <f name="lemma">Katakaustik</f>
+ <f name="msd">Gender=Fem|Number=Sing|Person=3</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s276_n17" from="4363" to="4364">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">PUNCT</f>
+ <f name="lemma">.</f>
+ <f name="msd">PunctType=Peri</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s277_n1" from="4366" to="4379">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">NOUN</f>
+ <f name="lemma">Astigmatismus</f>
+ <f name="msd">Gender=Masc|Number=Sing|Person=3</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s277_n2" from="4380" to="4388">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">ADJ</f>
+ <f name="lemma">schief</f>
+ <f name="msd">Case=Gen|Degree=Pos|Number=Plur</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s277_n3" from="4389" to="4395">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">NOUN</f>
+ <f name="lemma">Bündel</f>
+ <f name="msd">Gender=Neut|Number=Plur|Person=3</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s277_n4" from="4397" to="4401">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">X</f>
+ <f name="lemma">mini</f>
+ <f name="msd">Foreign=Yes|Person=3</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s277_n5" from="4401" to="4402">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">X</f>
+ <f name="lemma">|</f>
+ <f name="msd">Foreign=Yes|Person=3</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s277_n6" from="4402" to="4410">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">VERB</f>
+ <f name="lemma">hochkant</f>
+ <f name="msd">Mood=Ind|Number=Sing|Person=3|Tense=Pres|VerbForm=Fin</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s277_n7" from="4410" to="4411">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">X</f>
+ <f name="lemma">=</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s277_n8" from="4411" to="4412">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">NUM</f>
+ <f name="lemma">2</f>
+ <f name="msd">Number=Plur|NumType=Card|Person=3</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s277_n9" from="4412" to="4413">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">NOUN</f>
+ <f name="lemma">|</f>
+ <f name="msd">Foreign=Yes|Person=3</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s277_n10" from="4413" to="4426">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">NOUN</f>
+ <f name="lemma">Astigmatismus</f>
+ <f name="msd">Gender=Masc|Number=Sing|Person=3</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s277_n11" from="4426" to="4427">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">PUNCT</f>
+ <f name="lemma">:</f>
+ <f name="msd">PunctType=Peri</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s277_n12" from="4428" to="4435">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">NOUN</f>
+ <f name="lemma">Objekt</f>
+ <f name="msd">Gender=Neut|Number=Plur|Person=3</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s277_n13" from="4435" to="4436">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">PUNCT</f>
+ <f name="lemma">,</f>
+ <f name="msd">PunctType=Comm</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s277_n14" from="4437" to="4440">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">PRON</f>
+ <f name="lemma">die</f>
+ <f name="msd">Case=Nom|Number=Plur|Person=3|PronType=Rel</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s277_n15" from="4441" to="4453">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">ADJ</f>
+ <f name="lemma">außerhalbder</f>
+ <f name="msd">Degree=Pos|Gender=Fem|Number=Sing</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s277_n16" from="4454" to="4463">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">ADJ</f>
+ <f name="lemma">optisch</f>
+ <f name="msd">Degree=Pos|Number=Sing</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s277_n17" from="4464" to="4469">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">NOUN</f>
+ <f name="lemma">Achse</f>
+ <f name="msd">Gender=Fem|Number=Sing|Person=3</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s277_n18" from="4470" to="4476">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">VERB</f>
+ <f name="lemma">liegen</f>
+ <f name="msd">Mood=Ind|Number=Plur|Person=3|Tense=Pres|VerbForm=Fin</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s277_n19" from="4476" to="4477">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">PUNCT</f>
+ <f name="lemma">,</f>
+ <f name="msd">PunctType=Comm</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s277_n20" from="4478" to="4484">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">AUX</f>
+ <f name="lemma">werden</f>
+ <f name="msd">Mood=Ind|Number=Plur|Person=3|Tense=Pres|VerbForm=Fin</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s277_n21" from="4485" to="4493">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">ADJ</f>
+ <f name="lemma">unscharf</f>
+ <f name="msd">Degree=Pos|Variant=Short</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s277_n22" from="4494" to="4504">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">VERB</f>
+ <f name="lemma">abbilden</f>
+ <f name="msd">Aspect=Perf|VerbForm=Part</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s277_n23" from="4504" to="4505">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">PUNCT</f>
+ <f name="lemma">.</f>
+ <f name="msd">PunctType=Peri</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s278_n1" from="4506" to="4513">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">NOUN</f>
+ <f name="lemma">Ursache</f>
+ <f name="msd">Gender=Fem|Number=Sing|Person=3</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s278_n2" from="4514" to="4518">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">AUX</f>
+ <f name="lemma">sein</f>
+ <f name="msd">Mood=Ind|Number=Plur|Person=3|Tense=Pres|VerbForm=Fin</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s278_n3" from="4519" to="4522">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">DET</f>
+ <f name="lemma">die</f>
+ <f name="msd">Case=Nom|Number=Plur|PronType=Art</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s278_n4" from="4523" to="4536">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">ADJ</f>
+ <f name="lemma">verscheiden</f>
+ <f name="msd">Degree=Pos|Number=Plur</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s278_n5" from="4537" to="4548">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">NOUN</f>
+ <f name="lemma">Weite</f>
+ <f name="msd">Gender=Fem|Number=Plur|Person=3</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s278_n6" from="4549" to="4551">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">ADP</f>
+ <f name="lemma">in</f>
+ <f name="msd">AdpType=Prep|Case=Dat</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s278_n7" from="4552" to="4566">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">NOUN</f>
+ <f name="lemma">DErMeridional-</f>
+ <f name="msd">Hyph=Yes</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s278_n8" from="4567" to="4568">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">PUNCT</f>
+ <f name="lemma">(</f>
+ <f name="msd">PunctType=Brck</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s278_n9" from="4568" to="4569">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">NOUN</f>
+ <f name="lemma">M</f>
+ <f name="msd">Gender=Neut|Number=Sing|Person=3</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s278_n10" from="4569" to="4570">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">PUNCT</f>
+ <f name="lemma">)</f>
+ <f name="msd">PunctType=Brck</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s278_n11" from="4571" to="4574">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">CCONJ</f>
+ <f name="lemma">und</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s278_n12" from="4575" to="4588">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">NOUN</f>
+ <f name="lemma">Ebene</f>
+ <f name="msd">Gender=Neut|Number=Plur|Person=3</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s278_n13" from="4589" to="4590">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">PUNCT</f>
+ <f name="lemma">(</f>
+ <f name="msd">PunctType=Brck</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s278_n14" from="4590" to="4591">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">NOUN</f>
+ <f name="lemma">S</f>
+ <f name="msd">Gender=Neut|Number=Sing|Person=3</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s278_n15" from="4591" to="4592">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">PUNCT</f>
+ <f name="lemma">)</f>
+ <f name="msd">PunctType=Brck</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s278_n16" from="4592" to="4593">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">PUNCT</f>
+ <f name="lemma">.</f>
+ <f name="msd">PunctType=Peri</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s279_n1" from="4595" to="4608">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">NOUN</f>
+ <f name="lemma">Astigmatismus</f>
+ <f name="msd">Gender=Masc|Number=Sing|Person=3</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s279_n2" from="4609" to="4612">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">AUX</f>
+ <f name="lemma">sein</f>
+ <f name="msd">Mood=Ind|Number=Sing|Person=3|Tense=Pres|VerbForm=Fin</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s279_n3" from="4613" to="4616">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">DET</f>
+ <f name="lemma">ein</f>
+ <f name="msd">Case=Nom|Gender=Masc|Number=Sing|PronType=Art</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s279_n4" from="4617" to="4630">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">NOUN</f>
+ <f name="lemma">Fehler</f>
+ <f name="msd">Gender=Masc|Number=Sing|Person=3</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s279_n5" from="4630" to="4631">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">PUNCT</f>
+ <f name="lemma">,</f>
+ <f name="msd">PunctType=Comm</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s279_n6" from="4632" to="4642">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">PRON</f>
+ <f name="lemma">welcherdas</f>
+ <f name="msd">Case=Nom|Gender=Neut|Number=Sing|Person=3|PronType=Rel</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s279_n7" from="4643" to="4646">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">ADP</f>
+ <f name="lemma">von</f>
+ <f name="msd">AdpType=Prep|Case=Dat</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s279_n8" from="4647" to="4652">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">DET</f>
+ <f name="lemma">einem</f>
+ <f name="msd">Case=Dat|Gender=Masc|Number=Sing|PronType=Art</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s279_n9" from="4653" to="4664">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">NOUN</f>
+ <f name="lemma">Punkt</f>
+ <f name="msd">Gender=Masc|Number=Sing|Person=3</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s279_n10" from="4665" to="4675">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">ADJ</f>
+ <f name="lemma">ausgehen</f>
+ <f name="msd">Degree=Pos|Number=Plur</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s279_n11" from="4676" to="4679">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">CCONJ</f>
+ <f name="lemma">und</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s279_n12" from="4680" to="4686">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">ADJ</f>
+ <f name="lemma">schräg</f>
+ <f name="msd">Degree=Pos|Variant=Short</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s279_n13" from="4687" to="4689">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">ADP</f>
+ <f name="lemma">in</f>
+ <f name="msd">AdpType=Prep|Case=Acc</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s279_n14" from="4690" to="4693">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">DET</f>
+ <f name="lemma">der</f>
+ <f name="msd">Case=Acc|Definite=Def|Gender=Neut|Number=Sing|PronType=Art</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s279_n15" from="4694" to="4713">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">ADJ</f>
+ <f name="lemma">Objektiveinfallende</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s279_n16" from="4714" to="4728">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">NOUN</f>
+ <f name="lemma">Bündel</f>
+ <f name="msd">Gender=Neut|Number=Sing|Person=3</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s279_n17" from="4729" to="4737">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">VERB</f>
+ <f name="lemma">betreffen</f>
+ <f name="msd">Mood=Ind|Number=Sing|Person=3|Tense=Pres|VerbForm=Fin</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s279_n18" from="4737" to="4738">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">PUNCT</f>
+ <f name="lemma">.</f>
+ <f name="msd">PunctType=Peri</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s280_n1" from="4739" to="4744">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">ADV</f>
+ <f name="lemma">Dabei</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s280_n2" from="4745" to="4748">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">AUX</f>
+ <f name="lemma">sein</f>
+ <f name="msd">Mood=Ind|Number=Sing|Person=3|Tense=Pres|VerbForm=Fin</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s280_n3" from="4749" to="4757">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">ADP</f>
+ <f name="lemma">zwischen</f>
+ <f name="msd">AdpType=Prep|Case=Dat</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s280_n4" from="4758" to="4769">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">NOUN</f>
+ <f name="lemma">Meridional-</f>
+ <f name="msd">Hyph=Yes</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s280_n5" from="4770" to="4773">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">CCONJ</f>
+ <f name="lemma">und</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s280_n6" from="4774" to="4787">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">NOUN</f>
+ <f name="lemma">Ebene</f>
+ <f name="msd">Gender=Neut|Number=Plur|Person=3</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s280_n7" from="4788" to="4803">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">VERB</f>
+ <f name="lemma">zuunterscheiden</f>
+ <f name="msd">VerbForm=Inf</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s280_n8" from="4803" to="4804">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">PUNCT</f>
+ <f name="lemma">.</f>
+ <f name="msd">PunctType=Peri</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s281_n1" from="4805" to="4807">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">ADP</f>
+ <f name="lemma">In</f>
+ <f name="msd">AdpType=Prep|Case=Dat</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s281_n2" from="4808" to="4816">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">NOUN</f>
+ <f name="lemma">Richtung</f>
+ <f name="msd">Gender=Fem|Number=Sing|Person=3</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s281_n3" from="4817" to="4820">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">DET</f>
+ <f name="lemma">der</f>
+ <f name="msd">Case=Gen|Gender=Fem|Number=Sing|PronType=Art</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s281_n4" from="4821" to="4836">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">NOUN</f>
+ <f name="lemma">Ebene</f>
+ <f name="msd">Gender=Fem|Number=Sing|Person=3</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s281_n5" from="4837" to="4838">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">PUNCT</f>
+ <f name="lemma">(</f>
+ <f name="msd">PunctType=Brck</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s281_n6" from="4838" to="4839">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">NOUN</f>
+ <f name="lemma">M</f>
+ <f name="msd">Number=Sing|Person=3</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s281_n7" from="4839" to="4840">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">PUNCT</f>
+ <f name="lemma">)</f>
+ <f name="msd">PunctType=Brck</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s281_n8" from="4840" to="4841">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">PUNCT</f>
+ <f name="lemma">,</f>
+ <f name="msd">PunctType=Comm</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s281_n9" from="4842" to="4848">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">PRON</f>
+ <f name="lemma">welche</f>
+ <f name="msd">Case=Nom|Gender=Fem|Number=Sing|Person=3|PronType=Rel</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s281_n10" from="4849" to="4852">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">DET</f>
+ <f name="lemma">die</f>
+ <f name="msd">Case=Acc|Gender=Fem|Number=Sing|PronType=Art</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s281_n11" from="4853" to="4866">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">PROPN</f>
+ <f name="lemma">optischeaChse</f>
+ <f name="msd">Person=3</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s281_n12" from="4867" to="4874">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">VERB</f>
+ <f name="lemma">enthalten</f>
+ <f name="msd">Mood=Ind|Number=Sing|Person=3|Tense=Pres|VerbForm=Fin</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s281_n13" from="4874" to="4875">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">PUNCT</f>
+ <f name="lemma">,</f>
+ <f name="msd">PunctType=Comm</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s281_n14" from="4876" to="4879">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">AUX</f>
+ <f name="lemma">sein</f>
+ <f name="msd">Mood=Ind|Number=Sing|Person=3|Tense=Pres|VerbForm=Fin</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s281_n15" from="4880" to="4883">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">DET</f>
+ <f name="lemma">die</f>
+ <f name="msd">Case=Nom|Gender=Fem|Number=Sing|PronType=Art</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s281_n16" from="4884" to="4889">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">NOUN</f>
+ <f name="lemma">Linse</f>
+ <f name="msd">Gender=Fem|Number=Sing|Person=3</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s281_n17" from="4890" to="4904">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">ADJ</f>
+ <f name="lemma">perspektivisch</f>
+ <f name="msd">Degree=Pos|Variant=Short</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s281_n18" from="4905" to="4913">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">VERB</f>
+ <f name="lemma">verkürzen</f>
+ <f name="msd">Aspect=Perf|VerbForm=Part</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s281_n19" from="4913" to="4914">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">PUNCT</f>
+ <f name="lemma">,</f>
+ <f name="msd">PunctType=Comm</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s281_n20" from="4915" to="4932">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">NOUN</f>
+ <f name="lemma">Winkel</f>
+ <f name="msd">Gender=Masc|Number=Plur|Person=3</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s281_n21" from="4933" to="4942">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">VERB</f>
+ <f name="lemma">variieren</f>
+ <f name="msd">Mood=Ind|Number=Plur|Person=3|Tense=Pres|VerbForm=Fin</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s281_n22" from="4943" to="4952">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">ADJ</f>
+ <f name="lemma">schnell</f>
+ <f name="msd">Degree=Cmp|Variant=Short</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s281_n23" from="4953" to="4956">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">ADP</f>
+ <f name="lemma">mit</f>
+ <f name="msd">AdpType=Prep|Case=Dat</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s281_n24" from="4957" to="4960">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">DET</f>
+ <f name="lemma">dem</f>
+ <f name="msd">Case=Dat|Gender=Masc|Number=Sing|PronType=Art</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s281_n25" from="4961" to="4968">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">NOUN</f>
+ <f name="lemma">Versatz</f>
+ <f name="msd">Gender=Masc|Number=Sing|Person=3</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s281_n26" from="4969" to="4972">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">DET</f>
+ <f name="lemma">des</f>
+ <f name="msd">Case=Gen|Gender=Masc|Number=Sing|PronType=Art</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s281_n27" from="4973" to="4980">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">NOUN</f>
+ <f name="lemma">Strahl</f>
+ <f name="msd">Case=Gen|Gender=Masc|Number=Sing|Person=3</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s281_n28" from="4981" to="4989">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">PROPN</f>
+ <f name="lemma">imBündel</f>
+ <f name="msd">Person=3</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s281_n29" from="4989" to="4990">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">PUNCT</f>
+ <f name="lemma">.</f>
+ <f name="msd">PunctType=Peri</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s282_n1" from="4991" to="4997">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">ADV</f>
+ <f name="lemma">Daraus</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s282_n2" from="4998" to="5008">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">VERB</f>
+ <f name="lemma">resultieren</f>
+ <f name="msd">Mood=Ind|Number=Sing|Person=3|Tense=Pres|VerbForm=Fin</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s282_n3" from="5009" to="5013">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">DET</f>
+ <f name="lemma">eine</f>
+ <f name="msd">Case=Nom|Gender=Fem|Number=Sing|PronType=Art</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s282_n4" from="5014" to="5021">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">ADJ</f>
+ <f name="lemma">kurz</f>
+ <f name="msd">Degree=Cmp|Gender=Fem|Number=Sing</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s282_n5" from="5022" to="5032">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">NOUN</f>
+ <f name="lemma">Weite</f>
+ <f name="msd">Gender=Fem|Number=Sing|Person=3</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s282_n6" from="5032" to="5033">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">PUNCT</f>
+ <f name="lemma">.</f>
+ <f name="msd">PunctType=Peri</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s283_n1" from="5034" to="5039">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">ADP</f>
+ <f name="lemma">Hinzu</f>
+ <f name="msd">PartType=Vbp</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s283_n2" from="5040" to="5045">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">VERB</f>
+ <f name="lemma">kommen</f>
+ <f name="msd">Mood=Ind|Number=Sing|Person=3|Tense=Pres|VerbForm=Fin</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s283_n3" from="5045" to="5046">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">PUNCT</f>
+ <f name="lemma">,</f>
+ <f name="msd">PunctType=Comm</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s283_n4" from="5047" to="5051">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">SCONJ</f>
+ <f name="lemma">dass</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s283_n5" from="5052" to="5054">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">ADP</f>
+ <f name="lemma">in</f>
+ <f name="msd">AdpType=Prep|Case=Dat</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s283_n6" from="5055" to="5058">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">DET</f>
+ <f name="lemma">den</f>
+ <f name="msd">Case=Dat|Number=Plur|PronType=Art</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s283_n7" from="5059" to="5066">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">NOUN</f>
+ <f name="lemma">Punkt</f>
+ <f name="msd">Case=Dat|Gender=Masc|Number=Plur|Person=3</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s283_n8" from="5067" to="5068">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">PUNCT</f>
+ <f name="lemma">(</f>
+ <f name="msd">PunctType=Brck</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s283_n9" from="5068" to="5070">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">PROPN</f>
+ <f name="lemma">BM</f>
+ <f name="msd">Person=3</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s283_n10" from="5071" to="5074">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">CCONJ</f>
+ <f name="lemma">und</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s283_n11" from="5075" to="5077">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">PROPN</f>
+ <f name="lemma">BS</f>
+ <f name="msd">Person=3</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s283_n12" from="5077" to="5078">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">PUNCT</f>
+ <f name="lemma">)</f>
+ <f name="msd">PunctType=Brck</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s283_n13" from="5079" to="5084">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">DET</f>
+ <f name="lemma">kein</f>
+ <f name="msd">Case=Nom|Number=Plur|Person=3|PronType=Ind,Neg,Tot</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s283_n14" from="5085" to="5091">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">NOUN</f>
+ <f name="lemma">Punkt</f>
+ <f name="msd">Gender=Masc|Number=Plur|Person=3</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s283_n15" from="5091" to="5092">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">PUNCT</f>
+ <f name="lemma">,</f>
+ <f name="msd">PunctType=Comm</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s283_n16" from="5093" to="5100">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">CCONJ</f>
+ <f name="lemma">sondern</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s283_n17" from="5101" to="5112">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">NOUN</f>
+ <f name="lemma">Linie</f>
+ <f name="msd">Gender=Fem|Number=Plur|Person=3</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s283_n18" from="5113" to="5115">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">ADP</f>
+ <f name="lemma">in</f>
+ <f name="msd">AdpType=Prep|Case=Dat</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s283_n19" from="5116" to="5119">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">DET</f>
+ <f name="lemma">der</f>
+ <f name="msd">Case=Dat|Gender=Fem|Number=Sing|PronType=Art</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s283_n20" from="5120" to="5127">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">ADV</f>
+ <f name="lemma">jeweils</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s283_n21" from="5128" to="5135">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">ADJ</f>
+ <f name="lemma">ander</f>
+ <f name="msd">Degree=Pos|Number=Sing</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s283_n22" from="5136" to="5151">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">NOUN</f>
+ <f name="lemma">Gebildet</f>
+ <f name="msd">Gender=Fem|Number=Sing|Person=3</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s283_n23" from="5152" to="5158">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">AUX</f>
+ <f name="lemma">werden</f>
+ <f name="msd">Mood=Ind|Number=Plur|Person=3|Tense=Pres|VerbForm=Fin</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s283_n24" from="5158" to="5159">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">PUNCT</f>
+ <f name="lemma">.</f>
+ <f name="msd">PunctType=Peri</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s284_n1" from="5160" to="5165">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">ADV</f>
+ <f name="lemma">Somit</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s284_n2" from="5166" to="5174">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">VERB</f>
+ <f name="lemma">entstehen</f>
+ <f name="msd">Mood=Ind|Number=Sing|Person=3|Tense=Pres|VerbForm=Fin</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s284_n3" from="5175" to="5178">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">ADP</f>
+ <f name="lemma">vor</f>
+ <f name="msd">AdpType=Prep|Case=Dat</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s284_n4" from="5179" to="5182">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">CCONJ</f>
+ <f name="lemma">und</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s284_n5" from="5183" to="5189">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">ADP</f>
+ <f name="lemma">hinter</f>
+ <f name="msd">AdpType=Prep|Case=Dat</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s284_n6" from="5190" to="5193">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">DET</f>
+ <f name="lemma">den</f>
+ <f name="msd">Case=Dat|Number=Plur|PronType=Art</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s284_n7" from="5194" to="5200">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">ADJ</f>
+ <f name="lemma">beide</f>
+ <f name="msd">Case=Dat|Number=Plur|Person=3</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s284_n8" from="5201" to="5212">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">NOUN</f>
+ <f name="lemma">Ebene</f>
+ <f name="msd">Gender=Fem|Number=Plur|Person=3</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s284_n9" from="5213" to="5223">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">ADJ</f>
+ <f name="lemma">statteines</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s284_n10" from="5224" to="5231">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">NOUN</f>
+ <f name="lemma">Kreis</f>
+ <f name="msd">Case=Gen|Gender=Masc|Number=Sing|Person=3</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s284_n11" from="5232" to="5235">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">DET</f>
+ <f name="lemma">ein</f>
+ <f name="msd">Case=Nom|Gender=Neut|Number=Sing|PronType=Art</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s284_n12" from="5236" to="5240">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">NOUN</f>
+ <f name="lemma">Oval</f>
+ <f name="msd">Gender=Neut|Number=Sing|Person=3</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s284_n13" from="5240" to="5241">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">PUNCT</f>
+ <f name="lemma">,</f>
+ <f name="msd">PunctType=Comm</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s284_n14" from="5242" to="5244">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">SCONJ</f>
+ <f name="lemma">da</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s284_n15" from="5245" to="5250">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">DET</f>
+ <f name="lemma">jede</f>
+ <f name="msd">Case=Nom|Gender=Neut|Number=Sing|Person=3</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s284_n16" from="5251" to="5265">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">NOUN</f>
+ <f name="lemma">Bündel</f>
+ <f name="msd">Gender=Neut|Number=Sing|Person=3</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s284_n17" from="5266" to="5271">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">DET</f>
+ <f name="lemma">einer</f>
+ <f name="msd">Case=Gen|Gender=Fem|Number=Sing|PronType=Art</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s284_n18" from="5272" to="5277">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">NOUN</f>
+ <f name="lemma">Ebene</f>
+ <f name="msd">Gender=Fem|Number=Sing|Person=3</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s284_n19" from="5278" to="5288">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">PROPN</f>
+ <f name="lemma">Ellipse</f>
+ <f name="msd">Person=3</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s284_n20" from="5289" to="5293">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">AUX</f>
+ <f name="lemma">werden</f>
+ <f name="msd">Mood=Ind|Number=Sing|Person=3|Tense=Pres|VerbForm=Fin</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s284_n21" from="5294" to="5297">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">CCONJ</f>
+ <f name="lemma">und</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s284_n22" from="5298" to="5300">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">ADP</f>
+ <f name="lemma">in</f>
+ <f name="msd">AdpType=Prep|Case=Dat</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s284_n23" from="5301" to="5306">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">DET</f>
+ <f name="lemma">jede</f>
+ <f name="msd">Case=Dat|Gender=Masc|Number=Sing|Person=3|PronType=Ind,Neg,Tot</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s284_n24" from="5307" to="5312">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">NOUN</f>
+ <f name="lemma">Punkt</f>
+ <f name="msd">Gender=Masc|Number=Sing|Person=3</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s284_n25" from="5313" to="5318">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">DET</f>
+ <f name="lemma">einen</f>
+ <f name="msd">Case=Acc|Gender=Masc|Number=Sing|PronType=Art</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s284_n26" from="5319" to="5326">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">ADJ</f>
+ <f name="lemma">ander</f>
+ <f name="msd">Case=Acc|Degree=Pos|Gender=Masc|Number=Sing</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s284_n27" from="5327" to="5341">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">NOUN</f>
+ <f name="lemma">Winkel</f>
+ <f name="msd">Gender=Masc|Number=Sing|Person=3</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s284_n28" from="5342" to="5345">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">AUX</f>
+ <f name="lemma">haben</f>
+ <f name="msd">Mood=Ind|Number=Sing|Person=3|Tense=Pres|VerbForm=Fin</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s284_n29" from="5345" to="5346">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">PUNCT</f>
+ <f name="lemma">.</f>
+ <f name="msd">PunctType=Peri</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s285_n1" from="5347" to="5351">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">AUX</f>
+ <f name="lemma">werden</f>
+ <f name="msd">Mood=Ind|Number=Sing|Person=3|Tense=Pres|VerbForm=Fin</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s285_n2" from="5352" to="5355">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">DET</f>
+ <f name="lemma">ein</f>
+ <f name="msd">Case=Nom|Gender=Masc|Number=Sing|PronType=Art</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s285_n3" from="5356" to="5362">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">NOUN</f>
+ <f name="lemma">Schirm</f>
+ <f name="msd">Gender=Masc|Number=Sing|Person=3</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s285_n4" from="5363" to="5369">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">ADP</f>
+ <f name="lemma">hinter</f>
+ <f name="msd">AdpType=Prep|Case=Acc</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s285_n5" from="5370" to="5373">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">DET</f>
+ <f name="lemma">die</f>
+ <f name="msd">Case=Acc|Gender=Fem|Number=Sing|PronType=Art</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s285_n6" from="5374" to="5383">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">ADJ</f>
+ <f name="lemma">sagittale</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s285_n7" from="5384" to="5394">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">NOUN</f>
+ <f name="lemma">Ebene</f>
+ <f name="msd">Gender=Fem|Number=Sing|Person=3</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s285_n8" from="5395" to="5403">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">VERB</f>
+ <f name="lemma">halten</f>
+ <f name="msd">Aspect=Perf|VerbForm=Part</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s285_n9" from="5403" to="5404">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">PUNCT</f>
+ <f name="lemma">,</f>
+ <f name="msd">PunctType=Comm</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s285_n10" from="5405" to="5411">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">ADJ</f>
+ <f name="lemma">istein</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s285_n11" from="5412" to="5416">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">NOUN</f>
+ <f name="lemma">Oval</f>
+ <f name="msd">Person=3</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s285_n12" from="5417" to="5420">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">ADP</f>
+ <f name="lemma">mit</f>
+ <f name="msd">AdpType=Prep|Case=Dat</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s285_n13" from="5421" to="5427">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">ADJ</f>
+ <f name="lemma">lang</f>
+ <f name="msd">Degree=Pos|Gender=Fem|Number=Sing</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s285_n14" from="5428" to="5437">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">NOUN</f>
+ <f name="lemma">Bachse</f>
+ <f name="msd">Gender=Fem|Number=Sing|Person=3</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s285_n15" from="5438" to="5440">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">ADP</f>
+ <f name="lemma">in</f>
+ <f name="msd">AdpType=Prep|Case=Dat</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s285_n16" from="5441" to="5452">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">ADJ</f>
+ <f name="lemma">meridonaler</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s285_n17" from="5453" to="5461">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">NOUN</f>
+ <f name="lemma">Richtung</f>
+ <f name="msd">Gender=Fem|Number=Sing|Person=3</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s285_n18" from="5462" to="5463">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">PUNCT</f>
+ <f name="lemma">(</f>
+ <f name="msd">PunctType=Brck</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s285_n19" from="5463" to="5466">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">ADJ</f>
+ <f name="lemma">rot</f>
+ <f name="msd">Degree=Pos|Variant=Short</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s285_n20" from="5466" to="5467">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">PUNCT</f>
+ <f name="lemma">)</f>
+ <f name="msd">PunctType=Brck</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s285_n21" from="5468" to="5475">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">VERB</f>
+ <f name="lemma">zusehen</f>
+ <f name="msd">VerbForm=Inf</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s285_n22" from="5475" to="5476">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">PUNCT</f>
+ <f name="lemma">.</f>
+ <f name="msd">PunctType=Peri</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s286_n1" from="5477" to="5483">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">ADJ</f>
+ <f name="lemma">analog</f>
+ <f name="msd">Degree=Pos|Variant=Short</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s286_n2" from="5484" to="5488">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">ADV</f>
+ <f name="lemma">dazu</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s286_n3" from="5489" to="5492">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">AUX</f>
+ <f name="lemma">sein</f>
+ <f name="msd">Mood=Ind|Number=Sing|Person=3|Tense=Pres|VerbForm=Fin</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s286_n4" from="5493" to="5496">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">DET</f>
+ <f name="lemma">das</f>
+ <f name="msd">Case=Nom|Gender=Neut|Number=Sing|PronType=Art</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s286_n5" from="5497" to="5501">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">NOUN</f>
+ <f name="lemma">Oval</f>
+ <f name="msd">Gender=Neut|Number=Sing|Person=3</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s286_n6" from="5502" to="5505">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">ADP</f>
+ <f name="lemma">vor</f>
+ <f name="msd">AdpType=Prep|Case=Dat</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s286_n7" from="5506" to="5509">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">DET</f>
+ <f name="lemma">der</f>
+ <f name="msd">Case=Dat|Gender=Fem|Number=Sing|PronType=Art</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s286_n8" from="5510" to="5522">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">ADJ</f>
+ <f name="lemma">meridionalen</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s286_n9" from="5523" to="5533">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">NOUN</f>
+ <f name="lemma">Ebene</f>
+ <f name="msd">Gender=Fem|Number=Sing|Person=3</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s286_n10" from="5534" to="5545">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">ADJ</f>
+ <f name="lemma">mitlängerer</f>
+ <f name="msd">Degree=Cmp|Gender=Fem|Number=Sing</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s286_n11" from="5546" to="5555">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">NOUN</f>
+ <f name="lemma">Bachse</f>
+ <f name="msd">Gender=Fem|Number=Sing|Person=3</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s286_n12" from="5556" to="5558">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">ADP</f>
+ <f name="lemma">in</f>
+ <f name="msd">AdpType=Prep|Case=Dat</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s286_n13" from="5559" to="5569">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">ADJ</f>
+ <f name="lemma">sagittal</f>
+ <f name="msd">Degree=Pos|Gender=Fem|Number=Sing</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s286_n14" from="5570" to="5578">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">NOUN</f>
+ <f name="lemma">Richtung</f>
+ <f name="msd">Gender=Fem|Number=Sing|Person=3</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s286_n15" from="5579" to="5580">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">PUNCT</f>
+ <f name="lemma">(</f>
+ <f name="msd">PunctType=Brck</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s286_n16" from="5580" to="5584">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">ADJ</f>
+ <f name="lemma">grün</f>
+ <f name="msd">Degree=Pos|Variant=Short</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s286_n17" from="5584" to="5585">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">PUNCT</f>
+ <f name="lemma">)</f>
+ <f name="msd">PunctType=Brck</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s286_n18" from="5585" to="5586">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">PUNCT</f>
+ <f name="lemma">.</f>
+ <f name="msd">PunctType=Peri</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s287_n1" from="5587" to="5597">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">ADV</f>
+ <f name="lemma">Dazwischen</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s287_n2" from="5598" to="5607">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">VERB</f>
+ <f name="lemma">existieren</f>
+ <f name="msd">Mood=Ind|Number=Sing|Person=3|Tense=Pres|VerbForm=Fin</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s287_n3" from="5608" to="5612">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">DET</f>
+ <f name="lemma">eine</f>
+ <f name="msd">Case=Nom|Gender=Fem|Number=Sing|PronType=Art</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s287_n4" from="5613" to="5619">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">NOUN</f>
+ <f name="lemma">Stelle</f>
+ <f name="msd">Gender=Fem|Number=Sing|Person=3</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s287_n5" from="5619" to="5620">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">PUNCT</f>
+ <f name="lemma">,</f>
+ <f name="msd">PunctType=Comm</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s287_n6" from="5621" to="5623">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">ADV</f>
+ <f name="lemma">wo</f>
+ <f name="msd">PronType=Int</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s287_n7" from="5624" to="5627">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">DET</f>
+ <f name="lemma">ein</f>
+ <f name="msd">Case=Nom|Gender=Masc|Number=Sing|PronType=Art</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s287_n8" from="5628" to="5633">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">NOUN</f>
+ <f name="lemma">Punkt</f>
+ <f name="msd">Gender=Masc|Number=Sing|Person=3</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s287_n9" from="5634" to="5637">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">CCONJ</f>
+ <f name="lemma">als</f>
+ <f name="msd">ConjType=Comp</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s287_n10" from="5638" to="5648">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">ADJ</f>
+ <f name="lemma">unscharf</f>
+ <f name="msd">Case=Nom|Degree=Pos|Gender=Masc|Number=Sing</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s287_n11" from="5649" to="5654">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">NOUN</f>
+ <f name="lemma">Kreis</f>
+ <f name="msd">Gender=Masc|Number=Sing|Person=3</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s287_n12" from="5655" to="5665">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">VERB</f>
+ <f name="lemma">abbilden</f>
+ <f name="msd">Aspect=Perf|VerbForm=Part</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s287_n13" from="5666" to="5670">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">AUX</f>
+ <f name="lemma">werden</f>
+ <f name="msd">Mood=Ind|Number=Sing|Person=3|Tense=Pres|VerbForm=Fin</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s287_n14" from="5670" to="5671">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">PUNCT</f>
+ <f name="lemma">,</f>
+ <f name="msd">PunctType=Comm</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s287_n15" from="5672" to="5675">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">DET</f>
+ <f name="lemma">der</f>
+ <f name="msd">Case=Nom|Gender=Masc|Number=Sing|PronType=Art</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s287_n16" from="5676" to="5684">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">ADJ</f>
+ <f name="lemma">klein</f>
+ <f name="msd">Case=Nom|Degree=Sup|Gender=Masc|Number=Sing</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s287_n17" from="5685" to="5702">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">NOUN</f>
+ <f name="lemma">Kreis</f>
+ <f name="msd">Gender=Masc|Number=Sing|Person=3</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s287_n18" from="5703" to="5707">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">CCONJ</f>
+ <f name="lemma">oder</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s287_n19" from="5709" to="5714">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">NOUN</f>
+ <f name="lemma">Kreis</f>
+ <f name="msd">Gender=Masc|Number=Sing|Person=3</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s287_n20" from="5715" to="5724">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">ADJ</f>
+ <f name="lemma">klein</f>
+ <f name="msd">Degree=Sup|Gender=Fem|Number=Sing</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s287_n21" from="5725" to="5735">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">NOUN</f>
+ <f name="lemma">Verwirrung</f>
+ <f name="msd">Gender=Fem|Number=Sing|Person=3</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s287_n22" from="5736" to="5737">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">PUNCT</f>
+ <f name="lemma">.</f>
+ <f name="msd">PunctType=Peri</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s288_n1" from="5738" to="5753">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">VERB</f>
+ <f name="lemma">charakterisieren</f>
+ <f name="msd">Aspect=Perf|VerbForm=Part</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s288_n2" from="5754" to="5758">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">AUX</f>
+ <f name="lemma">werden</f>
+ <f name="msd">Mood=Ind|Number=Sing|Person=3|Tense=Pres|VerbForm=Fin</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s288_n3" from="5759" to="5762">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">DET</f>
+ <f name="lemma">der</f>
+ <f name="msd">Case=Nom|Gender=Masc|Number=Sing|PronType=Art</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s288_n4" from="5763" to="5776">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">NOUN</f>
+ <f name="lemma">Astigmatismus</f>
+ <f name="msd">Gender=Masc|Number=Sing|Person=3</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s288_n5" from="5777" to="5782">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">ADP</f>
+ <f name="lemma">durch</f>
+ <f name="msd">AdpType=Prep|Case=Acc</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s288_n6" from="5783" to="5786">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">DET</f>
+ <f name="lemma">die</f>
+ <f name="msd">Case=Acc|Gender=Fem|Number=Sing|PronType=Art</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s288_n7" from="5787" to="5800">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">ADJ</f>
+ <f name="lemma">astigmatische</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s288_n8" from="5801" to="5810">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">NOUN</f>
+ <f name="lemma">Differenz</f>
+ <f name="msd">Gender=Fem|Number=Sing|Person=3</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s288_n9" from="5810" to="5811">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">PUNCT</f>
+ <f name="lemma">,</f>
+ <f name="msd">PunctType=Comm</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s288_n10" from="5812" to="5815">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">DET</f>
+ <f name="lemma">den</f>
+ <f name="msd">Case=Acc|Gender=Masc|Number=Sing|PronType=Art</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s288_n11" from="5816" to="5823">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">NOUN</f>
+ <f name="lemma">Abstand</f>
+ <f name="msd">Gender=Masc|Number=Sing|Person=3</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s288_n12" from="5824" to="5835">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">ADJ</f>
+ <f name="lemma">zwischenden</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s288_n13" from="5836" to="5847">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">NOUN</f>
+ <f name="lemma">Linie</f>
+ <f name="msd">Gender=Fem|Number=Plur|Person=3</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s288_n14" from="5847" to="5848">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">PUNCT</f>
+ <f name="lemma">.</f>
+ <f name="msd">PunctType=Peri</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s289_n1" from="5849" to="5855">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">PRON</f>
+ <f name="lemma">Dieser</f>
+ <f name="msd">Case=Nom|Gender=Masc|Number=Sing|Person=3|PronType=Dem</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s289_n2" from="5856" to="5862">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">VERB</f>
+ <f name="lemma">wachsen</f>
+ <f name="msd">Mood=Ind|Number=Sing|Person=3|Tense=Pres|VerbForm=Fin</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s289_n3" from="5863" to="5866">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">ADP</f>
+ <f name="lemma">mit</f>
+ <f name="msd">AdpType=Prep|Case=Dat</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s289_n4" from="5867" to="5876">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">ADJ</f>
+ <f name="lemma">stark</f>
+ <f name="msd">Degree=Cmp|Gender=Fem|Number=Sing</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s289_n5" from="5877" to="5884">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">NOUN</f>
+ <f name="lemma">Neigung</f>
+ <f name="msd">Gender=Fem|Number=Sing|Person=3</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s289_n6" from="5885" to="5888">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">DET</f>
+ <f name="lemma">des</f>
+ <f name="msd">Case=Gen|Gender=Masc|Number=Sing|PronType=Art</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s289_n7" from="5889" to="5901">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">ADJ</f>
+ <f name="lemma">einfallen</f>
+ <f name="msd">Degree=Pos|Number=Sing</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s289_n8" from="5902" to="5912">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">NOUN</f>
+ <f name="lemma">Zur</f>
+ <f name="msd">Gender=Masc|Number=Sing|Person=3</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s289_n9" from="5913" to="5922">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">ADJ</f>
+ <f name="lemma">optisch</f>
+ <f name="msd">Degree=Pos|Number=Sing</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s289_n10" from="5923" to="5928">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">NOUN</f>
+ <f name="lemma">Achse</f>
+ <f name="msd">Gender=Fem|Number=Sing|Person=3</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s289_n11" from="5928" to="5929">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">PUNCT</f>
+ <f name="lemma">,</f>
+ <f name="msd">PunctType=Comm</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s289_n12" from="5930" to="5933">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">DET</f>
+ <f name="lemma">der</f>
+ <f name="msd">Case=Gen|Gender=Fem|Number=Sing|PronType=Art</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s289_n13" from="5934" to="5946">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">NOUN</f>
+ <f name="lemma">Stärke</f>
+ <f name="msd">Gender=Fem|Number=Sing|Person=3</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s289_n14" from="5946" to="5947">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">PUNCT</f>
+ <f name="lemma">,</f>
+ <f name="msd">PunctType=Comm</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s289_n15" from="5948" to="5951">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">DET</f>
+ <f name="lemma">der</f>
+ <f name="msd">Case=Gen|Gender=Fem|Number=Sing|PronType=Art</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s289_n16" from="5952" to="5963">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">NOUN</f>
+ <f name="lemma">Dicke</f>
+ <f name="msd">Gender=Fem|Number=Sing|Person=3</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s289_n17" from="5964" to="5967">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">CCONJ</f>
+ <f name="lemma">und</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s289_n18" from="5968" to="5986">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">NOUN</f>
+ <f name="lemma">Geometrie</f>
+ <f name="msd">Gender=Fem|Number=Sing|Person=3</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s289_n19" from="5986" to="5987">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">PUNCT</f>
+ <f name="lemma">.</f>
+ <f name="msd">PunctType=Peri</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s290_n1" from="5988" to="5990">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">ADV</f>
+ <f name="lemma">so</f>
+ <f name="msd">Degree=Pos</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s290_n2" from="5991" to="5996">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">AUX</f>
+ <f name="lemma">haben</f>
+ <f name="msd">Mood=Ind|Number=Plur|Person=3|Tense=Pres|VerbForm=Fin</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s290_n3" from="5997" to="6006">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">NOUN</f>
+ <f name="lemma">Lins</f>
+ <f name="msd">Person=3</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s290_n4" from="6007" to="6009">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">ADP</f>
+ <f name="lemma">im</f>
+ <f name="msd">AdpType=Prep|Case=Dat</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s290_n5" from="6010" to="6019">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">NOUN</f>
+ <f name="lemma">Gegensatz</f>
+ <f name="msd">Gender=Masc|Number=Sing|Person=3</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s290_n6" from="6020" to="6022">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">ADP</f>
+ <f name="lemma">zu</f>
+ <f name="msd">AdpType=Prep|Case=Dat</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s290_n7" from="6023" to="6037">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">ADJ</f>
+ <f name="lemma">durchziehen</f>
+ <f name="msd">Case=Dat|Degree=Pos|Number=Plur</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s290_n8" from="6038" to="6050">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">NOUN</f>
+ <f name="lemma">Form</f>
+ <f name="msd">Gender=Fem|Number=Plur|Person=3</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s290_n9" from="6051" to="6056">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">DET</f>
+ <f name="lemma">einen</f>
+ <f name="msd">Case=Acc|Gender=Masc|Number=Sing|PronType=Art</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s290_n10" from="6057" to="6066">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">ADV</f>
+ <f name="lemma">besonders</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s290_n11" from="6067" to="6087">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">ADJ</f>
+ <f name="lemma">Astigmatismus</f>
+ <f name="msd">Degree=Pos|Variant=Short</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s290_n12" from="6088" to="6091">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">ADP</f>
+ <f name="lemma">bei</f>
+ <f name="msd">AdpType=Prep|Case=Dat</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s290_n13" from="6092" to="6098">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">ADJ</f>
+ <f name="lemma">schräg</f>
+ <f name="msd">Degree=Pos|Variant=Short</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s290_n14" from="6099" to="6111">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">ADJ</f>
+ <f name="lemma">einfallen</f>
+ <f name="msd">Case=Dat|Degree=Pos|Number=Sing</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s290_n15" from="6112" to="6126">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">NOUN</f>
+ <f name="lemma">Bündel</f>
+ <f name="msd">Gender=Neut|Number=Sing|Person=3</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s290_n16" from="6126" to="6127">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">PUNCT</f>
+ <f name="lemma">.</f>
+ <f name="msd">PunctType=Peri</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s291_n1" from="6128" to="6134">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">DET</f>
+ <f name="lemma">dies</f>
+ <f name="msd">Case=Nom|Gender=Masc|Number=Sing|PronType=Dem</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s291_n2" from="6135" to="6147">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">NOUN</f>
+ <f name="lemma">Fehler</f>
+ <f name="msd">Gender=Masc|Number=Sing|Person=3</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s291_n3" from="6148" to="6153">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">AUX</f>
+ <f name="lemma">werden</f>
+ <f name="msd">Mood=Ind|Number=Sing|Person=3|Tense=Past|VerbForm=Fin</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s291_n4" from="6154" to="6156">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">ADP</f>
+ <f name="lemma">im</f>
+ <f name="msd">AdpType=Prep|Case=Dat</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s291_n5" from="6157" to="6168">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">NOUN</f>
+ <f name="lemma">Mittelalter</f>
+ <f name="msd">Gender=Neut|Number=Sing|Person=3</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s291_n6" from="6169" to="6172">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">CCONJ</f>
+ <f name="lemma">und</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s291_n7" from="6173" to="6179">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">ADJ</f>
+ <f name="lemma">früh</f>
+ <f name="msd">Degree=Pos|Gender=Fem|Number=Sing</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s291_n8" from="6180" to="6187">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">NOUN</f>
+ <f name="lemma">Neuzeit</f>
+ <f name="msd">Gender=Fem|Number=Sing|Person=3</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s291_n9" from="6188" to="6191">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">ADP</f>
+ <f name="lemma">zur</f>
+ <f name="msd">AdpType=Prep|Case=Acc</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s291_n10" from="6192" to="6201">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">NOUN</f>
+ <f name="lemma">Korrektur</f>
+ <f name="msd">Gender=Fem|Number=Sing|Person=3</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s291_n11" from="6202" to="6205">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">DET</f>
+ <f name="lemma">des</f>
+ <f name="msd">Case=Gen|Gender=Masc|Number=Sing|PronType=Art</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s291_n12" from="6206" to="6224">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">NOUN</f>
+ <f name="lemma">Stigmatismus</f>
+ <f name="msd">Gender=Masc|Number=Sing|Person=3</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s291_n13" from="6225" to="6232">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">VERB</f>
+ <f name="lemma">benutzen</f>
+ <f name="msd">Aspect=Perf|VerbForm=Part</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s291_n14" from="6232" to="6233">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">PUNCT</f>
+ <f name="lemma">,</f>
+ <f name="msd">PunctType=Comm</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s291_n15" from="6234" to="6239">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">SCONJ</f>
+ <f name="lemma">indem</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s291_n16" from="6240" to="6243">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">PRON</f>
+ <f name="lemma">man</f>
+ <f name="msd">Case=Nom|Number=Sing|Person=3|PronType=Ind,Neg,Tot</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s291_n17" from="6244" to="6255">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">ADJ</f>
+ <f name="lemma">schrägdurch</f>
+ <f name="msd">Degree=Pos|Variant=Short</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s291_n18" from="6256" to="6259">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">DET</f>
+ <f name="lemma">die</f>
+ <f name="msd">Case=Acc|Gender=Fem|Number=Sing|PronType=Art</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s291_n19" from="6260" to="6269">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">NOUN</f>
+ <f name="lemma">Brille</f>
+ <f name="msd">Gender=Fem|Number=Sing|Person=3</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s291_n20" from="6270" to="6278">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">VERB</f>
+ <f name="lemma">durchsehen</f>
+ <f name="msd">Mood=Ind|Number=Sing|Person=3|Tense=Past|VerbForm=Fin</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s291_n21" from="6279" to="6282">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">CCONJ</f>
+ <f name="lemma">und</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s291_n22" from="6283" to="6290">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">ADV</f>
+ <f name="lemma">dadurch</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s291_n23" from="6291" to="6297">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">PRON</f>
+ <f name="lemma">sein</f>
+ <f name="msd">Case=Acc|Gender=Masc|Number=Sing|Person=3|Poss=Yes|PronType=Prs</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s291_n24" from="6298" to="6305">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">ADJ</f>
+ <f name="lemma">eigen</f>
+ <f name="msd">Case=Acc|Degree=Pos|Gender=Masc|Number=Sing</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s291_n25" from="6306" to="6331">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">NOUN</f>
+ <f name="lemma">Kompensierte</f>
+ <f name="msd">Case=Nom|Gender=Masc|Number=Sing|Person=3</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s291_n26" from="6331" to="6332">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">PUNCT</f>
+ <f name="lemma">.</f>
+ <f name="msd">PunctType=Peri</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s292_n1" from="6333" to="6340">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">ADJ</f>
+ <f name="lemma">typisch</f>
+ <f name="msd">Degree=Pos|Variant=Short</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s292_n2" from="6341" to="6344">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">AUX</f>
+ <f name="lemma">sein</f>
+ <f name="msd">Mood=Ind|Number=Sing|Person=3|Tense=Pres|VerbForm=Fin</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s292_n3" from="6345" to="6348">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">DET</f>
+ <f name="lemma">der</f>
+ <f name="msd">Case=Nom|Gender=Masc|Number=Sing|PronType=Art</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s292_n4" from="6349" to="6356">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">ADV</f>
+ <f name="lemma">dadurch</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s292_n5" from="6357" to="6368">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">ADJ</f>
+ <f name="lemma">entstehen</f>
+ <f name="msd">Case=Nom|Degree=Pos|Gender=Masc|Number=Sing</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s292_n6" from="6369" to="6383">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">NOUN</f>
+ <f name="lemma">Blick</f>
+ <f name="msd">Gender=Masc|Number=Sing|Person=3</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s292_n7" from="6384" to="6388">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">CCONJ</f>
+ <f name="lemma">oder</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s292_n8" from="6389" to="6402">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">NOUN</f>
+ <f name="lemma">Hals</f>
+ <f name="msd">Gender=Masc|Number=Sing|Person=3</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s292_n9" from="6402" to="6403">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">PUNCT</f>
+ <f name="lemma">.</f>
+ <f name="msd">PunctType=Peri</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s293_n1" from="6404" to="6407">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">DET</f>
+ <f name="lemma">Ein</f>
+ <f name="msd">Case=Nom|Gender=Neut|Number=Sing|PronType=Art</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s293_n2" from="6408" to="6417">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">ADJ</f>
+ <f name="lemma">optisch</f>
+ <f name="msd">Degree=Pos|Gender=Neut|Number=Sing</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s293_n3" from="6418" to="6424">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">NOUN</f>
+ <f name="lemma">System</f>
+ <f name="msd">Gender=Neut|Number=Sing|Person=3</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s293_n4" from="6425" to="6429">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">AUX</f>
+ <f name="lemma">können</f>
+ <f name="msd">Mood=Ind|Number=Sing|Person=3|Tense=Pres|VerbForm=Fin|VerbType=Mod</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s293_n5" from="6430" to="6432">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">ADV</f>
+ <f name="lemma">so</f>
+ <f name="msd">Degree=Pos</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s293_n6" from="6433" to="6444">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">VERB</f>
+ <f name="lemma">konstruieren</f>
+ <f name="msd">Aspect=Perf|VerbForm=Part</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s293_n7" from="6445" to="6451">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">AUX</f>
+ <f name="lemma">werden</f>
+ <f name="msd">VerbForm=Inf</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s293_n8" from="6451" to="6452">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">PUNCT</f>
+ <f name="lemma">,</f>
+ <f name="msd">PunctType=Comm</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s293_n9" from="6452" to="6456">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">SCONJ</f>
+ <f name="lemma">dass</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s293_n10" from="6457" to="6478">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">NOUN</f>
+ <f name="lemma">Effekt</f>
+ <f name="msd">Gender=Masc|Number=Plur|Person=3</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s293_n11" from="6479" to="6489">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">VERB</f>
+ <f name="lemma">verringern</f>
+ <f name="msd">Aspect=Perf|VerbForm=Part</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s293_n12" from="6490" to="6494">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">CCONJ</f>
+ <f name="lemma">oder</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s293_n13" from="6495" to="6505">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">VERB</f>
+ <f name="lemma">verhindern</f>
+ <f name="msd">Aspect=Perf|VerbForm=Part</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s293_n14" from="6506" to="6512">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">AUX</f>
+ <f name="lemma">werden</f>
+ <f name="msd">Mood=Ind|Number=Plur|Person=3|Tense=Pres|VerbForm=Fin</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s293_n15" from="6512" to="6513">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">PUNCT</f>
+ <f name="lemma">.</f>
+ <f name="msd">PunctType=Peri</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s294_n1" from="6514" to="6520">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">DET</f>
+ <f name="lemma">solch</f>
+ <f name="msd">Case=Nom|Number=Plur|Person=3</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s294_n2" from="6521" to="6528">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">NOUN</f>
+ <f name="lemma">unknown</f>
+ <f name="msd">Person=3</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s294_n3" from="6529" to="6535">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">VERB</f>
+ <f name="lemma">heißen</f>
+ <f name="msd">Mood=Ind|Number=Plur|Person=3|Tense=Pres|VerbForm=Fin</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s294_n4" from="6536" to="6548">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">NOUN</f>
+ <f name="lemma">Mat</f>
+ <f name="msd">Gender=Fem|Number=Plur|Person=3</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s294_n5" from="6548" to="6549">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">PUNCT</f>
+ <f name="lemma">.</f>
+ <f name="msd">PunctType=Peri</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s295_n1" from="6550" to="6555">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">DET</f>
+ <f name="lemma">dies</f>
+ <f name="msd">Case=Nom|Gender=Fem|Number=Sing|PronType=Dem</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s295_n2" from="6556" to="6567">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">NOUN</f>
+ <f name="lemma">Bezeichnung</f>
+ <f name="msd">Gender=Fem|Number=Sing|Person=3</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s295_n3" from="6568" to="6571">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">AUX</f>
+ <f name="lemma">haben</f>
+ <f name="msd">Mood=Ind|Number=Sing|Person=3|Tense=Pres|VerbForm=Fin</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s295_n4" from="6572" to="6575">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">ADV</f>
+ <f name="lemma">nur</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s295_n5" from="6576" to="6580">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">ADV</f>
+ <f name="lemma">noch</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s295_n6" from="6581" to="6592">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">ADJ</f>
+ <f name="lemma">historisch</f>
+ <f name="msd">Degree=Pos|Gender=Fem|Number=Sing</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s295_n7" from="6593" to="6602">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">NOUN</f>
+ <f name="lemma">Bedeutung</f>
+ <f name="msd">Gender=Fem|Number=Sing|Person=3</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s295_n8" from="6602" to="6603">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">PUNCT</f>
+ <f name="lemma">,</f>
+ <f name="msd">PunctType=Comm</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s295_n9" from="6604" to="6612">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">ADJ</f>
+ <f name="lemma">dadieser</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s295_n10" from="6613" to="6619">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">NOUN</f>
+ <f name="lemma">Fehler</f>
+ <f name="msd">Gender=Masc|Number=Sing|Person=3</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s295_n11" from="6620" to="6623">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">ADP</f>
+ <f name="lemma">bei</f>
+ <f name="msd">AdpType=Prep|Case=Dat</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s295_n12" from="6624" to="6632">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">ADJ</f>
+ <f name="lemma">modern</f>
+ <f name="msd">Case=Dat|Degree=Pos|Number=Plur</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s295_n13" from="6633" to="6643">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">NOUN</f>
+ <f name="lemma">Objektiv</f>
+ <f name="msd">Case=Dat|Gender=Neut|Number=Plur|Person=3</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s295_n14" from="6644" to="6647">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">ADV</f>
+ <f name="lemma">nur</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s295_n15" from="6648" to="6652">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">ADV</f>
+ <f name="lemma">mehr</f>
+ <f name="msd">Degree=Cmp</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s295_n16" from="6653" to="6656">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">ADP</f>
+ <f name="lemma">bei</f>
+ <f name="msd">AdpType=Prep|Case=Dat</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s295_n17" from="6657" to="6684">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">NOUN</f>
+ <f name="lemma">Fehler</f>
+ <f name="msd">Case=Dat|Gender=Masc|Number=Plur|Person=3</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s295_n18" from="6685" to="6693">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">VERB</f>
+ <f name="lemma">auftreten</f>
+ <f name="msd">Mood=Ind|Number=Sing|Person=3|Tense=Pres|VerbForm=Fin</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s295_n19" from="6693" to="6694">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">PUNCT</f>
+ <f name="lemma">.</f>
+ <f name="msd">PunctType=Peri</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s296_n1" from="6695" to="6699">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">DET</f>
+ <f name="lemma">Eine</f>
+ <f name="msd">Case=Acc|Gender=Fem|Number=Sing|PronType=Art</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s296_n2" from="6700" to="6708">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">NOUN</f>
+ <f name="lemma">Ausnahme</f>
+ <f name="msd">Gender=Fem|Number=Sing|Person=3</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s296_n3" from="6709" to="6716">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">VERB</f>
+ <f name="lemma">stellen</f>
+ <f name="msd">Mood=Ind|Number=Plur|Person=3|Tense=Pres|VerbForm=Fin</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s296_n4" from="6717" to="6720">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">DET</f>
+ <f name="lemma">die</f>
+ <f name="msd">Case=Nom|Number=Plur|PronType=Art</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s296_n5" from="6721" to="6735">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">NOUN</f>
+ <f name="lemma">Spiegler</f>
+ <f name="msd">Gender=Masc|Number=Plur|Person=3</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s296_n6" from="6736" to="6737">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">X</f>
+ <f name="lemma">–</f>
+ <f name="msd">Foreign=Yes|Person=3</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s296_n7" from="6738" to="6742">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">DET</f>
+ <f name="lemma">eine</f>
+ <f name="msd">Case=Acc|Gender=Fem|Number=Sing|PronType=Art</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s296_n8" from="6743" to="6749">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">NOUN</f>
+ <f name="lemma">Gruppe</f>
+ <f name="msd">Gender=Fem|Number=Sing|Person=3</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s296_n9" from="6750" to="6753">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">ADP</f>
+ <f name="lemma">von</f>
+ <f name="msd">AdpType=Prep|Case=Dat</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s296_n10" from="6754" to="6778">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">PROPN</f>
+ <f name="lemma">AstronomischenteLeskopen</f>
+ <f name="msd">Person=3</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s296_n11" from="6779" to="6780">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">X</f>
+ <f name="lemma">–</f>
+ <f name="msd">Foreign=Yes|Person=3</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s296_n12" from="6781" to="6784">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">ADP</f>
+ <f name="lemma">dar</f>
+ <f name="msd">PartType=Vbp</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s296_n13" from="6784" to="6785">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">PUNCT</f>
+ <f name="lemma">,</f>
+ <f name="msd">PunctType=Comm</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s296_n14" from="6786" to="6789">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">ADP</f>
+ <f name="lemma">bei</f>
+ <f name="msd">AdpType=Prep|Case=Dat</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s296_n15" from="6790" to="6795">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">PRON</f>
+ <f name="lemma">denen</f>
+ <f name="msd">Case=Dat|Number=Plur|Person=3|PronType=Rel</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s296_n16" from="6796" to="6799">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">DET</f>
+ <f name="lemma">der</f>
+ <f name="msd">Case=Nom|Gender=Masc|Number=Sing|PronType=Art</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s296_n17" from="6800" to="6806">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">NOUN</f>
+ <f name="lemma">Fehler</f>
+ <f name="msd">Gender=Masc|Number=Sing|Person=3</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s296_n18" from="6807" to="6816">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">ADV</f>
+ <f name="lemma">besonders</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s296_n19" from="6817" to="6831">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">VERB</f>
+ <f name="lemma">-</f>
+ <f name="msd">Mood=Ind|Number=Sing|Person=3|Tense=Pres|VerbForm=Fin</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s296_n20" from="6831" to="6832">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">PUNCT</f>
+ <f name="lemma">.</f>
+ <f name="msd">PunctType=Peri</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s297_n1" from="6833" to="6836">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">DET</f>
+ <f name="lemma">Ein</f>
+ <f name="msd">Case=Nom|Gender=Masc|Number=Sing|PronType=Art</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s297_n2" from="6837" to="6840">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">DET</f>
+ <f name="lemma">dem</f>
+ <f name="msd">Case=Dat|Gender=Masc|Number=Sing|PronType=Art</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s297_n3" from="6841" to="6854">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">NOUN</f>
+ <f name="lemma">Astigmatismus</f>
+ <f name="msd">Gender=Masc|Number=Sing|Person=3</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s297_n4" from="6855" to="6864">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">ADJ</f>
+ <f name="lemma">ähnlich</f>
+ <f name="msd">Case=Nom|Degree=Pos|Gender=Masc|Number=Sing</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s297_n5" from="6865" to="6875">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">NOUN</f>
+ <f name="lemma">Fehler</f>
+ <f name="msd">Gender=Masc|Number=Sing|Person=3</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s297_n6" from="6876" to="6880">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">AUX</f>
+ <f name="lemma">können</f>
+ <f name="msd">Mood=Ind|Number=Sing|Person=3|Tense=Pres|VerbForm=Fin|VerbType=Mod</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s297_n7" from="6881" to="6884">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">ADP</f>
+ <f name="lemma">bei</f>
+ <f name="msd">AdpType=Prep|Case=Dat</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s297_n8" from="6885" to="6902">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">NOUN</f>
+ <f name="lemma">Lteleskope</f>
+ <f name="msd">Case=Dat|Gender=Neut|Number=Plur|Person=3</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s297_n9" from="6903" to="6906">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">DET</f>
+ <f name="lemma">der</f>
+ <f name="msd">Case=Gen|Gender=Fem|Number=Sing|PronType=Art</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s297_n10" from="6907" to="6924">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">NOUN</f>
+ <f name="lemma">Rastronomie</f>
+ <f name="msd">Gender=Fem|Number=Sing|Person=3</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s297_n11" from="6925" to="6934">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">VERB</f>
+ <f name="lemma">auftreten</f>
+ <f name="msd">VerbForm=Inf</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s297_n12" from="6934" to="6935">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">PUNCT</f>
+ <f name="lemma">,</f>
+ <f name="msd">PunctType=Comm</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s297_n13" from="6936" to="6941">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">DET</f>
+ <f name="lemma">deren</f>
+ <f name="msd">PronType=Rel</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s297_n14" from="6942" to="6954">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">NOUN</f>
+ <f name="lemma">Fokussierung</f>
+ <f name="msd">Gender=Fem|Number=Sing|Person=3</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s297_n15" from="6955" to="6958">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">ADV</f>
+ <f name="lemma">oft</f>
+ <f name="msd">Degree=Pos</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s297_n16" from="6959" to="6964">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">ADP</f>
+ <f name="lemma">durch</f>
+ <f name="msd">AdpType=Prep|Case=Acc</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s297_n17" from="6965" to="6971">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">ADJ</f>
+ <f name="lemma">axiale</f>
+ <f name="msd">Degree=Pos|Gender=Fem|Number=Sing</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s297_n18" from="6972" to="6984">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">NOUN</f>
+ <f name="lemma">Verschiebung</f>
+ <f name="msd">Gender=Fem|Number=Sing|Person=3</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s297_n19" from="6985" to="6988">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">DET</f>
+ <f name="lemma">des</f>
+ <f name="msd">Case=Gen|Gender=Masc|Number=Sing|PronType=Art</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s297_n20" from="6989" to="7009">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">NOUN</f>
+ <f name="lemma">Erfolgt</f>
+ <f name="msd">Gender=Masc|Number=Sing|Person=3</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s297_n21" from="7009" to="7010">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">PUNCT</f>
+ <f name="lemma">.</f>
+ <f name="msd">PunctType=Peri</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s298_n1" from="7011" to="7015">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">PRON</f>
+ <f name="lemma">Dies</f>
+ <f name="msd">Case=Nom|Gender=Neut|Number=Sing|Person=3|PronType=Dem</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s298_n2" from="7016" to="7020">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">AUX</f>
+ <f name="lemma">können</f>
+ <f name="msd">Mood=Ind|Number=Sing|Person=3|Tense=Pres|VerbForm=Fin|VerbType=Mod</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s298_n3" from="7021" to="7023">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">ADP</f>
+ <f name="lemma">zu</f>
+ <f name="msd">AdpType=Prep|Case=Dat</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s298_n4" from="7024" to="7031">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">ADJ</f>
+ <f name="lemma">klein</f>
+ <f name="msd">Case=Dat|Degree=Pos|Number=Plur</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s298_n5" from="7032" to="7044">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">NOUN</f>
+ <f name="lemma">Verkippung</f>
+ <f name="msd">Gender=Fem|Number=Plur|Person=3</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s298_n6" from="7045" to="7051">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">VERB</f>
+ <f name="lemma">führen</f>
+ <f name="msd">VerbForm=Inf</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s298_n7" from="7051" to="7052">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">PUNCT</f>
+ <f name="lemma">,</f>
+ <f name="msd">PunctType=Comm</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s298_n8" from="7053" to="7060">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">ADV</f>
+ <f name="lemma">wodurch</f>
+ <f name="msd">PronType=Int</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s298_n9" from="7061" to="7064">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">DET</f>
+ <f name="lemma">das</f>
+ <f name="msd">Case=Nom|Gender=Neut|Number=Sing|PronType=Art</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s298_n10" from="7065" to="7072">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">NOUN</f>
+ <f name="lemma">Bildder</f>
+ <f name="msd">Gender=Neut|Number=Sing|Person=3</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s298_n11" from="7073" to="7079">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">NOUN</f>
+ <f name="lemma">Stern</f>
+ <f name="msd">Gender=Masc|Number=Plur|Person=3</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s298_n12" from="7080" to="7085">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">PART</f>
+ <f name="lemma">nicht</f>
+ <f name="msd">Polarity=Neg</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s298_n13" from="7086" to="7090">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">ADV</f>
+ <f name="lemma">mehr</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s298_n14" from="7091" to="7102">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">ADJ</f>
+ <f name="lemma">punktförmig</f>
+ <f name="msd">Degree=Pos|Variant=Short</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s298_n15" from="7103" to="7106">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">AUX</f>
+ <f name="lemma">sein</f>
+ <f name="msd">Mood=Ind|Number=Sing|Person=3|Tense=Pres|VerbForm=Fin</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s298_n16" from="7106" to="7107">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">PUNCT</f>
+ <f name="lemma">,</f>
+ <f name="msd">PunctType=Comm</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s298_n17" from="7108" to="7115">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">CCONJ</f>
+ <f name="lemma">sondern</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s298_n18" from="7116" to="7119">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">ADP</f>
+ <f name="lemma">bei</f>
+ <f name="msd">AdpType=Prep|Case=Dat</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s298_n19" from="7120" to="7134">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">NOUN</f>
+ <f name="lemma">Stellung</f>
+ <f name="msd">Gender=Fem|Number=Sing|Person=3</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s298_n20" from="7135" to="7144">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">NOUN</f>
+ <f name="lemma">vonextra-</f>
+ <f name="msd">Hyph=Yes</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s298_n21" from="7145" to="7149">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">CCONJ</f>
+ <f name="lemma">bzw.</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s298_n22" from="7150" to="7162">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">ADJ</f>
+ <f name="lemma">intrafokaler</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s298_n23" from="7163" to="7168">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">NOUN</f>
+ <f name="lemma">Seite</f>
+ <f name="msd">Gender=Fem|Number=Sing|Person=3</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s298_n24" from="7169" to="7179">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">ADJ</f>
+ <f name="lemma">horizontal</f>
+ <f name="msd">Degree=Pos|Variant=Short</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s298_n25" from="7180" to="7184">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">CCONJ</f>
+ <f name="lemma">bzw.</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s298_n26" from="7185" to="7193">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">ADJ</f>
+ <f name="lemma">vertikal</f>
+ <f name="msd">Degree=Pos|Variant=Short</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s298_n27" from="7194" to="7199">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">ADV</f>
+ <f name="lemma">etwas</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s298_n28" from="7200" to="7217">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">VERB</f>
+ <f name="lemma">länglicherscheinen</f>
+ <f name="msd">Mood=Ind|Number=Sing|Person=3|Tense=Pres|VerbForm=Fin</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s298_n29" from="7217" to="7218">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">PUNCT</f>
+ <f name="lemma">.</f>
+ <f name="msd">PunctType=Peri</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s299_n1" from="7220" to="7240">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">PROPN</f>
+ <f name="lemma">Astigmatismus</f>
+ <f name="msd">Person=3</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s299_n2" from="7242" to="7255">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">ADJ</f>
+ <f name="lemma">unvollkommen</f>
+ <f name="msd">Degree=Pos|Number=Plur</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s299_n3" from="7256" to="7262">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">NOUN</f>
+ <f name="lemma">Linse</f>
+ <f name="msd">Gender=Fem|Number=Plur|Person=3</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s299_n4" from="7262" to="7263">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">PUNCT</f>
+ <f name="lemma">,</f>
+ <f name="msd">PunctType=Comm</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s299_n5" from="7264" to="7267">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">PRON</f>
+ <f name="lemma">die</f>
+ <f name="msd">Case=Nom|Number=Plur|Person=3|PronType=Rel</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s299_n6" from="7268" to="7273">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">PART</f>
+ <f name="lemma">nicht</f>
+ <f name="msd">Polarity=Neg</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s299_n7" from="7274" to="7281">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">ADJ</f>
+ <f name="lemma">korrekt</f>
+ <f name="msd">Degree=Pos|Variant=Short</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s299_n8" from="7282" to="7304">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">ADJ</f>
+ <f name="lemma">rotationssymmetrischum</f>
+ <f name="msd">Degree=Pos|Variant=Short</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s299_n9" from="7305" to="7308">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">DET</f>
+ <f name="lemma">die</f>
+ <f name="msd">Case=Nom|Gender=Fem|Number=Sing|PronType=Art</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s299_n10" from="7309" to="7317">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">ADJ</f>
+ <f name="lemma">optisch</f>
+ <f name="msd">Degree=Pos|Gender=Fem|Number=Sing</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s299_n11" from="7318" to="7323">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">NOUN</f>
+ <f name="lemma">Achse</f>
+ <f name="msd">Gender=Fem|Number=Sing|Person=3</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s299_n12" from="7324" to="7328">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">AUX</f>
+ <f name="lemma">sein</f>
+ <f name="msd">Mood=Ind|Number=Plur|Person=3|Tense=Pres|VerbForm=Fin</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s299_n13" from="7328" to="7329">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">PUNCT</f>
+ <f name="lemma">,</f>
+ <f name="msd">PunctType=Comm</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s299_n14" from="7330" to="7336">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">VERB</f>
+ <f name="lemma">bilden</f>
+ <f name="msd">Mood=Ind|Number=Plur|Person=3|Tense=Pres|VerbForm=Fin</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s299_n15" from="7337" to="7341">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">ADV</f>
+ <f name="lemma">auch</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s299_n16" from="7342" to="7355">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">ADJ</f>
+ <f name="lemma">achsparallele</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s299_n17" from="7356" to="7374">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">NOUN</f>
+ <f name="lemma">Bündelastigmatisch</f>
+ <f name="msd">Person=3</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s299_n18" from="7375" to="7377">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">ADP</f>
+ <f name="lemma">ab</f>
+ <f name="msd">PartType=Vbp</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s299_n19" from="7377" to="7378">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">PUNCT</f>
+ <f name="lemma">.</f>
+ <f name="msd">PunctType=Peri</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s300_n1" from="7379" to="7382">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">DET</f>
+ <f name="lemma">Ein</f>
+ <f name="msd">Case=Nom|Gender=Masc|Number=Sing|PronType=Art</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s300_n2" from="7383" to="7394">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">NOUN</f>
+ <f name="lemma">Punkt</f>
+ <f name="msd">Gender=Masc|Number=Sing|Person=3</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s300_n3" from="7395" to="7399">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">AUX</f>
+ <f name="lemma">werden</f>
+ <f name="msd">Mood=Ind|Number=Sing|Person=3|Tense=Pres|VerbForm=Fin</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s300_n4" from="7400" to="7402">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">ADV</f>
+ <f name="lemma">je</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s300_n5" from="7403" to="7407">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">ADP</f>
+ <f name="lemma">nach</f>
+ <f name="msd">AdpType=Prep|Case=Dat</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s300_n6" from="7408" to="7420">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">NOUN</f>
+ <f name="lemma">Fokussierung</f>
+ <f name="msd">Gender=Fem|Number=Sing|Person=3</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s300_n7" from="7421" to="7424">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">CCONJ</f>
+ <f name="lemma">als</f>
+ <f name="msd">ConjType=Comp</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s300_n8" from="7425" to="7431">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">NOUN</f>
+ <f name="lemma">Strich</f>
+ <f name="msd">Gender=Masc|Number=Sing|Person=3</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s300_n9" from="7432" to="7433">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">PUNCT</f>
+ <f name="lemma">(</f>
+ <f name="msd">PunctType=Brck</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s300_n10" from="7433" to="7442">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">ADJ</f>
+ <f name="lemma">längsoder</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s300_n11" from="7443" to="7447">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">ADV</f>
+ <f name="lemma">quer</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s300_n12" from="7447" to="7448">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">PUNCT</f>
+ <f name="lemma">)</f>
+ <f name="msd">PunctType=Brck</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s300_n13" from="7449" to="7459">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">VERB</f>
+ <f name="lemma">abbilden</f>
+ <f name="msd">Aspect=Perf|VerbForm=Part</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s300_n14" from="7459" to="7460">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">PUNCT</f>
+ <f name="lemma">.</f>
+ <f name="msd">PunctType=Peri</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s301_n1" from="7461" to="7467">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">DET</f>
+ <f name="lemma">dies</f>
+ <f name="msd">Case=Nom|Gender=Masc|Number=Sing|PronType=Dem</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s301_n2" from="7468" to="7474">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">NOUN</f>
+ <f name="lemma">Fehler</f>
+ <f name="msd">Gender=Masc|Number=Sing|Person=3</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s301_n3" from="7475" to="7481">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">VERB</f>
+ <f name="lemma">spielen</f>
+ <f name="msd">Mood=Ind|Number=Sing|Person=3|Tense=Pres|VerbForm=Fin</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s301_n4" from="7482" to="7484">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">ADP</f>
+ <f name="lemma">in</f>
+ <f name="msd">AdpType=Prep|Case=Dat</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s301_n5" from="7485" to="7488">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">DET</f>
+ <f name="lemma">der</f>
+ <f name="msd">Case=Dat|Gender=Fem|Number=Sing|PronType=Art</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s301_n6" from="7489" to="7499">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">NOUN</f>
+ <f name="lemma">Optik</f>
+ <f name="msd">Gender=Fem|Number=Sing|Person=3</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s301_n7" from="7500" to="7503">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">CCONJ</f>
+ <f name="lemma">und</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s301_n8" from="7504" to="7507">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">DET</f>
+ <f name="lemma">der</f>
+ <f name="msd">Case=Dat|Gender=Fem|Number=Sing|PronType=Art</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s301_n9" from="7508" to="7523">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">NOUN</f>
+ <f name="lemma">Optik</f>
+ <f name="msd">Gender=Fem|Number=Sing|Person=3</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s301_n10" from="7524" to="7528">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">DET</f>
+ <f name="lemma">eine</f>
+ <f name="msd">Case=Acc|Gender=Fem|Number=Sing|PronType=Art</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s301_n11" from="7529" to="7542">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">ADJ</f>
+ <f name="lemma">entscheiden</f>
+ <f name="msd">Degree=Pos|Gender=Fem|Number=Sing</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s301_n12" from="7543" to="7548">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">NOUN</f>
+ <f name="lemma">Rolle</f>
+ <f name="msd">Gender=Fem|Number=Sing|Person=3</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s301_n13" from="7548" to="7549">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">PUNCT</f>
+ <f name="lemma">.</f>
+ <f name="msd">PunctType=Peri</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s302_n1" from="7550" to="7553">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">DET</f>
+ <f name="lemma">Die</f>
+ <f name="msd">Case=Nom|Gender=Fem|Number=Sing|PronType=Art</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s302_n2" from="7554" to="7564">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">ADJ</f>
+ <f name="lemma">einfach</f>
+ <f name="msd">Degree=Sup|Gender=Fem|Number=Sing</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s302_n3" from="7565" to="7569">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">NOUN</f>
+ <f name="lemma">Form</f>
+ <f name="msd">Gender=Fem|Number=Sing|Person=3</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s302_n4" from="7570" to="7573">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">DET</f>
+ <f name="lemma">des</f>
+ <f name="msd">Case=Gen|Gender=Masc|Number=Sing|PronType=Art</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s302_n5" from="7574" to="7581">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">ADJ</f>
+ <f name="lemma">axialen</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s302_n6" from="7582" to="7595">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">NOUN</f>
+ <f name="lemma">Astigmatismus</f>
+ <f name="msd">Gender=Masc|Number=Sing|Person=3</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s302_n7" from="7596" to="7601">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">VERB</f>
+ <f name="lemma">lassen</f>
+ <f name="msd">Mood=Ind|Number=Sing|Person=3|Tense=Pres|VerbForm=Fin</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s302_n8" from="7602" to="7606">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">PRON</f>
+ <f name="lemma">sich</f>
+ <f name="msd">Case=Acc|Person=3|PronType=Prs|Reflex=Yes</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s302_n9" from="7607" to="7612">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">ADP</f>
+ <f name="lemma">durch</f>
+ <f name="msd">AdpType=Prep|Case=Acc</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s302_n10" from="7613" to="7624">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">NOUN</f>
+ <f name="lemma">Kombination</f>
+ <f name="msd">Gender=Fem|Number=Sing|Person=3</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s302_n11" from="7625" to="7628">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">ADP</f>
+ <f name="lemma">mit</f>
+ <f name="msd">AdpType=Prep|Case=Dat</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s302_n12" from="7629" to="7634">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">DET</f>
+ <f name="lemma">einer</f>
+ <f name="msd">Case=Dat|Gender=Fem|Number=Sing|PronType=Art</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s302_n13" from="7635" to="7637">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">ADP</f>
+ <f name="lemma">in</f>
+ <f name="msd">AdpType=Prep|Case=Dat</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s302_n14" from="7638" to="7648">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">NOUN</f>
+ <f name="lemma">Brechkraft</f>
+ <f name="msd">Gender=Fem|Number=Sing|Person=3</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s302_n15" from="7649" to="7652">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">CCONJ</f>
+ <f name="lemma">und</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s302_n16" from="7653" to="7665">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">NOUN</f>
+ <f name="lemma">Achsrichtung</f>
+ <f name="msd">Gender=Fem|Number=Sing|Person=3</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s302_n17" from="7666" to="7671">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">ADJ</f>
+ <f name="lemma">genau</f>
+ <f name="msd">Degree=Pos|Variant=Short</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s302_n18" from="7672" to="7687">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">ADJ</f>
+ <f name="lemma">dimensionieren</f>
+ <f name="msd">Degree=Pos|Number=Sing</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s302_n19" from="7688" to="7701">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">NOUN</f>
+ <f name="lemma">Linse</f>
+ <f name="msd">Gender=Fem|Number=Sing|Person=3</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s302_n20" from="7702" to="7713">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">VERB</f>
+ <f name="lemma">korrigieren</f>
+ <f name="msd">VerbForm=Inf</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s302_n21" from="7714" to="7715">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">PUNCT</f>
+ <f name="lemma">(</f>
+ <f name="msd">PunctType=Brck</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s302_n22" from="7715" to="7727">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">NOUN</f>
+ <f name="lemma">Zylinderglas</f>
+ <f name="msd">Gender=Neut|Number=Sing|Person=3</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s302_n23" from="7728" to="7730">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">ADP</f>
+ <f name="lemma">in</f>
+ <f name="msd">AdpType=Prep|Case=Dat</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s302_n24" from="7731" to="7734">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">DET</f>
+ <f name="lemma">der</f>
+ <f name="msd">Case=Dat|Gender=Fem|Number=Sing|PronType=Art</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s302_n25" from="7735" to="7741">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">NOUN</f>
+ <f name="lemma">Brille</f>
+ <f name="msd">Gender=Fem|Number=Sing|Person=3</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s302_n26" from="7741" to="7742">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">PUNCT</f>
+ <f name="lemma">,</f>
+ <f name="msd">PunctType=Comm</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s302_n27" from="7743" to="7752">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">NOUN</f>
+ <f name="lemma">Ator</f>
+ <f name="msd">Person=3</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s302_n28" from="7753" to="7755">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">ADP</f>
+ <f name="lemma">im</f>
+ <f name="msd">AdpType=Prep|Case=Dat</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s302_n29" from="7756" to="7775">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">NOUN</f>
+ <f name="lemma">Elektronenmikroskop</f>
+ <f name="msd">Person=3</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s302_n30" from="7775" to="7776">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">PUNCT</f>
+ <f name="lemma">)</f>
+ <f name="msd">PunctType=Brck</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s302_n31" from="7776" to="7777">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">PUNCT</f>
+ <f name="lemma">.</f>
+ <f name="msd">PunctType=Peri</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s303_n1" from="7778" to="7781">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">DET</f>
+ <f name="lemma">Die</f>
+ <f name="msd">Case=Nom|Gender=Fem|Number=Sing|PronType=Art</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s303_n2" from="7782" to="7791">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">NOUN</f>
+ <f name="lemma">Fertigung</f>
+ <f name="msd">Gender=Fem|Number=Sing|Person=3</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s303_n3" from="7792" to="7795">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">ADP</f>
+ <f name="lemma">von</f>
+ <f name="msd">AdpType=Prep|Case=Dat</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s303_n4" from="7796" to="7806">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">NOUN</f>
+ <f name="lemma">Linse</f>
+ <f name="msd">Gender=Fem|Number=Plur|Person=3</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s303_n5" from="7807" to="7810">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">ADP</f>
+ <f name="lemma">für</f>
+ <f name="msd">AdpType=Prep|Case=Acc</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s303_n6" from="7811" to="7821">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">ADJ</f>
+ <f name="lemma">sichtbar</f>
+ <f name="msd">Degree=Pos|Gender=Neut|Number=Sing</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s303_n7" from="7822" to="7827">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">NOUN</f>
+ <f name="lemma">Licht</f>
+ <f name="msd">Gender=Neut|Number=Sing|Person=3</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s303_n8" from="7828" to="7841">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">ADV</f>
+ <f name="lemma">istinzwischen</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s303_n9" from="7842" to="7844">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">ADV</f>
+ <f name="lemma">so</f>
+ <f name="msd">Degree=Pos</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s303_n10" from="7845" to="7855">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">ADJ</f>
+ <f name="lemma">vollkommen</f>
+ <f name="msd">Degree=Pos|Variant=Short</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s303_n11" from="7855" to="7856">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">PUNCT</f>
+ <f name="lemma">,</f>
+ <f name="msd">PunctType=Comm</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s303_n12" from="7857" to="7861">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">SCONJ</f>
+ <f name="lemma">dass</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s303_n13" from="7862" to="7866">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">ADV</f>
+ <f name="lemma">hier</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s303_n14" from="7867" to="7871">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">DET</f>
+ <f name="lemma">kein</f>
+ <f name="msd">Case=Nom|Gender=Masc|Number=Sing|Person=3|PronType=Ind,Neg,Tot</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s303_n15" from="7872" to="7881">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">ADJ</f>
+ <f name="lemma">stören</f>
+ <f name="msd">Case=Nom|Degree=Pos|Gender=Masc|Number=Sing</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s303_n16" from="7882" to="7902">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">NOUN</f>
+ <f name="lemma">Astigmatismus</f>
+ <f name="msd">Gender=Masc|Number=Sing|Person=3</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s303_n17" from="7903" to="7911">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">VERB</f>
+ <f name="lemma">auftreten</f>
+ <f name="msd">Mood=Ind|Number=Sing|Person=3|Tense=Pres|VerbForm=Fin</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s303_n18" from="7911" to="7912">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">PUNCT</f>
+ <f name="lemma">.</f>
+ <f name="msd">PunctType=Peri</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s304_n1" from="7914" to="7918">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">NOUN</f>
+ <f name="lemma">Koma</f>
+ <f name="msd">Person=3</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s304_n2" from="7920" to="7924">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">PROPN</f>
+ <f name="lemma">mini</f>
+ <f name="msd">Person=3</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s304_n3" from="7924" to="7925">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">PUNCT</f>
+ <f name="lemma">|</f>
+ <f name="msd">PunctType=Peri</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s304_n4" from="7925" to="7929">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">NOUN</f>
+ <f name="lemma">Koma</f>
+ <f name="msd">Person=3</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s304_n5" from="7930" to="7932">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">ADP</f>
+ <f name="lemma">an</f>
+ <f name="msd">AdpType=Prep|Case=Dat</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s304_n6" from="7933" to="7938">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">DET</f>
+ <f name="lemma">einer</f>
+ <f name="msd">Case=Dat|Gender=Fem|Number=Sing|PronType=Art</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s304_n7" from="7939" to="7950">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">NOUN</f>
+ <f name="lemma">Linse</f>
+ <f name="msd">Gender=Fem|Number=Sing|Person=3</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s304_n8" from="7951" to="7955">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">PROPN</f>
+ <f name="lemma">mini</f>
+ <f name="msd">Person=3</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s304_n9" from="7955" to="7956">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">X</f>
+ <f name="lemma">|</f>
+ <f name="msd">Foreign=Yes|Person=3</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s304_n10" from="7956" to="7961">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">ADV</f>
+ <f name="lemma">links</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s304_n11" from="7961" to="7962">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">X</f>
+ <f name="lemma">|</f>
+ <f name="msd">Foreign=Yes|Person=3</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s304_n12" from="7962" to="7970">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">ADJ</f>
+ <f name="lemma">hochkant</f>
+ <f name="msd">Degree=Pos|Variant=Short</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s304_n13" from="7970" to="7971">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">PUNCT</f>
+ <f name="lemma">|</f>
+ <f name="msd">PunctType=Brck</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s304_n14" from="7971" to="7980">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">NOUN</f>
+ <f name="lemma">Abbildung</f>
+ <f name="msd">Gender=Fem|Number=Sing|Person=3</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s304_n15" from="7981" to="7986">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">DET</f>
+ <f name="lemma">eines</f>
+ <f name="msd">Case=Gen|Gender=Masc|Number=Sing|PronType=Art</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s304_n16" from="7987" to="7993">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">NOUN</f>
+ <f name="lemma">Stern</f>
+ <f name="msd">Case=Gen|Gender=Masc|Number=Sing|Person=3</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s304_n17" from="7994" to="8004">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">PROPN</f>
+ <f name="lemma">alsschweif</f>
+ <f name="msd">Person=3</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s304_n18" from="8004" to="8005">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">PUNCT</f>
+ <f name="lemma">.</f>
+ <f name="msd">PunctType=Peri</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s305_n1" from="8006" to="8011">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">ADV</f>
+ <f name="lemma">Links</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s305_n2" from="8012" to="8017">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">ADV</f>
+ <f name="lemma">unten</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s305_n3" from="8018" to="8021">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">ADP</f>
+ <f name="lemma">zum</f>
+ <f name="msd">AdpType=Prep|Case=Dat</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s305_n4" from="8022" to="8031">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">NOUN</f>
+ <f name="lemma">Vergleich</f>
+ <f name="msd">Gender=Masc|Number=Sing|Person=3</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s305_n5" from="8032" to="8035">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">DET</f>
+ <f name="lemma">das</f>
+ <f name="msd">Case=Nom|Gender=Neut|Number=Sing|PronType=Art</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s305_n6" from="8036" to="8054">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">NOUN</f>
+ <f name="lemma">Scheibchen</f>
+ <f name="msd">Gender=Neut|Number=Sing|Person=3</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s305_n7" from="8055" to="8070">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">ADJ</f>
+ <f name="lemma">beifehlerfreier</f>
+ <f name="msd">Degree=Cmp|Variant=Short</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s305_n8" from="8070" to="8071">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">PUNCT</f>
+ <f name="lemma">,</f>
+ <f name="msd">PunctType=Comm</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s305_n9" from="8072" to="8074">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">ADP</f>
+ <f name="lemma">z.</f>
+ <f name="msd">AdpType=Prep|Case=Dat</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s305_n10" from="8075" to="8077">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">NOUN</f>
+ <f name="lemma">unknown</f>
+ <f name="msd">Person=3</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s305_n11" from="8078" to="8089">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">ADJ</f>
+ <f name="lemma">achsennaher</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s305_n12" from="8090" to="8099">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">NOUN</f>
+ <f name="lemma">Abbildung</f>
+ <f name="msd">Gender=Fem|Number=Sing|Person=3</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s305_n13" from="8099" to="8100">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">PUNCT</f>
+ <f name="lemma">.</f>
+ <f name="msd">PunctType=Peri</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s306_n1" from="8101" to="8104">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">DET</f>
+ <f name="lemma">Die</f>
+ <f name="msd">Case=Nom|Gender=Fem|Number=Sing|PronType=Art</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s306_n2" from="8105" to="8109">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">NOUN</f>
+ <f name="lemma">Koma</f>
+ <f name="msd">Gender=Fem|Number=Sing|Person=3</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s306_n3" from="8110" to="8111">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">PUNCT</f>
+ <f name="lemma">(</f>
+ <f name="msd">PunctType=Brck</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s306_n4" from="8111" to="8127">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">NOUN</f>
+ <f name="lemma">Fehler</f>
+ <f name="msd">Gender=Masc|Number=Sing|Person=3</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s306_n5" from="8127" to="8128">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">PUNCT</f>
+ <f name="lemma">,</f>
+ <f name="msd">PunctType=Comm</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s306_n6" from="8129" to="8132">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">ADP</f>
+ <f name="lemma">von</f>
+ <f name="msd">AdpType=Prep|Case=Dat</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s306_n7" from="8133" to="8136">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">ADJ</f>
+ <f name="lemma">lat</f>
+ <f name="msd">Degree=Pos|Variant=Short</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s306_n8" from="8136" to="8137">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">PUNCT</f>
+ <f name="lemma">.</f>
+ <f name="msd">PunctType=Peri</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s307_n1" from="8138" to="8142">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">X</f>
+ <f name="lemma">coma</f>
+ <f name="msd">Foreign=Yes|Person=3</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s307_n2" from="8143" to="8144">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">X</f>
+ <f name="lemma">‚</f>
+ <f name="msd">Foreign=Yes|Person=3</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s307_n3" from="8144" to="8150">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">X</f>
+ <f name="lemma">Schopf</f>
+ <f name="msd">Foreign=Yes|Person=3</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s307_n4" from="8150" to="8151">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">PUNCT</f>
+ <f name="lemma">,</f>
+ <f name="msd">PunctType=Comm</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s307_n5" from="8152" to="8159">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">X</f>
+ <f name="lemma">Schweif</f>
+ <f name="msd">Foreign=Yes|Person=3</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s307_n6" from="8159" to="8160">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">X</f>
+ <f name="lemma">‘</f>
+ <f name="msd">Foreign=Yes|Person=3</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s307_n7" from="8160" to="8161">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">PUNCT</f>
+ <f name="lemma">)</f>
+ <f name="msd">PunctType=Brck</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s307_n8" from="8162" to="8170">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">VERB</f>
+ <f name="lemma">entstehen</f>
+ <f name="msd">Mood=Ind|Number=Sing|Person=3|Tense=Pres|VerbForm=Fin</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s307_n9" from="8171" to="8180">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">ADJ</f>
+ <f name="lemma">beischräg</f>
+ <f name="msd">Degree=Pos|Variant=Short</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s307_n10" from="8181" to="8184">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">ADP</f>
+ <f name="lemma">zur</f>
+ <f name="msd">AdpType=Prep|Case=Dat</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s307_n11" from="8185" to="8194">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">ADJ</f>
+ <f name="lemma">optisch</f>
+ <f name="msd">Degree=Pos|Number=Sing</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s307_n12" from="8195" to="8200">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">NOUN</f>
+ <f name="lemma">Achse</f>
+ <f name="msd">Gender=Fem|Number=Sing|Person=3</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s307_n13" from="8201" to="8213">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">ADJ</f>
+ <f name="lemma">einfallen</f>
+ <f name="msd">Case=Dat|Degree=Pos|Number=Sing</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s307_n14" from="8214" to="8228">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">NOUN</f>
+ <f name="lemma">Bündel</f>
+ <f name="msd">Gender=Neut|Number=Sing|Person=3</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s307_n15" from="8229" to="8234">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">ADP</f>
+ <f name="lemma">durch</f>
+ <f name="msd">AdpType=Prep|Case=Acc</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s307_n16" from="8235" to="8251">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">PROPN</f>
+ <f name="lemma">Überlagerung</f>
+ <f name="msd">Person=3</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s307_n17" from="8252" to="8258">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">ADJ</f>
+ <f name="lemma">zweier</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s307_n18" from="8259" to="8275">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">NOUN</f>
+ <f name="lemma">Fehler</f>
+ <f name="msd">Gender=Masc|Number=Plur|Person=3</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s307_n19" from="8275" to="8276">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">PUNCT</f>
+ <f name="lemma">:</f>
+ <f name="msd">PunctType=Peri</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s307_n20" from="8277" to="8280">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">DET</f>
+ <f name="lemma">der</f>
+ <f name="msd">Case=Dat|Gender=Fem|Number=Sing|PronType=Art</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s307_n21" from="8281" to="8285">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">ADV</f>
+ <f name="lemma">auch</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s307_n22" from="8286" to="8289">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">ADP</f>
+ <f name="lemma">bei</f>
+ <f name="msd">AdpType=Prep|Case=Dat</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s307_n23" from="8290" to="8310">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">PROPN</f>
+ <f name="lemma">Parallelembünd</f>
+ <f name="msd">Person=3</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s307_n24" from="8311" to="8320">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">ADJ</f>
+ <f name="lemma">wirken</f>
+ <f name="msd">Degree=Pos|Number=Sing</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s307_n25" from="8321" to="8332">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">ADJ</f>
+ <f name="lemma">sphärisch</f>
+ <f name="msd">Degree=Pos|Number=Sing</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s307_n26" from="8333" to="8343">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">NOUN</f>
+ <f name="lemma">Ration</f>
+ <f name="msd">Gender=Fem|Number=Sing|Person=3</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s307_n27" from="8344" to="8347">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">CCONJ</f>
+ <f name="lemma">und</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s307_n28" from="8348" to="8351">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">DET</f>
+ <f name="lemma">dem</f>
+ <f name="msd">Case=Dat|Gender=Masc|Number=Sing|PronType=Art</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s307_n29" from="8352" to="8365">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">NOUN</f>
+ <f name="lemma">Astigmatismus</f>
+ <f name="msd">Gender=Masc|Number=Sing|Person=3</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s307_n30" from="8366" to="8380">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">PROPN</f>
+ <f name="lemma">Bündel</f>
+ <f name="msd">Person=3</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s307_n31" from="8380" to="8381">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">PUNCT</f>
+ <f name="lemma">.</f>
+ <f name="msd">PunctType=Peri</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s308_n1" from="8382" to="8390">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">ADP</f>
+ <f name="lemma">Anstelle</f>
+ <f name="msd">AdpType=Prep|Case=Gen</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s308_n2" from="8391" to="8396">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">DET</f>
+ <f name="lemma">eines</f>
+ <f name="msd">Case=Gen|Gender=Neut|Number=Sing|PronType=Art</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s308_n3" from="8397" to="8405">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">ADJ</f>
+ <f name="lemma">scharf</f>
+ <f name="msd">Degree=Pos|Number=Sing</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s308_n4" from="8406" to="8425">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">NOUN</f>
+ <f name="lemma">Scheibchen</f>
+ <f name="msd">Case=Gen|Gender=Neut|Number=Sing|Person=3</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s308_n5" from="8426" to="8434">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">VERB</f>
+ <f name="lemma">entstehen</f>
+ <f name="msd">Mood=Ind|Number=Sing|Person=3|Tense=Pres|VerbForm=Fin</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s308_n6" from="8435" to="8447">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">NOUN</f>
+ <f name="lemma">Punkt</f>
+ <f name="msd">Gender=Masc|Number=Sing|Person=3</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s308_n7" from="8448" to="8451">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">ADP</f>
+ <f name="lemma">mit</f>
+ <f name="msd">AdpType=Prep|Case=Dat</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s308_n8" from="8452" to="8455">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">ADP</f>
+ <f name="lemma">zum</f>
+ <f name="msd">AdpType=Prep|Case=Dat</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s308_n9" from="8456" to="8460">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">NOUN</f>
+ <f name="lemma">Rand</f>
+ <f name="msd">Gender=Masc|Number=Sing|Person=3</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s308_n10" from="8461" to="8464">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">DET</f>
+ <f name="lemma">der</f>
+ <f name="msd">Case=Gen|Gender=Fem|Number=Sing|PronType=Art</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s308_n11" from="8465" to="8470">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">NOUN</f>
+ <f name="lemma">Optik</f>
+ <f name="msd">Gender=Fem|Number=Sing|Person=3</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s308_n12" from="8471" to="8482">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">ADJ</f>
+ <f name="lemma">richten</f>
+ <f name="msd">Case=Dat|Degree=Pos|Number=Sing</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s308_n13" from="8483" to="8484">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">PUNCT</f>
+ <f name="lemma">„</f>
+ <f name="msd">PunctType=Brck</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s308_n14" from="8484" to="8491">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">NOUN</f>
+ <f name="lemma">Schweif</f>
+ <f name="msd">Gender=Masc|Number=Sing|Person=3</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s308_n15" from="8491" to="8492">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">PUNCT</f>
+ <f name="lemma">“</f>
+ <f name="msd">PunctType=Brck</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s308_n16" from="8492" to="8493">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">PUNCT</f>
+ <f name="lemma">,</f>
+ <f name="msd">PunctType=Comm</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s308_n17" from="8493" to="8496">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">PRON</f>
+ <f name="lemma">der</f>
+ <f name="msd">Case=Nom|Gender=Masc|Number=Sing|Person=3|PronType=Rel</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s308_n18" from="8497" to="8500">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">DET</f>
+ <f name="lemma">dem</f>
+ <f name="msd">Case=Dat|Gender=Neut|Number=Sing|PronType=Art</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s308_n19" from="8501" to="8509">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">NOUN</f>
+ <f name="lemma">Phänomen</f>
+ <f name="msd">Gender=Neut|Number=Sing|Person=3</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s308_n20" from="8510" to="8513">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">DET</f>
+ <f name="lemma">den</f>
+ <f name="msd">Case=Acc|Gender=Masc|Number=Sing|PronType=Art</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s308_n21" from="8514" to="8519">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">NOUN</f>
+ <f name="lemma">Name</f>
+ <f name="msd">Gender=Masc|Number=Sing|Person=3</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s308_n22" from="8520" to="8524">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">VERB</f>
+ <f name="lemma">geben</f>
+ <f name="msd">Mood=Ind|Number=Sing|Person=3|Tense=Pres|VerbForm=Fin</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s308_n23" from="8524" to="8525">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">PUNCT</f>
+ <f name="lemma">.</f>
+ <f name="msd">PunctType=Peri</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s309_n1" from="8526" to="8531">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">ADP</f>
+ <f name="lemma">Durch</f>
+ <f name="msd">AdpType=Prep|Case=Acc</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s309_n2" from="8532" to="8541">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">NOUN</f>
+ <f name="lemma">Abblenden</f>
+ <f name="msd">Gender=Neut|Number=Sing|Person=3</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s309_n3" from="8542" to="8545">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">DET</f>
+ <f name="lemma">der</f>
+ <f name="msd">Case=Gen|Number=Plur|PronType=Art</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s309_n4" from="8546" to="8558">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">NOUN</f>
+ <f name="lemma">Randstrahl</f>
+ <f name="msd">Gender=Fem|Number=Plur|Person=3</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s309_n5" from="8559" to="8563">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">AUX</f>
+ <f name="lemma">können</f>
+ <f name="msd">Mood=Ind|Number=Sing|Person=3|Tense=Pres|VerbForm=Fin|VerbType=Mod</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s309_n6" from="8564" to="8567">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">DET</f>
+ <f name="lemma">die</f>
+ <f name="msd">Case=Nom|Gender=Fem|Number=Sing|PronType=Art</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s309_n7" from="8568" to="8588">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">NOUN</f>
+ <f name="lemma">Erscheinunggemindert</f>
+ <f name="msd">Person=3</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s309_n8" from="8589" to="8595">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">AUX</f>
+ <f name="lemma">werden</f>
+ <f name="msd">VerbForm=Inf</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s309_n9" from="8595" to="8596">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">PUNCT</f>
+ <f name="lemma">,</f>
+ <f name="msd">PunctType=Comm</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s309_n10" from="8597" to="8600">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">DET</f>
+ <f name="lemma">der</f>
+ <f name="msd">Case=Nom|Gender=Masc|Number=Sing|PronType=Art</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s309_n11" from="8601" to="8614">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">NOUN</f>
+ <f name="lemma">Astigmatismus</f>
+ <f name="msd">Gender=Masc|Number=Sing|Person=3</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s309_n12" from="8615" to="8623">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">ADJ</f>
+ <f name="lemma">schief</f>
+ <f name="msd">Case=Gen|Degree=Pos|Number=Plur</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s309_n13" from="8624" to="8630">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">NOUN</f>
+ <f name="lemma">Bündel</f>
+ <f name="msd">Gender=Neut|Number=Plur|Person=3</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s309_n14" from="8631" to="8637">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">VERB</f>
+ <f name="lemma">bleiben</f>
+ <f name="msd">Mood=Ind|Number=Sing|Person=3|Tense=Pres|VerbForm=Fin</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s309_n15" from="8638" to="8650">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">VERB</f>
+ <f name="lemma">aberbestehen</f>
+ <f name="msd">VerbForm=Inf</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s309_n16" from="8650" to="8651">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">PUNCT</f>
+ <f name="lemma">.</f>
+ <f name="msd">PunctType=Peri</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s310_n1" from="8652" to="8656">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">PROPN</f>
+ <f name="lemma">Koma</f>
+ <f name="msd">Person=3</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s310_n2" from="8657" to="8661">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">AUX</f>
+ <f name="lemma">können</f>
+ <f name="msd">Mood=Ind|Number=Sing|Person=3|Tense=Pres|VerbForm=Fin|VerbType=Mod</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s310_n3" from="8662" to="8668">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">CCONJ</f>
+ <f name="lemma">sowohl</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s310_n4" from="8669" to="8672">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">ADP</f>
+ <f name="lemma">bei</f>
+ <f name="msd">AdpType=Prep|Case=Dat</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s310_n5" from="8673" to="8679">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">NOUN</f>
+ <f name="lemma">Linse</f>
+ <f name="msd">Gender=Fem|Number=Plur|Person=3</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s310_n6" from="8680" to="8683">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">CCONJ</f>
+ <f name="lemma">als</f>
+ <f name="msd">ConjType=Comp</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s310_n7" from="8684" to="8688">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">ADV</f>
+ <f name="lemma">auch</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s310_n8" from="8689" to="8706">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">NOUN</f>
+ <f name="lemma">Ispiegeloptik</f>
+ <f name="msd">Person=3</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s310_n9" from="8707" to="8716">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">VERB</f>
+ <f name="lemma">auftreten</f>
+ <f name="msd">VerbForm=Inf</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s310_n10" from="8716" to="8717">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">PUNCT</f>
+ <f name="lemma">.</f>
+ <f name="msd">PunctType=Peri</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s311_n1" from="8718" to="8726">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">ADJ</f>
+ <f name="lemma">optisch</f>
+ <f name="msd">Degree=Pos|Number=Plur</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s311_n2" from="8727" to="8734">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">NOUN</f>
+ <f name="lemma">System</f>
+ <f name="msd">Gender=Neut|Number=Plur|Person=3</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s311_n3" from="8735" to="8738">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">ADP</f>
+ <f name="lemma">bei</f>
+ <f name="msd">AdpType=Prep|Case=Dat</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s311_n4" from="8739" to="8744">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">PRON</f>
+ <f name="lemma">denen</f>
+ <f name="msd">Case=Dat|Number=Plur|Person=3|PronType=Rel</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s311_n5" from="8745" to="8751">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">CCONJ</f>
+ <f name="lemma">sowohl</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s311_n6" from="8752" to="8755">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">DET</f>
+ <f name="lemma">die</f>
+ <f name="msd">Case=Nom|Gender=Fem|Number=Sing|PronType=Art</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s311_n7" from="8756" to="8766">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">ADJ</f>
+ <f name="lemma">sphärisch</f>
+ <f name="msd">Degree=Pos|Gender=Fem|Number=Sing</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s311_n8" from="8767" to="8777">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">NOUN</f>
+ <f name="lemma">Ration</f>
+ <f name="msd">Gender=Fem|Number=Sing|Person=3</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s311_n9" from="8778" to="8781">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">CCONJ</f>
+ <f name="lemma">als</f>
+ <f name="msd">ConjType=Comp</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s311_n10" from="8782" to="8786">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">ADV</f>
+ <f name="lemma">auch</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s311_n11" from="8787" to="8790">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">DET</f>
+ <f name="lemma">die</f>
+ <f name="msd">Case=Nom|Gender=Fem|Number=Sing|PronType=Art</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s311_n12" from="8791" to="8795">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">NOUN</f>
+ <f name="lemma">Koma</f>
+ <f name="msd">Gender=Fem|Number=Sing|Person=3</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s311_n13" from="8796" to="8807">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">ADJ</f>
+ <f name="lemma">vollständig</f>
+ <f name="msd">Degree=Pos|Variant=Short</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s311_n14" from="8808" to="8818">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">VERB</f>
+ <f name="lemma">korrigieren</f>
+ <f name="msd">Aspect=Perf|VerbForm=Part</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s311_n15" from="8819" to="8823">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">AUX</f>
+ <f name="lemma">sein</f>
+ <f name="msd">Mood=Ind|Number=Plur|Person=3|Tense=Pres|VerbForm=Fin</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s311_n16" from="8823" to="8824">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">PUNCT</f>
+ <f name="lemma">,</f>
+ <f name="msd">PunctType=Comm</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s311_n17" from="8825" to="8831">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">VERB</f>
+ <f name="lemma">heißen</f>
+ <f name="msd">Mood=Ind|Number=Plur|Person=3|Tense=Pres|VerbForm=Fin</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s311_n18" from="8832" to="8840">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">NOUN</f>
+ <f name="lemma">Aplanate</f>
+ <f name="msd">Person=3</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s311_n19" from="8840" to="8841">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">PUNCT</f>
+ <f name="lemma">.</f>
+ <f name="msd">PunctType=Peri</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s312_n1" from="8843" to="8858">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">NOUN</f>
+ <f name="lemma">Wölbung</f>
+ <f name="msd">Gender=Fem|Number=Sing|Person=3</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s312_n2" from="8860" to="8874">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">ADJ</f>
+ <f name="lemma">weitergehen</f>
+ <f name="msd">Case=Gen|Degree=Pos|Number=Plur</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s312_n3" from="8875" to="8882">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">NOUN</f>
+ <f name="lemma">Artikel</f>
+ <f name="msd">Gender=Masc|Number=Plur|Person=3</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s312_n4" from="8883" to="8894">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">ADJ</f>
+ <f name="lemma">Petzvalsche</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s312_n5" from="8895" to="8910">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">NOUN</f>
+ <f name="lemma">Wölbung</f>
+ <f name="msd">Gender=Fem|Number=Sing|Person=3</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s312_n6" from="8912" to="8914">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">X</f>
+ <f name="lemma">[[</f>
+ <f name="msd">Foreign=Yes|Person=3</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s312_n7" from="8914" to="8919">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">NOUN</f>
+ <f name="lemma">Datei</f>
+ <f name="msd">Gender=Fem|Number=Sing|Person=3</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s312_n8" from="8919" to="8921">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">X</f>
+ <f name="lemma">:O</f>
+ <f name="msd">Foreign=Yes|Person=3</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s312_n9" from="8921" to="8942">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">X</f>
+ <f name="lemma">bjektmikrometer4x.jpg</f>
+ <f name="msd">Foreign=Yes|Person=3</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s312_n10" from="8942" to="8943">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">X</f>
+ <f name="lemma">|</f>
+ <f name="msd">Foreign=Yes|Person=3</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s312_n11" from="8943" to="8947">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">X</f>
+ <f name="lemma">mini</f>
+ <f name="msd">Foreign=Yes|Person=3</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s312_n12" from="8947" to="8948">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">X</f>
+ <f name="lemma">|</f>
+ <f name="msd">Foreign=Yes|Person=3</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s312_n13" from="8948" to="8951">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">DET</f>
+ <f name="lemma">Ein</f>
+ <f name="msd">Case=Nom|Gender=Masc|Number=Sing|PronType=Art</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s312_n14" from="8952" to="8968">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">NOUN</f>
+ <f name="lemma">Mikrometer</f>
+ <f name="msd">Gender=Masc|Number=Sing|Person=3</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s312_n15" from="8969" to="8972">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">ADP</f>
+ <f name="lemma">bei</f>
+ <f name="msd">AdpType=Prep|Case=Dat</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s312_n16" from="8973" to="8981">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">ADJ</f>
+ <f name="lemma">gering</f>
+ <f name="msd">Degree=Pos|Gender=Fem|Number=Sing</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s312_n17" from="8982" to="9009">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">NOUN</f>
+ <f name="lemma">Vergrösserung</f>
+ <f name="msd">Gender=Fem|Number=Sing|Person=3</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s312_n18" from="9010" to="9011">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">PUNCT</f>
+ <f name="lemma">(</f>
+ <f name="msd">PunctType=Brck</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s312_n19" from="9011" to="9028">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">NOUN</f>
+ <f name="lemma">Objektiv</f>
+ <f name="msd">Gender=Neut|Number=Sing|Person=3</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s312_n20" from="9028" to="9029">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">PUNCT</f>
+ <f name="lemma">)</f>
+ <f name="msd">PunctType=Brck</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s312_n21" from="9029" to="9030">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">PUNCT</f>
+ <f name="lemma">;</f>
+ <f name="msd">PunctType=Peri</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s312_n22" from="9031" to="9040">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">ADV</f>
+ <f name="lemma">besonders</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s312_n23" from="9041" to="9043">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">ADV</f>
+ <f name="lemma">am</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s312_n24" from="9044" to="9051">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">ADJ</f>
+ <f name="lemma">recht</f>
+ <f name="msd">Degree=Pos|Number=Sing</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s312_n25" from="9052" to="9056">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">NOUN</f>
+ <f name="lemma">Rand</f>
+ <f name="msd">Gender=Masc|Number=Sing|Person=3</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s312_n26" from="9057" to="9060">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">DET</f>
+ <f name="lemma">des</f>
+ <f name="msd">Case=Gen|Gender=Masc|Number=Sing|PronType=Art</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s312_n27" from="9061" to="9070">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">NOUN</f>
+ <f name="lemma">unknown</f>
+ <f name="msd">Person=3</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s312_n28" from="9071" to="9074">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">DET</f>
+ <f name="lemma">die</f>
+ <f name="msd">Case=Acc|Gender=Fem|Number=Sing|PronType=Art</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s312_n29" from="9075" to="9090">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">NOUN</f>
+ <f name="lemma">Wölbung</f>
+ <f name="msd">Gender=Fem|Number=Sing|Person=3</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s312_n30" from="9091" to="9093">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">ADP</f>
+ <f name="lemma">an</f>
+ <f name="msd">AdpType=Prep|Case=Dat</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s312_n31" from="9094" to="9097">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">DET</f>
+ <f name="lemma">der</f>
+ <f name="msd">Case=Dat|Gender=Fem|Number=Sing|PronType=Art</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s312_n32" from="9098" to="9107">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">NOUN</f>
+ <f name="lemma">Unschärfe</f>
+ <f name="msd">Gender=Fem|Number=Sing|Person=3</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s312_n33" from="9108" to="9111">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">DET</f>
+ <f name="lemma">der</f>
+ <f name="msd">Case=Gen|Number=Plur|PronType=Art</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s312_n34" from="9112" to="9122">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">NOUN</f>
+ <f name="lemma">unknown</f>
+ <f name="msd">Person=3</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s312_n35" from="9123" to="9125">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">PART</f>
+ <f name="lemma">zu</f>
+ <f name="msd">PartType=Inf</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s312_n36" from="9126" to="9134">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">VERB</f>
+ <f name="lemma">erkennen</f>
+ <f name="msd">VerbForm=Inf</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s312_n37" from="9134" to="9135">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">PUNCT</f>
+ <f name="lemma">.</f>
+ <f name="msd">PunctType=Peri</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s313_n1" from="9135" to="9137">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">CCONJ</f>
+ <f name="lemma">]]</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s313_n2" from="9138" to="9142">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">SCONJ</f>
+ <f name="lemma">Wenn</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s313_n3" from="9143" to="9147">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">DET</f>
+ <f name="lemma">eine</f>
+ <f name="msd">Case=Nom|Gender=Fem|Number=Sing|PronType=Art</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s313_n4" from="9148" to="9153">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">NOUN</f>
+ <f name="lemma">Optik</f>
+ <f name="msd">Gender=Fem|Number=Sing|Person=3</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s313_n5" from="9154" to="9158">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">DET</f>
+ <f name="lemma">eine</f>
+ <f name="msd">Case=Acc|Gender=Fem|Number=Sing|PronType=Art</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s313_n6" from="9159" to="9174">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">NOUN</f>
+ <f name="lemma">Wölbung</f>
+ <f name="msd">Gender=Fem|Number=Sing|Person=3</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s313_n7" from="9175" to="9183">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">VERB</f>
+ <f name="lemma">aufweisen</f>
+ <f name="msd">Mood=Ind|Number=Sing|Person=3|Tense=Pres|VerbForm=Fin</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s313_n8" from="9183" to="9184">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">PUNCT</f>
+ <f name="lemma">,</f>
+ <f name="msd">PunctType=Comm</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s313_n9" from="9184" to="9188">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">AUX</f>
+ <f name="lemma">werden</f>
+ <f name="msd">Mood=Ind|Number=Sing|Person=3|Tense=Pres|VerbForm=Fin</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s313_n10" from="9189" to="9192">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">DET</f>
+ <f name="lemma">das</f>
+ <f name="msd">Case=Nom|Gender=Neut|Number=Sing|PronType=Art</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s313_n11" from="9193" to="9197">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">NOUN</f>
+ <f name="lemma">Bild</f>
+ <f name="msd">Gender=Neut|Number=Sing|Person=3</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s313_n12" from="9198" to="9203">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">PART</f>
+ <f name="lemma">nicht</f>
+ <f name="msd">Polarity=Neg</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s313_n13" from="9204" to="9207">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">ADP</f>
+ <f name="lemma">auf</f>
+ <f name="msd">AdpType=Prep|Case=Dat</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s313_n14" from="9208" to="9213">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">DET</f>
+ <f name="lemma">einer</f>
+ <f name="msd">Case=Dat|Gender=Fem|Number=Sing|PronType=Art</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s313_n15" from="9214" to="9219">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">NOUN</f>
+ <f name="lemma">Ebene</f>
+ <f name="msd">Gender=Fem|Number=Sing|Person=3</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s313_n16" from="9219" to="9220">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">PUNCT</f>
+ <f name="lemma">,</f>
+ <f name="msd">PunctType=Comm</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s313_n17" from="9221" to="9228">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">CCONJ</f>
+ <f name="lemma">sondern</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s313_n18" from="9229" to="9232">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">ADP</f>
+ <f name="lemma">auf</f>
+ <f name="msd">AdpType=Prep|Case=Dat</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s313_n19" from="9233" to="9238">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">DET</f>
+ <f name="lemma">einer</f>
+ <f name="msd">Case=Dat|Gender=Fem|Number=Sing|PronType=Art</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s313_n20" from="9239" to="9254">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">PROPN</f>
+ <f name="lemma">gewölbtenflä</f>
+ <f name="msd">Person=3</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s313_n21" from="9255" to="9262">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">VERB</f>
+ <f name="lemma">erzeugen</f>
+ <f name="msd">Aspect=Perf|VerbForm=Part</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s313_n22" from="9263" to="9264">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">CCONJ</f>
+ <f name="lemma">–</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s313_n23" from="9265" to="9267">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">PRON</f>
+ <f name="lemma">es</f>
+ <f name="msd">Case=Nom|Gender=Neut|Number=Sing|Person=3|PronType=Prs</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s313_n24" from="9268" to="9271">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">AUX</f>
+ <f name="lemma">sein</f>
+ <f name="msd">Mood=Ind|Number=Sing|Person=3|Tense=Pres|VerbForm=Fin</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s313_n25" from="9272" to="9277">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">ADV</f>
+ <f name="lemma">daher</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s313_n26" from="9278" to="9281">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">DET</f>
+ <f name="lemma">ein</f>
+ <f name="msd">Case=Nom|Gender=Masc|Number=Sing|PronType=Art</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s313_n27" from="9282" to="9293">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">ADJ</f>
+ <f name="lemma">sogenannte</f>
+ <f name="msd">Case=Nom|Degree=Pos|Gender=Masc|Number=Sing</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s313_n28" from="9294" to="9304">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">NOUN</f>
+ <f name="lemma">Fehler</f>
+ <f name="msd">Gender=Masc|Number=Sing|Person=3</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s313_n29" from="9304" to="9305">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">PUNCT</f>
+ <f name="lemma">.</f>
+ <f name="msd">PunctType=Peri</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s314_n1" from="9306" to="9309">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">DET</f>
+ <f name="lemma">Die</f>
+ <f name="msd">Case=Nom|Gender=Fem|Number=Sing|PronType=Art</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s314_n2" from="9310" to="9318">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">NOUN</f>
+ <f name="lemma">Position</f>
+ <f name="msd">Gender=Fem|Number=Sing|Person=3</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s314_n3" from="9319" to="9322">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">DET</f>
+ <f name="lemma">des</f>
+ <f name="msd">Case=Gen|Gender=Masc|Number=Sing|PronType=Art</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s314_n4" from="9323" to="9344">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">NOUN</f>
+ <f name="lemma">Punkt</f>
+ <f name="msd">Case=Gen|Gender=Masc|Number=Sing|Person=3</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s314_n5" from="9345" to="9350">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">ADP</f>
+ <f name="lemma">längs</f>
+ <f name="msd">AdpType=Prep</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s314_n6" from="9351" to="9354">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">DET</f>
+ <f name="lemma">der</f>
+ <f name="msd">Case=Gen|Gender=Fem|Number=Sing|PronType=Art</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s314_n7" from="9355" to="9364">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">ADJ</f>
+ <f name="lemma">optisch</f>
+ <f name="msd">Degree=Pos|Number=Sing</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s314_n8" from="9365" to="9370">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">NOUN</f>
+ <f name="lemma">Achse</f>
+ <f name="msd">Gender=Fem|Number=Sing|Person=3</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s314_n9" from="9371" to="9374">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">AUX</f>
+ <f name="lemma">sein</f>
+ <f name="msd">Mood=Ind|Number=Sing|Person=3|Tense=Pres|VerbForm=Fin</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s314_n10" from="9375" to="9379">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">ADV</f>
+ <f name="lemma">dann</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s314_n11" from="9380" to="9383">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">ADP</f>
+ <f name="lemma">von</f>
+ <f name="msd">AdpType=Prep|Case=Dat</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s314_n12" from="9384" to="9387">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">DET</f>
+ <f name="lemma">der</f>
+ <f name="msd">Case=Dat|Gender=Fem|Number=Sing|PronType=Art</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s314_n13" from="9388" to="9404">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">NOUN</f>
+ <f name="lemma">Bildhöheabhängig</f>
+ <f name="msd">Person=3</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s314_n14" from="9404" to="9405">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">PUNCT</f>
+ <f name="lemma">,</f>
+ <f name="msd">PunctType=Comm</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s314_n15" from="9406" to="9409">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">PRON</f>
+ <f name="lemma">das</f>
+ <f name="msd">Case=Nom|Gender=Neut|Number=Sing|Person=3|PronType=Dem</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s314_n16" from="9410" to="9415">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">VERB</f>
+ <f name="lemma">heißen</f>
+ <f name="msd">Mood=Ind|Number=Sing|Person=3|Tense=Pres|VerbForm=Fin</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s314_n17" from="9416" to="9418">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">ADV</f>
+ <f name="lemma">je</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s314_n18" from="9419" to="9425">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">ADV</f>
+ <f name="lemma">weiter</f>
+ <f name="msd">Degree=Cmp</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s314_n19" from="9426" to="9433">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">NOUN</f>
+ <f name="lemma">Objekt-</f>
+ <f name="msd">Hyph=Yes</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s314_n20" from="9434" to="9437">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">CCONJ</f>
+ <f name="lemma">und</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s314_n21" from="9438" to="9443">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">ADV</f>
+ <f name="lemma">damit</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s314_n22" from="9444" to="9454">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">NOUN</f>
+ <f name="lemma">Punkt</f>
+ <f name="msd">Gender=Masc|Number=Plur|Person=3</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s314_n23" from="9455" to="9458">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">ADP</f>
+ <f name="lemma">von</f>
+ <f name="msd">AdpType=Prep|Case=Dat</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s314_n24" from="9459" to="9467">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">PROPN</f>
+ <f name="lemma">derAchse</f>
+ <f name="msd">Person=3</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s314_n25" from="9468" to="9476">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">VERB</f>
+ <f name="lemma">entfernen</f>
+ <f name="msd">Aspect=Perf|VerbForm=Part</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s314_n26" from="9477" to="9481">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">AUX</f>
+ <f name="lemma">sein</f>
+ <f name="msd">Mood=Ind|Number=Plur|Person=3|Tense=Pres|VerbForm=Fin</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s314_n27" from="9481" to="9482">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">PUNCT</f>
+ <f name="lemma">,</f>
+ <f name="msd">PunctType=Comm</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s314_n28" from="9483" to="9487">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">ADV</f>
+ <f name="lemma">umso</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s314_n29" from="9488" to="9492">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">ADV</f>
+ <f name="lemma">mehr</f>
+ <f name="msd">Degree=Cmp</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s314_n30" from="9493" to="9496">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">AUX</f>
+ <f name="lemma">sein</f>
+ <f name="msd">Mood=Ind|Number=Sing|Person=3|Tense=Pres|VerbForm=Fin</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s314_n31" from="9497" to="9500">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">DET</f>
+ <f name="lemma">der</f>
+ <f name="msd">Case=Nom|Gender=Masc|Number=Sing|PronType=Art</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s314_n32" from="9501" to="9510">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">NOUN</f>
+ <f name="lemma">Punkt</f>
+ <f name="msd">Gender=Masc|Number=Sing|Person=3</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s314_n33" from="9511" to="9513">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">ADP</f>
+ <f name="lemma">in</f>
+ <f name="msd">AdpType=Prep|Case=Dat</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s314_n34" from="9514" to="9536">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">NOUN</f>
+ <f name="lemma">Verschobe</f>
+ <f name="msd">Gender=Neut|Number=Sing|Person=3</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s314_n35" from="9537" to="9538">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">PUNCT</f>
+ <f name="lemma">(</f>
+ <f name="msd">PunctType=Brck</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s314_n36" from="9538" to="9552">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">ADV</f>
+ <f name="lemma">typischerweise</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s314_n37" from="9553" to="9557">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">ADP</f>
+ <f name="lemma">nach</f>
+ <f name="msd">AdpType=Prep|Case=Dat</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s314_n38" from="9558" to="9562">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">ADV</f>
+ <f name="lemma">vorn</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s314_n39" from="9562" to="9563">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">PUNCT</f>
+ <f name="lemma">,</f>
+ <f name="msd">PunctType=Comm</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s314_n40" from="9564" to="9567">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">ADP</f>
+ <f name="lemma">zum</f>
+ <f name="msd">AdpType=Prep|Case=Dat</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s314_n41" from="9568" to="9576">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">NOUN</f>
+ <f name="lemma">Objektiv</f>
+ <f name="msd">Gender=Neut|Number=Sing|Person=3</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s314_n42" from="9577" to="9580">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">ADP</f>
+ <f name="lemma">hin</f>
+ <f name="msd">AdpType=Circ</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s314_n43" from="9580" to="9581">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">PUNCT</f>
+ <f name="lemma">)</f>
+ <f name="msd">PunctType=Brck</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s314_n44" from="9581" to="9582">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">PUNCT</f>
+ <f name="lemma">.</f>
+ <f name="msd">PunctType=Peri</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s315_n1" from="9583" to="9588">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">ADV</f>
+ <f name="lemma">Somit</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s315_n2" from="9589" to="9593">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">AUX</f>
+ <f name="lemma">können</f>
+ <f name="msd">Mood=Ind|Number=Sing|Person=3|Tense=Pres|VerbForm=Fin|VerbType=Mod</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s315_n3" from="9594" to="9597">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">PRON</f>
+ <f name="lemma">man</f>
+ <f name="msd">Case=Nom|Number=Sing|Person=3|PronType=Ind,Neg,Tot</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s315_n4" from="9598" to="9601">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">ADP</f>
+ <f name="lemma">auf</f>
+ <f name="msd">AdpType=Prep|Case=Dat</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s315_n5" from="9602" to="9607">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">DET</f>
+ <f name="lemma">einer</f>
+ <f name="msd">Case=Dat|Gender=Fem|Number=Sing|PronType=Art</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s315_n6" from="9608" to="9631">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">NOUN</f>
+ <f name="lemma">Fläche</f>
+ <f name="msd">Gender=Fem|Number=Sing|Person=3</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s315_n7" from="9632" to="9635">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">DET</f>
+ <f name="lemma">das</f>
+ <f name="msd">Case=Acc|Gender=Neut|Number=Sing|PronType=Art</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s315_n8" from="9636" to="9640">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">NOUN</f>
+ <f name="lemma">Bild</f>
+ <f name="msd">Gender=Neut|Number=Sing|Person=3</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s315_n9" from="9641" to="9646">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">DET</f>
+ <f name="lemma">eines</f>
+ <f name="msd">Case=Gen|Gender=Masc|Number=Sing|PronType=Art</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s315_n10" from="9647" to="9653">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">ADJ</f>
+ <f name="lemma">eben</f>
+ <f name="msd">Degree=Pos|Number=Sing</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s315_n11" from="9654" to="9666">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">NOUN</f>
+ <f name="lemma">Gegenstand</f>
+ <f name="msd">Case=Gen|Gender=Masc|Number=Sing|Person=3</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s315_n12" from="9667" to="9672">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">PART</f>
+ <f name="lemma">nicht</f>
+ <f name="msd">Polarity=Neg</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s315_n13" from="9673" to="9676">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">ADP</f>
+ <f name="lemma">auf</f>
+ <f name="msd">AdpType=Prep|Case=Dat</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s315_n14" from="9677" to="9686">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">ADJ</f>
+ <f name="lemma">derganz</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s315_n15" from="9687" to="9693">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">NOUN</f>
+ <f name="lemma">Fläche</f>
+ <f name="msd">Gender=Fem|Number=Sing|Person=3</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s315_n16" from="9694" to="9700">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">ADJ</f>
+ <f name="lemma">scharf</f>
+ <f name="msd">Degree=Pos|Variant=Short</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s315_n17" from="9701" to="9709">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">VERB</f>
+ <f name="lemma">abbilden</f>
+ <f name="msd">VerbForm=Inf</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s315_n18" from="9709" to="9710">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">PUNCT</f>
+ <f name="lemma">.</f>
+ <f name="msd">PunctType=Peri</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s316_n1" from="9711" to="9715">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">SCONJ</f>
+ <f name="lemma">Wenn</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s316_n2" from="9716" to="9719">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">PRON</f>
+ <f name="lemma">man</f>
+ <f name="msd">Case=Nom|Number=Sing|Person=3|PronType=Ind,Neg,Tot</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s316_n3" from="9720" to="9723">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">ADP</f>
+ <f name="lemma">auf</f>
+ <f name="msd">AdpType=Prep|Case=Acc</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s316_n4" from="9724" to="9727">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">DET</f>
+ <f name="lemma">die</f>
+ <f name="msd">Case=Acc|Gender=Fem|Number=Sing|PronType=Art</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s316_n5" from="9728" to="9737">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">NOUN</f>
+ <f name="lemma">Mitte</f>
+ <f name="msd">Gender=Fem|Number=Sing|Person=3</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s316_n6" from="9738" to="9748">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">VERB</f>
+ <f name="lemma">fokussieren</f>
+ <f name="msd">Mood=Ind|Number=Sing|Person=3|Tense=Pres|VerbForm=Fin</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s316_n7" from="9748" to="9749">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">PUNCT</f>
+ <f name="lemma">,</f>
+ <f name="msd">PunctType=Comm</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s316_n8" from="9750" to="9753">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">AUX</f>
+ <f name="lemma">sein</f>
+ <f name="msd">Mood=Ind|Number=Sing|Person=3|Tense=Pres|VerbForm=Fin</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s316_n9" from="9754" to="9757">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">DET</f>
+ <f name="lemma">der</f>
+ <f name="msd">Case=Nom|Gender=Masc|Number=Sing|PronType=Art</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s316_n10" from="9758" to="9762">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">NOUN</f>
+ <f name="lemma">Rand</f>
+ <f name="msd">Gender=Masc|Number=Sing|Person=3</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s316_n11" from="9763" to="9774">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">ADJ</f>
+ <f name="lemma">unscharfund</f>
+ <f name="msd">Degree=Pos|Variant=Short</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s316_n12" from="9775" to="9784">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">VERB</f>
+ <f name="lemma">umkehren</f>
+ <f name="msd">Aspect=Perf|VerbForm=Part</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s316_n13" from="9784" to="9785">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">PUNCT</f>
+ <f name="lemma">.</f>
+ <f name="msd">PunctType=Peri</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s317_n1" from="9786" to="9803">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">NOUN</f>
+ <f name="lemma">Wölbung</f>
+ <f name="msd">Gender=Fem|Number=Plur|Person=3</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s317_n2" from="9804" to="9808">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">VERB</f>
+ <f name="lemma">geben</f>
+ <f name="msd">Mood=Ind|Number=Sing|Person=3|Tense=Pres|VerbForm=Fin</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s317_n3" from="9809" to="9811">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">PRON</f>
+ <f name="lemma">es</f>
+ <f name="msd">Case=Nom|Gender=Neut|Number=Sing|Person=3|PronType=Prs</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s317_n4" from="9812" to="9817">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">PART</f>
+ <f name="lemma">nicht</f>
+ <f name="msd">Polarity=Neg</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s317_n5" from="9818" to="9821">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">ADV</f>
+ <f name="lemma">nur</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s317_n6" from="9822" to="9835">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">ADJ</f>
+ <f name="lemma">beiobjektiv</f>
+ <f name="msd">Person=3</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s317_n7" from="9835" to="9836">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">PUNCT</f>
+ <f name="lemma">,</f>
+ <f name="msd">PunctType=Comm</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s317_n8" from="9837" to="9844">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">CCONJ</f>
+ <f name="lemma">sondern</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s317_n9" from="9845" to="9849">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">ADV</f>
+ <f name="lemma">auch</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s317_n10" from="9850" to="9853">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">ADP</f>
+ <f name="lemma">bei</f>
+ <f name="msd">AdpType=Prep|Case=Dat</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s317_n11" from="9854" to="9861">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">ADJ</f>
+ <f name="lemma">ander</f>
+ <f name="msd">Case=Dat|Degree=Pos|Number=Plur</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s317_n12" from="9862" to="9871">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">ADJ</f>
+ <f name="lemma">optisch</f>
+ <f name="msd">Case=Dat|Degree=Pos|Number=Plur</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s317_n13" from="9872" to="9881">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">NOUN</f>
+ <f name="lemma">Bauteil</f>
+ <f name="msd">Case=Dat|Gender=Neut|Number=Plur|Person=3</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s317_n14" from="9881" to="9882">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">PUNCT</f>
+ <f name="lemma">,</f>
+ <f name="msd">PunctType=Comm</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s317_n15" from="9883" to="9885">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">ADP</f>
+ <f name="lemma">z.</f>
+ <f name="msd">AdpType=Prep|Case=Dat</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s317_n16" from="9886" to="9888">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">NOUN</f>
+ <f name="lemma">unknown</f>
+ <f name="msd">Person=3</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s317_n17" from="9889" to="9892">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">ADP</f>
+ <f name="lemma">bei</f>
+ <f name="msd">AdpType=Prep|Case=Dat</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s317_n18" from="9893" to="9901">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">NOUN</f>
+ <f name="lemma">Ar</f>
+ <f name="msd">Person=3</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s317_n19" from="9902" to="9906">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">CCONJ</f>
+ <f name="lemma">oder</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s317_n20" from="9907" to="9918">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">NOUN</f>
+ <f name="lemma">Projektor</f>
+ <f name="msd">Gender=Masc|Number=Plur|Person=3</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s317_n21" from="9918" to="9919">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">PUNCT</f>
+ <f name="lemma">.</f>
+ <f name="msd">PunctType=Peri</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s318_n1" from="9920" to="9923">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">PRON</f>
+ <f name="lemma">Sie</f>
+ <f name="msd">Case=Nom|Gender=Fem|Number=Sing|Person=3|PronType=Prs</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s318_n2" from="9924" to="9928">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">AUX</f>
+ <f name="lemma">können</f>
+ <f name="msd">Mood=Ind|Number=Sing|Person=3|Tense=Pres|VerbForm=Fin|VerbType=Mod</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s318_n3" from="9929" to="9935">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">ADV</f>
+ <f name="lemma">jedoch</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s318_n4" from="9936" to="9937">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">ADJ</f>
+ <f name="lemma">–</f>
+ <f name="msd">Degree=Pos|Variant=Short</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s318_n5" from="9938" to="9941">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">CCONJ</f>
+ <f name="lemma">wie</f>
+ <f name="msd">ConjType=Comp</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s318_n6" from="9942" to="9945">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">DET</f>
+ <f name="lemma">die</f>
+ <f name="msd">Case=Nom|Number=Plur|PronType=Art</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s318_n7" from="9946" to="9953">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">ADJ</f>
+ <f name="lemma">meist</f>
+ <f name="msd">Degree=Sup|Number=Plur|Person=3</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s318_n8" from="9954" to="9977">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">NOUN</f>
+ <f name="lemma">Fehler</f>
+ <f name="msd">Gender=Masc|Number=Plur|Person=3</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s318_n9" from="9978" to="9979">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">ADV</f>
+ <f name="lemma">–</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s318_n10" from="9980" to="9985">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">ADP</f>
+ <f name="lemma">durch</f>
+ <f name="msd">AdpType=Prep|Case=Acc</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s318_n11" from="9986" to="9995">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">ADJ</f>
+ <f name="lemma">speziell</f>
+ <f name="msd">Degree=Pos|Gender=Fem|Number=Sing</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s318_n12" from="9996" to="10005">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">NOUN</f>
+ <f name="lemma">Anordnung</f>
+ <f name="msd">Gender=Fem|Number=Sing|Person=3</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s318_n13" from="10006" to="10009">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">DET</f>
+ <f name="lemma">der</f>
+ <f name="msd">Case=Gen|Number=Plur|PronType=Art</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s318_n14" from="10010" to="10016">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">NOUN</f>
+ <f name="lemma">Linse</f>
+ <f name="msd">Gender=Fem|Number=Plur|Person=3</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s318_n15" from="10017" to="10022">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">ADP</f>
+ <f name="lemma">unter</f>
+ <f name="msd">AdpType=Prep|Case=Dat</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s318_n16" from="10023" to="10026">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">DET</f>
+ <f name="lemma">der</f>
+ <f name="msd">Case=Dat|Gender=Fem|Number=Sing|PronType=Art</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s318_n17" from="10027" to="10043">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">NOUN</f>
+ <f name="lemma">Schwelle</f>
+ <f name="msd">Gender=Fem|Number=Sing|Person=3</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s318_n18" from="10044" to="10052">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">VERB</f>
+ <f name="lemma">halten</f>
+ <f name="msd">Aspect=Perf|VerbForm=Part</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s318_n19" from="10053" to="10059">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">AUX</f>
+ <f name="lemma">werden</f>
+ <f name="msd">VerbForm=Inf</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s318_n20" from="10059" to="10060">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">PUNCT</f>
+ <f name="lemma">(</f>
+ <f name="msd">PunctType=Brck</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s318_n21" from="10060" to="10073">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">NOUN</f>
+ <f name="lemma">Optik</f>
+ <f name="msd">Gender=Fem|Number=Sing|Person=3</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s318_n22" from="10073" to="10074">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">PUNCT</f>
+ <f name="lemma">)</f>
+ <f name="msd">PunctType=Brck</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s318_n23" from="10074" to="10075">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">PUNCT</f>
+ <f name="lemma">.</f>
+ <f name="msd">PunctType=Peri</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s319_n1" from="10076" to="10091">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">NOUN</f>
+ <f name="lemma">Doptik</f>
+ <f name="msd">Gender=Fem|Number=Plur|Person=3</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s319_n2" from="10092" to="10096">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">AUX</f>
+ <f name="lemma">sein</f>
+ <f name="msd">Mood=Ind|Number=Plur|Person=3|Tense=Pres|VerbForm=Fin</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s319_n3" from="10097" to="10101">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">ADV</f>
+ <f name="lemma">auch</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s319_n4" from="10102" to="10105">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">ADP</f>
+ <f name="lemma">bei</f>
+ <f name="msd">AdpType=Prep|Case=Dat</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s319_n5" from="10106" to="10114">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">NOUN</f>
+ <f name="lemma">Scanner</f>
+ <f name="msd">Case=Dat|Gender=Masc|Number=Plur|Person=3</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s319_n6" from="10115" to="10118">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">ADP</f>
+ <f name="lemma">zur</f>
+ <f name="msd">AdpType=Prep|Case=Dat</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s319_n7" from="10119" to="10130">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">NOUN</f>
+ <f name="lemma">Lasergravur</f>
+ <f name="msd">Person=3</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s319_n8" from="10131" to="10143">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">ADJ</f>
+ <f name="lemma">erforderlich</f>
+ <f name="msd">Degree=Pos|Variant=Short</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s319_n9" from="10143" to="10144">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">PUNCT</f>
+ <f name="lemma">,</f>
+ <f name="msd">PunctType=Comm</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s319_n10" from="10145" to="10147">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">SCONJ</f>
+ <f name="lemma">um</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s319_n11" from="10148" to="10153">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">ADJ</f>
+ <f name="lemma">eben</f>
+ <f name="msd">Degree=Pos|Number=Plur</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s319_n12" from="10154" to="10161">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">NOUN</f>
+ <f name="lemma">Fläche</f>
+ <f name="msd">Gender=Fem|Number=Plur|Person=3</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s319_n13" from="10162" to="10174">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">VERB</f>
+ <f name="lemma">zubearbeiten</f>
+ <f name="msd">VerbForm=Inf</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s319_n14" from="10174" to="10175">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">PUNCT</f>
+ <f name="lemma">.</f>
+ <f name="msd">PunctType=Peri</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s320_n1" from="10176" to="10179">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">ADP</f>
+ <f name="lemma">Bei</f>
+ <f name="msd">AdpType=Prep|Case=Dat</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s320_n2" from="10180" to="10187">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">DET</f>
+ <f name="lemma">manch</f>
+ <f name="msd">Case=Dat|Number=Plur|Person=3|PronType=Ind,Neg,Tot</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s320_n3" from="10188" to="10202">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">NOUN</f>
+ <f name="lemma">Kamera</f>
+ <f name="msd">Gender=Fem|Number=Plur|Person=3</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s320_n4" from="10203" to="10207">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">AUX</f>
+ <f name="lemma">werden</f>
+ <f name="msd">Mood=Ind|Number=Sing|Person=3|Tense=Pres|VerbForm=Fin</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s320_n5" from="10208" to="10215">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">ADV</f>
+ <f name="lemma">dagegen</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s320_n6" from="10216" to="10234">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">NOUN</f>
+ <f name="lemma">Wölbung</f>
+ <f name="msd">Gender=Fem|Number=Sing|Person=3</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s320_n7" from="10235" to="10240">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">ADP</f>
+ <f name="lemma">durch</f>
+ <f name="msd">AdpType=Prep|Case=Acc</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s320_n8" from="10241" to="10250">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">NOUN</f>
+ <f name="lemma">Anpressen</f>
+ <f name="msd">Gender=Neut|Number=Sing|Person=3</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s320_n9" from="10251" to="10254">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">DET</f>
+ <f name="lemma">des</f>
+ <f name="msd">Case=Gen|Gender=Masc|Number=Sing|PronType=Art</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s320_n10" from="10255" to="10269">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">ADJ</f>
+ <f name="lemma">fotografischen</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s320_n11" from="10270" to="10275">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">NOUN</f>
+ <f name="lemma">Film</f>
+ <f name="msd">Case=Gen|Gender=Masc|Number=Sing|Person=3</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s320_n12" from="10276" to="10278">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">ADP</f>
+ <f name="lemma">an</f>
+ <f name="msd">AdpType=Prep|Case=Acc</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s320_n13" from="10279" to="10283">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">DET</f>
+ <f name="lemma">eine</f>
+ <f name="msd">Case=Acc|Gender=Fem|Number=Sing|PronType=Art</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s320_n14" from="10284" to="10293">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">ADJ</f>
+ <f name="lemma">krümmen</f>
+ <f name="msd">Degree=Pos|Gender=Fem|Number=Sing</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s320_n15" from="10294" to="10300">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">NOUN</f>
+ <f name="lemma">Fläche</f>
+ <f name="msd">Gender=Fem|Number=Sing|Person=3</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s320_n16" from="10301" to="10313">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">VERB</f>
+ <f name="lemma">ausgleichen</f>
+ <f name="msd">Aspect=Perf|VerbForm=Part</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s320_n17" from="10313" to="10314">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">PUNCT</f>
+ <f name="lemma">,</f>
+ <f name="msd">PunctType=Comm</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s320_n18" from="10315" to="10329">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">ADV</f>
+ <f name="lemma">beispielsweise</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s320_n19" from="10330" to="10333">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">ADP</f>
+ <f name="lemma">bei</f>
+ <f name="msd">AdpType=Prep|Case=Dat</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s320_n20" from="10334" to="10337">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">DET</f>
+ <f name="lemma">der</f>
+ <f name="msd">Case=Dat|Gender=Fem|Number=Sing|PronType=Art</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s320_n21" from="10338" to="10365">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">NOUN</f>
+ <f name="lemma">Kamera</f>
+ <f name="msd">Gender=Fem|Number=Sing|Person=3</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s320_n22" from="10365" to="10366">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">PUNCT</f>
+ <f name="lemma">.</f>
+ <f name="msd">PunctType=Peri</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s321_n1" from="10367" to="10370">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">ADP</f>
+ <f name="lemma">Bei</f>
+ <f name="msd">AdpType=Prep|Case=Dat</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s321_n2" from="10371" to="10385">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">NOUN</f>
+ <f name="lemma">Kamera</f>
+ <f name="msd">Gender=Fem|Number=Plur|Person=3</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s321_n3" from="10386" to="10392">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">AUX</f>
+ <f name="lemma">können</f>
+ <f name="msd">Mood=Ind|Number=Plur|Person=3|Tense=Pres|VerbForm=Fin|VerbType=Mod</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s321_n4" from="10393" to="10401">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">ADJ</f>
+ <f name="lemma">wölben</f>
+ <f name="msd">Degree=Pos|Number=Plur</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s321_n5" from="10402" to="10414">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">NOUN</f>
+ <f name="lemma">Sensor</f>
+ <f name="msd">Gender=Masc|Number=Plur|Person=3</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s321_n6" from="10415" to="10425">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">VERB</f>
+ <f name="lemma">einsetzen</f>
+ <f name="msd">Aspect=Perf|VerbForm=Part</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s321_n7" from="10426" to="10432">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">AUX</f>
+ <f name="lemma">werden</f>
+ <f name="msd">VerbForm=Inf</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s321_n8" from="10432" to="10433">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">PUNCT</f>
+ <f name="lemma">,</f>
+ <f name="msd">PunctType=Comm</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s321_n9" from="10434" to="10436">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">SCONJ</f>
+ <f name="lemma">um</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s321_n10" from="10437" to="10440">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">DET</f>
+ <f name="lemma">den</f>
+ <f name="msd">Case=Acc|Gender=Masc|Number=Sing|PronType=Art</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s321_n11" from="10441" to="10451">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">NOUN</f>
+ <f name="lemma">Fehler</f>
+ <f name="msd">Gender=Masc|Number=Sing|Person=3</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s321_n12" from="10452" to="10466">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">VERB</f>
+ <f name="lemma">zukompensieren</f>
+ <f name="msd">VerbForm=Inf</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s321_n13" from="10466" to="10467">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">PUNCT</f>
+ <f name="lemma">.</f>
+ <f name="msd">PunctType=Peri</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s322_n1" from="10469" to="10481">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">NOUN</f>
+ <f name="lemma">Verzeichnung</f>
+ <f name="msd">Gender=Fem|Number=Sing|Person=3</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s322_n2" from="10483" to="10491">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">ADJ</f>
+ <f name="lemma">hochkant</f>
+ <f name="msd">Degree=Pos|Variant=Short</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s322_n3" from="10491" to="10492">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">ADP</f>
+ <f name="lemma">=</f>
+ <f name="msd">AdpType=Prep|Case=Acc</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s322_n4" from="10492" to="10495">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">NUM</f>
+ <f name="lemma">1.5</f>
+ <f name="msd">Number=Plur|NumType=Card|Person=3</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s322_n5" from="10495" to="10496">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">NOUN</f>
+ <f name="lemma">|</f>
+ <f name="msd">Foreign=Yes|Person=3</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s322_n6" from="10496" to="10500">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">X</f>
+ <f name="lemma">mini</f>
+ <f name="msd">Foreign=Yes|Person=3</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s322_n7" from="10500" to="10501">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">X</f>
+ <f name="lemma">|</f>
+ <f name="msd">Foreign=Yes|Person=3</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s322_n8" from="10501" to="10513">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">ADJ</f>
+ <f name="lemma">geometrisch</f>
+ <f name="msd">Degree=Pos|Gender=Fem|Number=Sing</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s322_n9" from="10514" to="10526">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">NOUN</f>
+ <f name="lemma">Verzeichnung</f>
+ <f name="msd">Gender=Fem|Number=Sing|Person=3</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s322_n10" from="10527" to="10539">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">NOUN</f>
+ <f name="lemma">Verzeichnung</f>
+ <f name="msd">Gender=Fem|Number=Sing|Person=3</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s322_n11" from="10540" to="10543">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">AUX</f>
+ <f name="lemma">sein</f>
+ <f name="msd">Mood=Ind|Number=Sing|Person=3|Tense=Pres|VerbForm=Fin</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s322_n12" from="10544" to="10547">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">DET</f>
+ <f name="lemma">ein</f>
+ <f name="msd">Case=Nom|Gender=Masc|Number=Sing|PronType=Art</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s322_n13" from="10548" to="10558">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">NOUN</f>
+ <f name="lemma">Fehler</f>
+ <f name="msd">Gender=Masc|Number=Sing|Person=3</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s322_n14" from="10559" to="10562">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">CCONJ</f>
+ <f name="lemma">und</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s322_n15" from="10563" to="10571">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">VERB</f>
+ <f name="lemma">bedeuten</f>
+ <f name="msd">Mood=Ind|Number=Sing|Person=3|Tense=Pres|VerbForm=Fin</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s322_n16" from="10571" to="10572">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">PUNCT</f>
+ <f name="lemma">,</f>
+ <f name="msd">PunctType=Comm</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s322_n17" from="10572" to="10576">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">SCONJ</f>
+ <f name="lemma">dass</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s322_n18" from="10577" to="10580">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">DET</f>
+ <f name="lemma">die</f>
+ <f name="msd">Case=Nom|Gender=Fem|Number=Sing|PronType=Art</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s322_n19" from="10581" to="10589">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">NOUN</f>
+ <f name="lemma">Höhe</f>
+ <f name="msd">Gender=Fem|Number=Sing|Person=3</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s322_n20" from="10590" to="10591">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">PUNCT</f>
+ <f name="lemma">(</f>
+ <f name="msd">PunctType=Brck</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s322_n21" from="10591" to="10598">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">NOUN</f>
+ <f name="lemma">Abstand</f>
+ <f name="msd">Gender=Masc|Number=Sing|Person=3</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s322_n22" from="10599" to="10604">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">DET</f>
+ <f name="lemma">eines</f>
+ <f name="msd">Case=Gen|Gender=Masc|Number=Sing|PronType=Art</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s322_n23" from="10605" to="10615">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">NOUN</f>
+ <f name="lemma">Punkt</f>
+ <f name="msd">Case=Gen|Gender=Masc|Number=Sing|Person=3</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s322_n24" from="10616" to="10619">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">ADP</f>
+ <f name="lemma">von</f>
+ <f name="msd">AdpType=Prep|Case=Dat</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s322_n25" from="10620" to="10623">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">DET</f>
+ <f name="lemma">der</f>
+ <f name="msd">Case=Dat|Gender=Fem|Number=Sing|PronType=Art</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s322_n26" from="10624" to="10633">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">NOUN</f>
+ <f name="lemma">Mitte</f>
+ <f name="msd">Gender=Fem|Number=Sing|Person=3</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s322_n27" from="10633" to="10634">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">PUNCT</f>
+ <f name="lemma">)</f>
+ <f name="msd">PunctType=Brck</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s322_n28" from="10635" to="10650">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">ADJ</f>
+ <f name="lemma">aufnichtlineare</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s322_n29" from="10651" to="10656">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">NOUN</f>
+ <f name="lemma">Weise</f>
+ <f name="msd">Gender=Fem|Number=Sing|Person=3</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s322_n30" from="10657" to="10660">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">ADP</f>
+ <f name="lemma">von</f>
+ <f name="msd">AdpType=Prep|Case=Dat</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s322_n31" from="10661" to="10664">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">DET</f>
+ <f name="lemma">der</f>
+ <f name="msd">Case=Dat|Gender=Fem|Number=Sing|PronType=Art</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s322_n32" from="10665" to="10669">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">NOUN</f>
+ <f name="lemma">Höhe</f>
+ <f name="msd">Gender=Fem|Number=Sing|Person=3</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s322_n33" from="10670" to="10673">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">DET</f>
+ <f name="lemma">des</f>
+ <f name="msd">Case=Gen|Gender=Masc|Number=Sing|PronType=Art</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s322_n34" from="10674" to="10688">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">ADJ</f>
+ <f name="lemma">entsprechen</f>
+ <f name="msd">Degree=Pos|Number=Sing</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s322_n35" from="10689" to="10708">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">NOUN</f>
+ <f name="lemma">Abhängt</f>
+ <f name="msd">Gender=Masc|Number=Sing|Person=3</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s322_n36" from="10708" to="10709">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">PUNCT</f>
+ <f name="lemma">.</f>
+ <f name="msd">PunctType=Peri</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s323_n1" from="10710" to="10713">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">PRON</f>
+ <f name="lemma">Man</f>
+ <f name="msd">Case=Nom|Number=Sing|Person=3|PronType=Ind,Neg,Tot</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s323_n2" from="10714" to="10718">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">AUX</f>
+ <f name="lemma">können</f>
+ <f name="msd">Mood=Ind|Number=Sing|Person=3|Tense=Pres|VerbForm=Fin|VerbType=Mod</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s323_n3" from="10719" to="10723">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">ADV</f>
+ <f name="lemma">auch</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s323_n4" from="10724" to="10729">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">VERB</f>
+ <f name="lemma">sagen</f>
+ <f name="msd">VerbForm=Inf</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s323_n5" from="10729" to="10730">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">PUNCT</f>
+ <f name="lemma">:</f>
+ <f name="msd">PunctType=Peri</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s323_n6" from="10731" to="10734">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">DET</f>
+ <f name="lemma">Der</f>
+ <f name="msd">Case=Nom|Gender=Masc|Number=Sing|PronType=Art</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s323_n7" from="10735" to="10752">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">NOUN</f>
+ <f name="lemma">Massstab</f>
+ <f name="msd">Gender=Masc|Number=Sing|Person=3</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s323_n8" from="10753" to="10758">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">VERB</f>
+ <f name="lemma">hängen</f>
+ <f name="msd">Mood=Ind|Number=Sing|Person=3|Tense=Pres|VerbForm=Fin</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s323_n9" from="10759" to="10762">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">ADP</f>
+ <f name="lemma">von</f>
+ <f name="msd">AdpType=Prep|Case=Dat</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s323_n10" from="10763" to="10766">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">DET</f>
+ <f name="lemma">der</f>
+ <f name="msd">Case=Dat|Gender=Fem|Number=Sing|PronType=Art</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s323_n11" from="10767" to="10771">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">NOUN</f>
+ <f name="lemma">Höhe</f>
+ <f name="msd">Gender=Fem|Number=Sing|Person=3</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s323_n12" from="10772" to="10787">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">PROPN</f>
+ <f name="lemma">Punkt</f>
+ <f name="msd">Case=Gen|Gender=Masc|Number=Sing|Person=3</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s323_n13" from="10788" to="10790">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">ADP</f>
+ <f name="lemma">ab</f>
+ <f name="msd">PartType=Vbp</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s323_n14" from="10790" to="10791">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">PUNCT</f>
+ <f name="lemma">.</f>
+ <f name="msd">PunctType=Peri</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s324_n1" from="10792" to="10795">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">PRON</f>
+ <f name="lemma">Man</f>
+ <f name="msd">Case=Nom|Number=Sing|Person=3|PronType=Ind,Neg,Tot</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s324_n2" from="10796" to="10803">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">VERB</f>
+ <f name="lemma">beachten</f>
+ <f name="msd">Mood=Ind|Number=Sing|Person=3|Tense=Pres|VerbForm=Fin</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s324_n3" from="10803" to="10804">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">PUNCT</f>
+ <f name="lemma">,</f>
+ <f name="msd">PunctType=Comm</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s324_n4" from="10805" to="10809">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">SCONJ</f>
+ <f name="lemma">dass</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s324_n5" from="10810" to="10814">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">ADV</f>
+ <f name="lemma">hier</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s324_n6" from="10815" to="10818">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">DET</f>
+ <f name="lemma">der</f>
+ <f name="msd">Case=Nom|Gender=Masc|Number=Sing|PronType=Art</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s324_n7" from="10819" to="10826">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">NOUN</f>
+ <f name="lemma">Begriff</f>
+ <f name="msd">Gender=Masc|Number=Sing|Person=3</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s324_n8" from="10827" to="10828">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">PUNCT</f>
+ <f name="lemma">„</f>
+ <f name="msd">PunctType=Brck</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s324_n9" from="10828" to="10837">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">NOUN</f>
+ <f name="lemma">Mitte</f>
+ <f name="msd">Gender=Fem|Number=Sing|Person=3</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s324_n10" from="10837" to="10838">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">X</f>
+ <f name="lemma">“</f>
+ <f name="msd">Foreign=Yes|Person=3</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s324_n11" from="10838" to="10843">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">PART</f>
+ <f name="lemma">nicht</f>
+ <f name="msd">Polarity=Neg</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s324_n12" from="10844" to="10847">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">DET</f>
+ <f name="lemma">den</f>
+ <f name="msd">Case=Acc|Gender=Masc|Number=Sing|PronType=Art</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s324_n13" from="10848" to="10861">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">ADJ</f>
+ <f name="lemma">rechnerisch</f>
+ <f name="msd">Case=Acc|Degree=Pos|Gender=Masc|Number=Sing</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s324_n14" from="10862" to="10873">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">NOUN</f>
+ <f name="lemma">Punkt</f>
+ <f name="msd">Gender=Masc|Number=Sing|Person=3</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s324_n15" from="10874" to="10877">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">DET</f>
+ <f name="lemma">des</f>
+ <f name="msd">Case=Gen|Gender=Neut|Number=Sing|PronType=Art</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s324_n16" from="10878" to="10884">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">NOUN</f>
+ <f name="lemma">Bild</f>
+ <f name="msd">Case=Gen|Gender=Neut|Number=Sing|Person=3</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s324_n17" from="10885" to="10895">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">VERB</f>
+ <f name="lemma">bezeichnen</f>
+ <f name="msd">Mood=Ind|Number=Sing|Person=3|Tense=Pres|VerbForm=Fin</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s324_n18" from="10895" to="10896">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">PUNCT</f>
+ <f name="lemma">,</f>
+ <f name="msd">PunctType=Comm</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s324_n19" from="10897" to="10900">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">PRON</f>
+ <f name="lemma">der</f>
+ <f name="msd">Case=Nom|Gender=Masc|Number=Sing|Person=3|PronType=Rel</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s324_n20" from="10901" to="10910">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">ADV</f>
+ <f name="lemma">sichdurch</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s324_n21" from="10911" to="10914">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">DET</f>
+ <f name="lemma">die</f>
+ <f name="msd">Case=Acc|Gender=Fem|Number=Sing|PronType=Art</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s324_n22" from="10915" to="10924">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">NOUN</f>
+ <f name="lemma">Zahl</f>
+ <f name="msd">Gender=Fem|Number=Sing|Person=3</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s324_n23" from="10925" to="10931">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">VERB</f>
+ <f name="lemma">ergeben</f>
+ <f name="msd">Mood=Ind|Number=Sing|Person=3|Tense=Pres|VerbForm=Fin</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s324_n24" from="10931" to="10932">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">PUNCT</f>
+ <f name="lemma">.</f>
+ <f name="msd">PunctType=Peri</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s325_n1" from="10933" to="10941">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">ADV</f>
+ <f name="lemma">Vielmehr</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s325_n2" from="10942" to="10945">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">AUX</f>
+ <f name="lemma">sein</f>
+ <f name="msd">Mood=Ind|Number=Sing|Person=3|Tense=Pres|VerbForm=Fin</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s325_n3" from="10946" to="10949">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">DET</f>
+ <f name="lemma">der</f>
+ <f name="msd">Case=Nom|Gender=Masc|Number=Sing|PronType=Art</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s325_n4" from="10950" to="10955">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">NOUN</f>
+ <f name="lemma">Punkt</f>
+ <f name="msd">Gender=Masc|Number=Sing|Person=3</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s325_n5" from="10956" to="10963">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">VERB</f>
+ <f name="lemma">meinen</f>
+ <f name="msd">Aspect=Perf|VerbForm=Part</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s325_n6" from="10963" to="10964">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">PUNCT</f>
+ <f name="lemma">,</f>
+ <f name="msd">PunctType=Comm</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s325_n7" from="10965" to="10967">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">ADP</f>
+ <f name="lemma">in</f>
+ <f name="msd">AdpType=Prep|Case=Dat</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s325_n8" from="10968" to="10971">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">PRON</f>
+ <f name="lemma">dem</f>
+ <f name="msd">Case=Dat|Gender=Masc|Number=Sing|Person=3|PronType=Rel</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s325_n9" from="10972" to="10975">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">DET</f>
+ <f name="lemma">die</f>
+ <f name="msd">Case=Nom|Gender=Fem|Number=Sing|PronType=Art</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s325_n10" from="10976" to="10984">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">ADJ</f>
+ <f name="lemma">optisch</f>
+ <f name="msd">Degree=Pos|Gender=Fem|Number=Sing</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s325_n11" from="10985" to="10990">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">NOUN</f>
+ <f name="lemma">Achse</f>
+ <f name="msd">Gender=Fem|Number=Sing|Person=3</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s325_n12" from="10991" to="11003">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">ADJ</f>
+ <f name="lemma">Ebene</f>
+ <f name="msd">Degree=Pos|Variant=Short</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s325_n13" from="11004" to="11013">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">VERB</f>
+ <f name="lemma">schneiden</f>
+ <f name="msd">Mood=Ind|Number=Sing|Person=3|Tense=Pres|VerbForm=Fin</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s325_n14" from="11013" to="11014">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">PUNCT</f>
+ <f name="lemma">.</f>
+ <f name="msd">PunctType=Peri</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s326_n1" from="11015" to="11021">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">DET</f>
+ <f name="lemma">dies</f>
+ <f name="msd">Case=Nom|Gender=Masc|Number=Sing|PronType=Dem</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s326_n2" from="11022" to="11027">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">NOUN</f>
+ <f name="lemma">Punkt</f>
+ <f name="msd">Gender=Masc|Number=Sing|Person=3</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s326_n3" from="11028" to="11032">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">AUX</f>
+ <f name="lemma">werden</f>
+ <f name="msd">Mood=Ind|Number=Sing|Person=3|Tense=Pres|VerbForm=Fin</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s326_n4" from="11033" to="11037">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">ADV</f>
+ <f name="lemma">auch</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s326_n5" from="11038" to="11041">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">CCONJ</f>
+ <f name="lemma">als</f>
+ <f name="msd">ConjType=Comp</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s326_n6" from="11042" to="11072">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">NOUN</f>
+ <f name="lemma">Bezeichnet</f>
+ <f name="msd">Gender=Masc|Number=Sing|Person=3</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s326_n7" from="11072" to="11073">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">PUNCT</f>
+ <f name="lemma">.</f>
+ <f name="msd">PunctType=Peri</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s327_n1" from="11074" to="11086">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">NOUN</f>
+ <f name="lemma">Verzeichnung</f>
+ <f name="msd">Gender=Fem|Number=Sing|Person=3</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s327_n2" from="11087" to="11094">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">VERB</f>
+ <f name="lemma">bewirken</f>
+ <f name="msd">Mood=Ind|Number=Sing|Person=3|Tense=Pres|VerbForm=Fin</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s327_n3" from="11094" to="11095">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">PUNCT</f>
+ <f name="lemma">,</f>
+ <f name="msd">PunctType=Comm</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s327_n4" from="11096" to="11100">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">SCONJ</f>
+ <f name="lemma">dass</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s327_n5" from="11101" to="11107">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">ADV</f>
+ <f name="lemma">gerade</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s327_n6" from="11108" to="11114">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">NOUN</f>
+ <f name="lemma">Linie</f>
+ <f name="msd">Gender=Fem|Number=Plur|Person=3</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s327_n7" from="11114" to="11115">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">PUNCT</f>
+ <f name="lemma">,</f>
+ <f name="msd">PunctType=Comm</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s327_n8" from="11116" to="11127">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">PROPN</f>
+ <f name="lemma">Abbild</f>
+ <f name="msd">Person=3</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s327_n9" from="11128" to="11133">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">PART</f>
+ <f name="lemma">nicht</f>
+ <f name="msd">Polarity=Neg</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s327_n10" from="11134" to="11139">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">ADP</f>
+ <f name="lemma">durch</f>
+ <f name="msd">AdpType=Prep|Case=Acc</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s327_n11" from="11140" to="11143">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">DET</f>
+ <f name="lemma">die</f>
+ <f name="msd">Case=Acc|Gender=Fem|Number=Sing|PronType=Art</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s327_n12" from="11144" to="11153">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">NOUN</f>
+ <f name="lemma">Mitte</f>
+ <f name="msd">Gender=Fem|Number=Sing|Person=3</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s327_n13" from="11154" to="11158">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">VERB</f>
+ <f name="lemma">gehen</f>
+ <f name="msd">Mood=Ind|Number=Sing|Person=3|Tense=Pres|VerbForm=Fin</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s327_n14" from="11158" to="11159">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">PUNCT</f>
+ <f name="lemma">,</f>
+ <f name="msd">PunctType=Comm</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s327_n15" from="11160" to="11168">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">ADJ</f>
+ <f name="lemma">krümmen</f>
+ <f name="msd">Degree=Pos|Variant=Short</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s327_n16" from="11169" to="11188">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">VERB</f>
+ <f name="lemma">wiedergegebenwerden</f>
+ <f name="msd">Mood=Ind|Number=Plur|Person=3|Tense=Pres|VerbForm=Fin</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s327_n17" from="11188" to="11189">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">PUNCT</f>
+ <f name="lemma">.</f>
+ <f name="msd">PunctType=Peri</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s328_n1" from="11190" to="11194">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">SCONJ</f>
+ <f name="lemma">Wenn</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s328_n2" from="11195" to="11198">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">DET</f>
+ <f name="lemma">der</f>
+ <f name="msd">Case=Nom|Gender=Masc|Number=Sing|PronType=Art</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s328_n3" from="11199" to="11216">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">NOUN</f>
+ <f name="lemma">Massstab</f>
+ <f name="msd">Gender=Masc|Number=Sing|Person=3</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s328_n4" from="11217" to="11220">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">ADP</f>
+ <f name="lemma">mit</f>
+ <f name="msd">AdpType=Prep|Case=Dat</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s328_n5" from="11221" to="11232">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">ADJ</f>
+ <f name="lemma">zunehmen</f>
+ <f name="msd">Degree=Pos|Gender=Fem|Number=Sing</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s328_n6" from="11233" to="11237">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">NOUN</f>
+ <f name="lemma">Höhe</f>
+ <f name="msd">Gender=Fem|Number=Sing|Person=3</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s328_n7" from="11238" to="11245">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">VERB</f>
+ <f name="lemma">abnehmen</f>
+ <f name="msd">Mood=Ind|Number=Sing|Person=3|Tense=Pres|VerbForm=Fin</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s328_n8" from="11245" to="11246">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">PUNCT</f>
+ <f name="lemma">,</f>
+ <f name="msd">PunctType=Comm</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s328_n9" from="11247" to="11252">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">VERB</f>
+ <f name="lemma">nennen</f>
+ <f name="msd">Mood=Ind|Number=Sing|Person=3|Tense=Pres|VerbForm=Fin</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s328_n10" from="11253" to="11256">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">PRON</f>
+ <f name="lemma">man</f>
+ <f name="msd">Case=Nom|Number=Sing|Person=3|PronType=Ind,Neg,Tot</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s328_n11" from="11257" to="11261">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">PRON</f>
+ <f name="lemma">dies</f>
+ <f name="msd">Case=Acc|Gender=Neut|Number=Sing|Person=3|PronType=Dem</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s328_n12" from="11262" to="11275">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">ADJ</f>
+ <f name="lemma">tonnenförmige</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s328_n13" from="11276" to="11288">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">NOUN</f>
+ <f name="lemma">Verzeichnung</f>
+ <f name="msd">Gender=Fem|Number=Sing|Person=3</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s328_n14" from="11288" to="11289">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">PUNCT</f>
+ <f name="lemma">.</f>
+ <f name="msd">PunctType=Peri</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s329_n1" from="11290" to="11294">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">ADV</f>
+ <f name="lemma">Dann</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s329_n2" from="11295" to="11299">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">AUX</f>
+ <f name="lemma">werden</f>
+ <f name="msd">Mood=Ind|Number=Sing|Person=3|Tense=Pres|VerbForm=Fin</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s329_n3" from="11300" to="11303">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">DET</f>
+ <f name="lemma">ein</f>
+ <f name="msd">Case=Nom|Gender=Neut|Number=Sing|PronType=Art</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s329_n4" from="11304" to="11311">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">NOUN</f>
+ <f name="lemma">Quadrat</f>
+ <f name="msd">Gender=Neut|Number=Sing|Person=3</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s329_n5" from="11312" to="11315">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">ADP</f>
+ <f name="lemma">mit</f>
+ <f name="msd">AdpType=Prep|Case=Dat</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s329_n6" from="11316" to="11320">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">ADP</f>
+ <f name="lemma">nach</f>
+ <f name="msd">AdpType=Prep|Case=Dat</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s329_n7" from="11321" to="11326">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">ADV</f>
+ <f name="lemma">außen</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s329_n8" from="11327" to="11336">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">ADJ</f>
+ <f name="lemma">wölben</f>
+ <f name="msd">Case=Dat|Degree=Pos|Number=Plur</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s329_n9" from="11337" to="11353">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">NOUN</f>
+ <f name="lemma">Ild</f>
+ <f name="msd">Gender=Neut|Number=Plur|Person=3</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s329_n10" from="11353" to="11354">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">PUNCT</f>
+ <f name="lemma">,</f>
+ <f name="msd">PunctType=Comm</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s329_n11" from="11355" to="11360">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">VERB</f>
+ <f name="lemma">sehen</f>
+ <f name="msd">Mood=Ind|Number=Sing|Person=3|Tense=Pres|VerbForm=Fin</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s329_n12" from="11361" to="11365">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">ADV</f>
+ <f name="lemma">also</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s329_n13" from="11366" to="11370">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">ADV</f>
+ <f name="lemma">etwa</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s329_n14" from="11371" to="11374">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">CCONJ</f>
+ <f name="lemma">wie</f>
+ <f name="msd">ConjType=Comp</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s329_n15" from="11375" to="11379">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">DET</f>
+ <f name="lemma">eine</f>
+ <f name="msd">Case=Acc|Gender=Fem|Number=Sing|PronType=Art</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s329_n16" from="11380" to="11385">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">NOUN</f>
+ <f name="lemma">Tonne</f>
+ <f name="msd">Gender=Fem|Number=Sing|Person=3</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s329_n17" from="11386" to="11389">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">ADP</f>
+ <f name="lemma">aus</f>
+ <f name="msd">PartType=Vbp</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s329_n18" from="11390" to="11391">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">PUNCT</f>
+ <f name="lemma">(</f>
+ <f name="msd">PunctType=Brck</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s329_n19" from="11391" to="11395">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">NOUN</f>
+ <f name="lemma">Name</f>
+ <f name="msd">Case=Nom|Gender=Masc|Number=Sing|Person=3</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s329_n20" from="11395" to="11396">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">PUNCT</f>
+ <f name="lemma">)</f>
+ <f name="msd">PunctType=Brck</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s329_n21" from="11396" to="11397">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">PUNCT</f>
+ <f name="lemma">.</f>
+ <f name="msd">PunctType=Peri</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s330_n1" from="11398" to="11401">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">DET</f>
+ <f name="lemma">Den</f>
+ <f name="msd">Case=Acc|Gender=Masc|Number=Sing|PronType=Art</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s330_n2" from="11402" to="11413">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">ADJ</f>
+ <f name="lemma">umkehren</f>
+ <f name="msd">Case=Acc|Degree=Pos|Gender=Masc|Number=Sing</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s330_n3" from="11414" to="11418">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">NOUN</f>
+ <f name="lemma">Fall</f>
+ <f name="msd">Gender=Masc|Number=Sing|Person=3</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s330_n4" from="11419" to="11424">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">VERB</f>
+ <f name="lemma">nennen</f>
+ <f name="msd">Mood=Ind|Number=Sing|Person=3|Tense=Pres|VerbForm=Fin</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s330_n5" from="11425" to="11428">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">PRON</f>
+ <f name="lemma">man</f>
+ <f name="msd">Case=Nom|Number=Sing|Person=3|PronType=Ind,Neg,Tot</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s330_n6" from="11429" to="11442">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">ADJ</f>
+ <f name="lemma">kissenförmige</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s330_n7" from="11443" to="11455">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">NOUN</f>
+ <f name="lemma">Verzeichnung</f>
+ <f name="msd">Gender=Fem|Number=Sing|Person=3</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s330_n8" from="11455" to="11456">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">PUNCT</f>
+ <f name="lemma">.</f>
+ <f name="msd">PunctType=Peri</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s331_n1" from="11457" to="11461">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">ADV</f>
+ <f name="lemma">Dann</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s331_n2" from="11462" to="11467">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">VERB</f>
+ <f name="lemma">sehen</f>
+ <f name="msd">Mood=Ind|Number=Sing|Person=3|Tense=Pres|VerbForm=Fin</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s331_n3" from="11468" to="11471">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">DET</f>
+ <f name="lemma">das</f>
+ <f name="msd">Case=Nom|Gender=Neut|Number=Sing|PronType=Art</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s331_n4" from="11472" to="11479">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">NOUN</f>
+ <f name="lemma">Quadrat</f>
+ <f name="msd">Gender=Neut|Number=Sing|Person=3</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s331_n5" from="11480" to="11483">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">ADP</f>
+ <f name="lemma">aus</f>
+ <f name="msd">PartType=Vbp</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s331_n6" from="11484" to="11487">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">CCONJ</f>
+ <f name="lemma">wie</f>
+ <f name="msd">ConjType=Comp</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s331_n7" from="11488" to="11491">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">DET</f>
+ <f name="lemma">ein</f>
+ <f name="msd">Case=Acc|Gender=Neut|Number=Sing|PronType=Art</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s331_n8" from="11492" to="11502">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">NOUN</f>
+ <f name="lemma">Kissen</f>
+ <f name="msd">Gender=Neut|Number=Sing|Person=3</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s331_n9" from="11502" to="11503">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">PUNCT</f>
+ <f name="lemma">.</f>
+ <f name="msd">PunctType=Peri</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s332_n1" from="11504" to="11506">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">PRON</f>
+ <f name="lemma">Es</f>
+ <f name="msd">Case=Nom|Gender=Neut|Number=Sing|Person=3|PronType=Prs</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s332_n2" from="11507" to="11511">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">AUX</f>
+ <f name="lemma">können</f>
+ <f name="msd">Mood=Ind|Number=Sing|Person=3|Tense=Pres|VerbForm=Fin|VerbType=Mod</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s332_n3" from="11512" to="11516">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">ADV</f>
+ <f name="lemma">auch</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s332_n4" from="11517" to="11530">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">ADJ</f>
+ <f name="lemma">wellenförmige</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s332_n5" from="11531" to="11552">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">NOUN</f>
+ <f name="lemma">Auftreten</f>
+ <f name="msd">Gender=Neut|Number=Sing|Person=3</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s332_n6" from="11552" to="11553">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">PUNCT</f>
+ <f name="lemma">,</f>
+ <f name="msd">PunctType=Comm</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s332_n7" from="11554" to="11558">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">SCONJ</f>
+ <f name="lemma">wenn</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s332_n8" from="11559" to="11563">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">PRON</f>
+ <f name="lemma">sich</f>
+ <f name="msd">Case=Acc|Person=3|PronType=Prs|Reflex=Yes</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s332_n9" from="11564" to="11576">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">ADJ</f>
+ <f name="lemma">verscheiden</f>
+ <f name="msd">Degree=Pos|Number=Plur</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s332_n10" from="11577" to="11586">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">NOUN</f>
+ <f name="lemma">Ordnung</f>
+ <f name="msd">Gender=Fem|Number=Plur|Person=3</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s332_n11" from="11587" to="11590">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">DET</f>
+ <f name="lemma">der</f>
+ <f name="msd">Case=Gen|Number=Plur|PronType=Art</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s332_n12" from="11591" to="11613">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">NOUN</f>
+ <f name="lemma">Überlager</f>
+ <f name="msd">Case=Dat|Gender=Masc|Number=Plur|Person=3</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s332_n13" from="11613" to="11614">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">PUNCT</f>
+ <f name="lemma">.</f>
+ <f name="msd">PunctType=Peri</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s333_n1" from="11615" to="11621">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">ADV</f>
+ <f name="lemma">Gerade</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s333_n2" from="11622" to="11628">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">NOUN</f>
+ <f name="lemma">Linie</f>
+ <f name="msd">Gender=Fem|Number=Plur|Person=3</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s333_n3" from="11629" to="11635">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">AUX</f>
+ <f name="lemma">werden</f>
+ <f name="msd">Mood=Ind|Number=Plur|Person=3|Tense=Pres|VerbForm=Fin</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s333_n4" from="11636" to="11640">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">ADV</f>
+ <f name="lemma">dann</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s333_n5" from="11641" to="11644">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">CCONJ</f>
+ <f name="lemma">wie</f>
+ <f name="msd">ConjType=Comp</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s333_n6" from="11645" to="11657">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">NOUN</f>
+ <f name="lemma">Linie</f>
+ <f name="msd">Gender=Fem|Number=Plur|Person=3</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s333_n7" from="11658" to="11662">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">ADP</f>
+ <f name="lemma">nach</f>
+ <f name="msd">AdpType=Prep|Case=Dat</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s333_n8" from="11663" to="11669">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">DET</f>
+ <f name="lemma">beide</f>
+ <f name="msd">Case=Dat|Number=Plur|Person=3</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s333_n9" from="11670" to="11684">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">NOUN</f>
+ <f name="lemma">Gekrümm</f>
+ <f name="msd">Gender=Neut|Number=Plur|Person=3</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s333_n10" from="11684" to="11685">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">PUNCT</f>
+ <f name="lemma">.</f>
+ <f name="msd">PunctType=Peri</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s334_n1" from="11686" to="11705">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">NOUN</f>
+ <f name="lemma">Objektive</f>
+ <f name="msd">Gender=Fem|Number=Sing|Person=3</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s334_n2" from="11706" to="11708">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">ADP</f>
+ <f name="lemma">in</f>
+ <f name="msd">AdpType=Prep|Case=Dat</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s334_n3" from="11709" to="11728">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">NOUN</f>
+ <f name="lemma">Bauweise</f>
+ <f name="msd">Gender=Fem|Number=Sing|Person=3</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s334_n4" from="11729" to="11730">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">PUNCT</f>
+ <f name="lemma">(</f>
+ <f name="msd">PunctType=Brck</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s334_n5" from="11730" to="11742">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">NOUN</f>
+ <f name="lemma">Weite</f>
+ <f name="msd">Gender=Fem|Number=Sing|Person=3</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s334_n6" from="11743" to="11749">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">ADJ</f>
+ <f name="lemma">groß</f>
+ <f name="msd">Degree=Cmp|Variant=Short</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s334_n7" from="11750" to="11753">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">CCONJ</f>
+ <f name="lemma">als</f>
+ <f name="msd">ConjType=Comp</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s334_n8" from="11754" to="11764">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">NOUN</f>
+ <f name="lemma">Weite</f>
+ <f name="msd">Gender=Fem|Number=Sing|Person=3</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s334_n9" from="11764" to="11765">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">PUNCT</f>
+ <f name="lemma">)</f>
+ <f name="msd">PunctType=Brck</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s334_n10" from="11766" to="11772">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">VERB</f>
+ <f name="lemma">neigen</f>
+ <f name="msd">Mood=Ind|Number=Plur|Person=3|Tense=Pres|VerbForm=Fin</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s334_n11" from="11773" to="11776">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">ADP</f>
+ <f name="lemma">zur</f>
+ <f name="msd">AdpType=Prep|Case=Dat</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s334_n12" from="11777" to="11791">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">ADJ</f>
+ <f name="lemma">tonnenförmigen</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s334_n13" from="11792" to="11804">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">NOUN</f>
+ <f name="lemma">Verzeichnung</f>
+ <f name="msd">Gender=Fem|Number=Sing|Person=3</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s334_n14" from="11805" to="11821">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">X</f>
+ <f name="lemma">UndteLeobjektive</f>
+ <f name="msd">Foreign=Yes|Person=3</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s334_n15" from="11822" to="11823">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">PUNCT</f>
+ <f name="lemma">(</f>
+ <f name="msd">PunctType=Brck</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s334_n16" from="11823" to="11831">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">NOUN</f>
+ <f name="lemma">Änge</f>
+ <f name="msd">Gender=Fem|Number=Sing|Person=3</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s334_n17" from="11832" to="11839">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">ADJ</f>
+ <f name="lemma">klein</f>
+ <f name="msd">Degree=Cmp|Variant=Short</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s334_n18" from="11840" to="11843">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">CCONJ</f>
+ <f name="lemma">als</f>
+ <f name="msd">ConjType=Comp</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s334_n19" from="11844" to="11854">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">NOUN</f>
+ <f name="lemma">Weite</f>
+ <f name="msd">Gender=Fem|Number=Sing|Person=3</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s334_n20" from="11854" to="11855">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">PUNCT</f>
+ <f name="lemma">)</f>
+ <f name="msd">PunctType=Brck</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s334_n21" from="11856" to="11873">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">ADJ</f>
+ <f name="lemma">zurkissenförmigen</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s334_n22" from="11873" to="11874">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">PUNCT</f>
+ <f name="lemma">.</f>
+ <f name="msd">PunctType=Peri</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s335_n1" from="11875" to="11885">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">ADJ</f>
+ <f name="lemma">sogenannte</f>
+ <f name="msd">Degree=Pos|Number=Plur</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s335_n2" from="11886" to="11906">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">NOUN</f>
+ <f name="lemma">Objektiv</f>
+ <f name="msd">Gender=Neut|Number=Plur|Person=3</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s335_n3" from="11907" to="11913">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">VERB</f>
+ <f name="lemma">weisen</f>
+ <f name="msd">Mood=Ind|Number=Plur|Person=3|Tense=Pres|VerbForm=Fin</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s335_n4" from="11914" to="11918">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">DET</f>
+ <f name="lemma">eine</f>
+ <f name="msd">Case=Acc|Gender=Fem|Number=Sing|PronType=Art</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s335_n5" from="11919" to="11938">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">ADJ</f>
+ <f name="lemma">starketonnenförmige</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s335_n6" from="11939" to="11951">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">NOUN</f>
+ <f name="lemma">Verzeichnung</f>
+ <f name="msd">Gender=Fem|Number=Sing|Person=3</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s335_n7" from="11952" to="11955">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">ADP</f>
+ <f name="lemma">auf</f>
+ <f name="msd">PartType=Vbp</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s335_n8" from="11955" to="11956">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">PUNCT</f>
+ <f name="lemma">.</f>
+ <f name="msd">PunctType=Peri</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s336_n1" from="11957" to="11961">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">PRON</f>
+ <f name="lemma">Dies</f>
+ <f name="msd">Case=Nom|Gender=Neut|Number=Sing|Person=3|PronType=Dem</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s336_n2" from="11962" to="11965">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">AUX</f>
+ <f name="lemma">sein</f>
+ <f name="msd">Mood=Ind|Number=Sing|Person=3|Tense=Pres|VerbForm=Fin</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s336_n3" from="11966" to="11973">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">ADJ</f>
+ <f name="lemma">wollen</f>
+ <f name="msd">Degree=Pos|Variant=Short</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s336_n4" from="11973" to="11974">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">PUNCT</f>
+ <f name="lemma">,</f>
+ <f name="msd">PunctType=Comm</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s336_n5" from="11975" to="11977">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">SCONJ</f>
+ <f name="lemma">um</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s336_n6" from="11978" to="11988">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">ADV</f>
+ <f name="lemma">einerseits</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s336_n7" from="11989" to="11994">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">DET</f>
+ <f name="lemma">einen</f>
+ <f name="msd">Case=Acc|Gender=Masc|Number=Sing|PronType=Art</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s336_n8" from="11995" to="12003">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">ADJ</f>
+ <f name="lemma">groß</f>
+ <f name="msd">Case=Acc|Degree=Cmp|Gender=Masc|Number=Sing</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s336_n9" from="12004" to="12014">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">NOUN</f>
+ <f name="lemma">Winkel</f>
+ <f name="msd">Gender=Masc|Number=Sing|Person=3</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s336_n10" from="12015" to="12026">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">VERB</f>
+ <f name="lemma">zuerreichen</f>
+ <f name="msd">VerbForm=Inf</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s336_n11" from="12027" to="12028">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">PUNCT</f>
+ <f name="lemma">(</f>
+ <f name="msd">PunctType=Brck</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s336_n12" from="12028" to="12031">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">NUM</f>
+ <f name="lemma">180</f>
+ <f name="msd">Number=Plur|NumType=Card|Person=3</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s336_n13" from="12032" to="12036">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">NOUN</f>
+ <f name="lemma">Grad</f>
+ <f name="msd">Gender=Masc|Number=Plur|Person=3</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s336_n14" from="12037" to="12040">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">CCONJ</f>
+ <f name="lemma">und</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s336_n15" from="12041" to="12045">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">PRON</f>
+ <f name="lemma">mehr</f>
+ <f name="msd">Degree=Cmp|Gender=Neut|Number=Plur|Person=3|PronType=Ind,Neg,Tot</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s336_n16" from="12046" to="12050">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">AUX</f>
+ <f name="lemma">sein</f>
+ <f name="msd">Mood=Ind|Number=Plur|Person=3|Tense=Pres|VerbForm=Fin</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s336_n17" from="12051" to="12054">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">ADV</f>
+ <f name="lemma">nur</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s336_n18" from="12055" to="12060">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">ADP</f>
+ <f name="lemma">durch</f>
+ <f name="msd">AdpType=Prep|Case=Acc</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s336_n19" from="12061" to="12073">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">NOUN</f>
+ <f name="lemma">Verzeichnung</f>
+ <f name="msd">Gender=Fem|Number=Sing|Person=3</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s336_n20" from="12074" to="12081">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">ADJ</f>
+ <f name="lemma">möglich</f>
+ <f name="msd">Degree=Pos|Variant=Short</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s336_n21" from="12081" to="12082">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">PUNCT</f>
+ <f name="lemma">)</f>
+ <f name="msd">PunctType=Brck</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s336_n22" from="12082" to="12083">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">PUNCT</f>
+ <f name="lemma">,</f>
+ <f name="msd">PunctType=Comm</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s336_n23" from="12084" to="12099">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">ADV</f>
+ <f name="lemma">undandererseits</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s336_n24" from="12100" to="12103">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">DET</f>
+ <f name="lemma">die</f>
+ <f name="msd">Case=Acc|Gender=Fem|Number=Sing|PronType=Art</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s336_n25" from="12104" to="12116">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">NOUN</f>
+ <f name="lemma">Verzeichnung</f>
+ <f name="msd">Gender=Fem|Number=Sing|Person=3</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s336_n26" from="12117" to="12120">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">ADP</f>
+ <f name="lemma">für</f>
+ <f name="msd">AdpType=Prep|Case=Acc</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s336_n27" from="12121" to="12124">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">DET</f>
+ <f name="lemma">die</f>
+ <f name="msd">Case=Acc|Gender=Fem|Number=Sing|PronType=Art</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s336_n28" from="12125" to="12139">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">NOUN</f>
+ <f name="lemma">Gestaltung</f>
+ <f name="msd">Gender=Fem|Number=Sing|Person=3</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s336_n29" from="12140" to="12151">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">VERB</f>
+ <f name="lemma">einsetzen</f>
+ <f name="msd">VerbForm=Inf</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s336_n30" from="12151" to="12152">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">PUNCT</f>
+ <f name="lemma">.</f>
+ <f name="msd">PunctType=Peri</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s337_n1" from="12153" to="12156">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">ADP</f>
+ <f name="lemma">Bei</f>
+ <f name="msd">AdpType=Prep|Case=Dat</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s337_n2" from="12157" to="12169">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">NOUN</f>
+ <f name="lemma">Stecher</f>
+ <f name="msd">Case=Dat|Gender=Masc|Number=Plur|Person=3</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s337_n3" from="12170" to="12171">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">PUNCT</f>
+ <f name="lemma">(</f>
+ <f name="msd">PunctType=Brck</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s337_n4" from="12171" to="12182">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">NOUN</f>
+ <f name="lemma">Gläser</f>
+ <f name="msd">Case=Dat|Gender=Masc|Number=Plur|Person=3</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s337_n5" from="12182" to="12183">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">PUNCT</f>
+ <f name="lemma">)</f>
+ <f name="msd">PunctType=Brck</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s337_n6" from="12184" to="12187">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">ADP</f>
+ <f name="lemma">mit</f>
+ <f name="msd">AdpType=Prep|Case=Dat</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s337_n7" from="12188" to="12206">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">NOUN</f>
+ <f name="lemma">Kularen</f>
+ <f name="msd">Person=3</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s337_n8" from="12207" to="12210">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">AUX</f>
+ <f name="lemma">sein</f>
+ <f name="msd">Mood=Ind|Number=Sing|Person=3|Tense=Pres|VerbForm=Fin</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s337_n9" from="12211" to="12228">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">ADJ</f>
+ <f name="lemma">einekissenförmige</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s337_n10" from="12229" to="12241">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">NOUN</f>
+ <f name="lemma">Verzeichnung</f>
+ <f name="msd">Gender=Fem|Number=Sing|Person=3</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s337_n11" from="12242" to="12254">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">ADJ</f>
+ <f name="lemma">ausdrücklich</f>
+ <f name="msd">Degree=Pos|Variant=Short</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s337_n12" from="12255" to="12264">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">VERB</f>
+ <f name="lemma">erwünschen</f>
+ <f name="msd">Aspect=Perf|VerbForm=Part</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s337_n13" from="12264" to="12265">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">PUNCT</f>
+ <f name="lemma">,</f>
+ <f name="msd">PunctType=Comm</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s337_n14" from="12266" to="12268">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">SCONJ</f>
+ <f name="lemma">um</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s337_n15" from="12269" to="12273">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">ADP</f>
+ <f name="lemma">beim</f>
+ <f name="msd">AdpType=Prep|Case=Dat</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s337_n16" from="12274" to="12286">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">ADJ</f>
+ <f name="lemma">schwenken</f>
+ <f name="msd">Case=Gen|Gender=Neut|Number=Sing|Person=3</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s337_n17" from="12287" to="12293">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">NOUN</f>
+ <f name="lemma">Glases</f>
+ <f name="msd">Case=Gen|Gender=Neut|Number=Sing|Person=3</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s337_n18" from="12294" to="12298">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">DET</f>
+ <f name="lemma">eine</f>
+ <f name="msd">Case=Acc|Gender=Fem|Number=Sing|PronType=Art</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s337_n19" from="12299" to="12310">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">ADJ</f>
+ <f name="lemma">unangenehm</f>
+ <f name="msd">Degree=Pos|Gender=Fem|Number=Sing</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s337_n20" from="12311" to="12319">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">NOUN</f>
+ <f name="lemma">Bewegung</f>
+ <f name="msd">Gender=Fem|Number=Sing|Person=3</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s337_n21" from="12320" to="12323">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">DET</f>
+ <f name="lemma">des</f>
+ <f name="msd">Case=Gen|Gender=Masc|Number=Sing|PronType=Art</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s337_n22" from="12324" to="12337">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">NOUN</f>
+ <f name="lemma">Vordergrund</f>
+ <f name="msd">Case=Gen|Gender=Masc|Number=Sing|Person=3</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s337_n23" from="12338" to="12347">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">ADP</f>
+ <f name="lemma">gegenüber</f>
+ <f name="msd">AdpType=Prep|Case=Dat</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s337_n24" from="12348" to="12362">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">NOUN</f>
+ <f name="lemma">Hintergrund</f>
+ <f name="msd">Gender=Masc|Number=Sing|Person=3</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s337_n25" from="12363" to="12365">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">PART</f>
+ <f name="lemma">zu</f>
+ <f name="msd">PartType=Inf</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s337_n26" from="12366" to="12375">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">VERB</f>
+ <f name="lemma">vermeiden</f>
+ <f name="msd">VerbForm=Inf</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s337_n27" from="12375" to="12376">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">PUNCT</f>
+ <f name="lemma">.</f>
+ <f name="msd">PunctType=Peri</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s338_n1" from="12377" to="12380">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">DET</f>
+ <f name="lemma">Die</f>
+ <f name="msd">Case=Acc|Gender=Fem|Number=Sing|PronType=Art</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s338_n2" from="12381" to="12394">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">ADJ</f>
+ <f name="lemma">physikalisch</f>
+ <f name="msd">Degree=Pos|Gender=Fem|Number=Sing</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s338_n3" from="12395" to="12404">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">NOUN</f>
+ <f name="lemma">Grundlage</f>
+ <f name="msd">Gender=Fem|Number=Sing|Person=3</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s338_n4" from="12405" to="12412">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">ADV</f>
+ <f name="lemma">hierfür</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s338_n5" from="12413" to="12419">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">VERB</f>
+ <f name="lemma">stellen</f>
+ <f name="msd">Mood=Ind|Number=Sing|Person=3|Tense=Pres|VerbForm=Fin</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s338_n6" from="12420" to="12423">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">DET</f>
+ <f name="lemma">die</f>
+ <f name="msd">Case=Nom|Gender=Fem|Number=Sing|PronType=Art</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s338_n7" from="12424" to="12426">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">ADV</f>
+ <f name="lemma">so</f>
+ <f name="msd">Degree=Pos</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s338_n8" from="12427" to="12435">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">ADJ</f>
+ <f name="lemma">nennen</f>
+ <f name="msd">Degree=Pos|Gender=Fem|Number=Sing</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s338_n9" from="12436" to="12437">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">PUNCT</f>
+ <f name="lemma">„</f>
+ <f name="msd">PunctType=Brck</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s338_n10" from="12437" to="12452">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">NOUN</f>
+ <f name="lemma">Bedingung</f>
+ <f name="msd">Gender=Fem|Number=Sing|Person=3</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s338_n11" from="12452" to="12453">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">X</f>
+ <f name="lemma">“</f>
+ <f name="msd">Foreign=Yes|Person=3</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s338_n12" from="12454" to="12457">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">ADP</f>
+ <f name="lemma">dar</f>
+ <f name="msd">PartType=Vbp</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s338_n13" from="12457" to="12458">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">PUNCT</f>
+ <f name="lemma">,</f>
+ <f name="msd">PunctType=Comm</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s338_n14" from="12459" to="12462">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">PRON</f>
+ <f name="lemma">die</f>
+ <f name="msd">Case=Nom|Gender=Fem|Number=Sing|Person=3|PronType=Rel</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s338_n15" from="12463" to="12466">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">ADP</f>
+ <f name="lemma">bei</f>
+ <f name="msd">AdpType=Prep|Case=Dat</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s338_n16" from="12467" to="12479">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">NOUN</f>
+ <f name="lemma">Stecher</f>
+ <f name="msd">Case=Dat|Gender=Masc|Number=Plur|Person=3</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s338_n17" from="12480" to="12487">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">VERB</f>
+ <f name="lemma">erfüllen</f>
+ <f name="msd">Aspect=Perf|VerbForm=Part</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s338_n18" from="12488" to="12492">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">AUX</f>
+ <f name="lemma">sein</f>
+ <f name="msd">VerbForm=Inf</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s338_n19" from="12493" to="12497">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">AUX</f>
+ <f name="lemma">sollen</f>
+ <f name="msd">Mood=Ind|Number=Sing|Person=3|Tense=Pres|VerbForm=Fin|VerbType=Mod</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s338_n20" from="12498" to="12499">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">PUNCT</f>
+ <f name="lemma">(</f>
+ <f name="msd">PunctType=Brck</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s338_n21" from="12499" to="12501">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">ADP</f>
+ <f name="lemma">im</f>
+ <f name="msd">AdpType=Prep|Case=Dat</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s338_n22" from="12502" to="12513">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">NOUN</f>
+ <f name="lemma">Unterschied</f>
+ <f name="msd">Gender=Masc|Number=Sing|Person=3</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s338_n23" from="12514" to="12516">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">ADP</f>
+ <f name="lemma">zu</f>
+ <f name="msd">AdpType=Prep|Case=Dat</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s338_n24" from="12517" to="12520">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">DET</f>
+ <f name="lemma">der</f>
+ <f name="msd">Case=Dat|Definite=Def|Gender=Fem|Number=Sing|PronType=Art</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s338_n25" from="12521" to="12522">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">PUNCT</f>
+ <f name="lemma">„</f>
+ <f name="msd">PunctType=Brck</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s338_n26" from="12522" to="12540">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">NOUN</f>
+ <f name="lemma">Bedingung</f>
+ <f name="msd">Gender=Fem|Number=Sing|Person=3</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s338_n27" from="12540" to="12541">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">NUM</f>
+ <f name="lemma">“</f>
+ <f name="msd">Number=Plur|NumType=Card|Person=3</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s338_n28" from="12542" to="12559">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">NOUN</f>
+ <f name="lemma">toobjektivenknown</f>
+ <f name="msd">Person=3</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s338_n29" from="12559" to="12560">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">PUNCT</f>
+ <f name="lemma">)</f>
+ <f name="msd">PunctType=Brck</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s338_n30" from="12560" to="12561">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">PUNCT</f>
+ <f name="lemma">.</f>
+ <f name="msd">PunctType=Peri</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s339_n1" from="12563" to="12575">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">ADJ</f>
+ <f name="lemma">chromatisch</f>
+ <f name="msd">Degree=Pos|Gender=Fem|Number=Sing</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s339_n2" from="12576" to="12586">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">NOUN</f>
+ <f name="lemma">Aberration</f>
+ <f name="msd">Gender=Fem|Number=Sing|Person=3</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s339_n3" from="12588" to="12592">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">PROPN</f>
+ <f name="lemma">mini</f>
+ <f name="msd">Person=3</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s339_n4" from="12592" to="12593">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">X</f>
+ <f name="lemma">|</f>
+ <f name="msd">Foreign=Yes|Person=3</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s339_n5" from="12593" to="12605">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">ADJ</f>
+ <f name="lemma">chromatisch</f>
+ <f name="msd">Degree=Pos|Gender=Fem|Number=Sing</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s339_n6" from="12606" to="12616">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">NOUN</f>
+ <f name="lemma">Aberration</f>
+ <f name="msd">Gender=Fem|Number=Sing|Person=3</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s339_n7" from="12617" to="12620">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">DET</f>
+ <f name="lemma">Der</f>
+ <f name="msd">Case=Nom|Gender=Masc|Number=Sing|PronType=Art</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s339_n8" from="12621" to="12635">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">NOUN</f>
+ <f name="lemma">Index</f>
+ <f name="msd">Gender=Masc|Number=Sing|Person=3</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s339_n9" from="12636" to="12639">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">ADP</f>
+ <f name="lemma">von</f>
+ <f name="msd">AdpType=Prep|Case=Dat</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s339_n10" from="12640" to="12649">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">ADJ</f>
+ <f name="lemma">optisch</f>
+ <f name="msd">Case=Dat|Degree=Pos|Number=Sing</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s339_n11" from="12650" to="12654">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">NOUN</f>
+ <f name="lemma">Glas</f>
+ <f name="msd">Gender=Neut|Number=Sing|Person=3</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s339_n12" from="12655" to="12660">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">VERB</f>
+ <f name="lemma">hängen</f>
+ <f name="msd">Mood=Ind|Number=Sing|Person=3|Tense=Pres|VerbForm=Fin</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s339_n13" from="12661" to="12664">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">ADP</f>
+ <f name="lemma">von</f>
+ <f name="msd">AdpType=Prep|Case=Dat</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s339_n14" from="12665" to="12668">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">DET</f>
+ <f name="lemma">der</f>
+ <f name="msd">Case=Dat|Gender=Fem|Number=Sing|PronType=Art</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s339_n15" from="12669" to="12680">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">NOUN</f>
+ <f name="lemma">Wellenlänge</f>
+ <f name="msd">Gender=Fem|Number=Sing|Person=3</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s339_n16" from="12682" to="12685">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">DET</f>
+ <f name="lemma">des</f>
+ <f name="msd">Case=Gen|Gender=Neut|Number=Sing|PronType=Art</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s339_n17" from="12686" to="12704">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">PROPN</f>
+ <f name="lemma">Fallendenlicht</f>
+ <f name="msd">Person=3</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s339_n18" from="12705" to="12707">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">ADP</f>
+ <f name="lemma">ab</f>
+ <f name="msd">PartType=Vbp</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s339_n19" from="12707" to="12708">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">PUNCT</f>
+ <f name="lemma">.</f>
+ <f name="msd">PunctType=Peri</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s340_n1" from="12709" to="12714">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">DET</f>
+ <f name="lemma">dies</f>
+ <f name="msd">Case=Nom|Gender=Fem|Number=Sing|PronType=Dem</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s340_n2" from="12715" to="12726">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">NOUN</f>
+ <f name="lemma">Erscheinung</f>
+ <f name="msd">Gender=Fem|Number=Sing|Person=3</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s340_n3" from="12727" to="12731">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">AUX</f>
+ <f name="lemma">werden</f>
+ <f name="msd">Mood=Ind|Number=Sing|Person=3|Tense=Pres|VerbForm=Fin</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s340_n4" from="12732" to="12742">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">NOUN</f>
+ <f name="lemma">unknown</f>
+ <f name="msd">Person=3</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s340_n5" from="12743" to="12750">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">VERB</f>
+ <f name="lemma">nennen</f>
+ <f name="msd">Aspect=Perf|VerbForm=Part</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s340_n6" from="12750" to="12751">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">PUNCT</f>
+ <f name="lemma">.</f>
+ <f name="msd">PunctType=Peri</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s341_n1" from="12752" to="12755">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">PRON</f>
+ <f name="lemma">Sie</f>
+ <f name="msd">Case=Nom|Gender=Fem|Number=Sing|Person=3|PronType=Prs</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s341_n2" from="12756" to="12759">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">AUX</f>
+ <f name="lemma">sein</f>
+ <f name="msd">Mood=Ind|Number=Sing|Person=3|Tense=Pres|VerbForm=Fin</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s341_n3" from="12760" to="12763">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">DET</f>
+ <f name="lemma">die</f>
+ <f name="msd">Case=Nom|Gender=Fem|Number=Sing|PronType=Art</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s341_n4" from="12764" to="12771">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">NOUN</f>
+ <f name="lemma">Ursache</f>
+ <f name="msd">Gender=Fem|Number=Sing|Person=3</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s341_n5" from="12772" to="12775">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">ADP</f>
+ <f name="lemma">für</f>
+ <f name="msd">AdpType=Prep|Case=Acc</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s341_n6" from="12776" to="12779">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">DET</f>
+ <f name="lemma">die</f>
+ <f name="msd">Case=Acc|Gender=Fem|Number=Sing|PronType=Art</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s341_n7" from="12780" to="12792">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">ADJ</f>
+ <f name="lemma">chromatisch</f>
+ <f name="msd">Degree=Pos|Gender=Fem|Number=Sing</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s341_n8" from="12793" to="12803">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">NOUN</f>
+ <f name="lemma">Ration</f>
+ <f name="msd">Gender=Fem|Number=Sing|Person=3</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s341_n9" from="12803" to="12804">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">PUNCT</f>
+ <f name="lemma">.</f>
+ <f name="msd">PunctType=Peri</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s342_n1" from="12806" to="12820">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">NOUN</f>
+ <f name="lemma">Fehler</f>
+ <f name="msd">Gender=Masc|Number=Sing|Person=3</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s342_n2" from="12822" to="12826">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">PROPN</f>
+ <f name="lemma">mini</f>
+ <f name="msd">Person=3</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s342_n3" from="12826" to="12827">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">X</f>
+ <f name="lemma">|</f>
+ <f name="msd">Foreign=Yes|Person=3</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s342_n4" from="12827" to="12835">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">ADJ</f>
+ <f name="lemma">hochkant</f>
+ <f name="msd">Degree=Pos|Variant=Short</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s342_n5" from="12835" to="12836">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">NOUN</f>
+ <f name="lemma">|</f>
+ <f name="msd">Foreign=Yes|Person=3</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s342_n6" from="12836" to="12850">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">NOUN</f>
+ <f name="lemma">Fehler</f>
+ <f name="msd">Gender=Masc|Number=Plur|Person=3</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s342_n7" from="12850" to="12851">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">PUNCT</f>
+ <f name="lemma">,</f>
+ <f name="msd">PunctType=Comm</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s342_n8" from="12851" to="12873">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">NOUN</f>
+ <f name="lemma">Vergrösserung</f>
+ <f name="msd">Gender=Fem|Number=Sing|Person=3</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s342_n9" from="12874" to="12877">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">DET</f>
+ <f name="lemma">Der</f>
+ <f name="msd">Case=Nom|Gender=Masc|Number=Sing|PronType=Art</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s342_n10" from="12878" to="12892">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">NOUN</f>
+ <f name="lemma">Index</f>
+ <f name="msd">Gender=Masc|Number=Sing|Person=3</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s342_n11" from="12893" to="12896">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">DET</f>
+ <f name="lemma">der</f>
+ <f name="msd">Case=Gen|Number=Plur|PronType=Art</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s342_n12" from="12897" to="12903">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">NOUN</f>
+ <f name="lemma">Linse</f>
+ <f name="msd">Gender=Fem|Number=Plur|Person=3</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s342_n13" from="12904" to="12909">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">DET</f>
+ <f name="lemma">eines</f>
+ <f name="msd">Case=Gen|Gender=Neut|Number=Sing|PronType=Art</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s342_n14" from="12910" to="12919">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">ADJ</f>
+ <f name="lemma">optisch</f>
+ <f name="msd">Degree=Pos|Number=Sing</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s342_n15" from="12920" to="12927">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">NOUN</f>
+ <f name="lemma">System</f>
+ <f name="msd">Case=Gen|Gender=Neut|Number=Sing|Person=3</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s342_n16" from="12928" to="12939">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">VERB</f>
+ <f name="lemma">beeinflussen</f>
+ <f name="msd">Mood=Ind|Number=Sing|Person=3|Tense=Pres|VerbForm=Fin</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s342_n17" from="12940" to="12943">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">DET</f>
+ <f name="lemma">den</f>
+ <f name="msd">Case=Acc|Gender=Masc|Number=Sing|PronType=Art</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s342_n18" from="12944" to="12961">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">NOUN</f>
+ <f name="lemma">Massstab</f>
+ <f name="msd">Gender=Masc|Number=Sing|Person=3</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s342_n19" from="12961" to="12962">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">PUNCT</f>
+ <f name="lemma">,</f>
+ <f name="msd">PunctType=Comm</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s342_n20" from="12963" to="12966">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">PRON</f>
+ <f name="lemma">der</f>
+ <f name="msd">Case=Nom|Gender=Masc|Number=Sing|Person=3|PronType=Rel</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s342_n21" from="12967" to="12972">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">ADV</f>
+ <f name="lemma">somit</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s342_n22" from="12973" to="12976">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">ADP</f>
+ <f name="lemma">von</f>
+ <f name="msd">AdpType=Prep|Case=Dat</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s342_n23" from="12977" to="12991">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">NOUN</f>
+ <f name="lemma">Wellenlänge</f>
+ <f name="msd">Gender=Fem|Number=Sing|Person=3</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s342_n24" from="12992" to="12999">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">VERB</f>
+ <f name="lemma">abhängen</f>
+ <f name="msd">Mood=Ind|Number=Sing|Person=3|Tense=Pres|VerbForm=Fin</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s342_n25" from="12999" to="13000">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">PUNCT</f>
+ <f name="lemma">.</f>
+ <f name="msd">PunctType=Peri</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s343_n1" from="13001" to="13004">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">DET</f>
+ <f name="lemma">Die</f>
+ <f name="msd">Case=Nom|Number=Plur|PronType=Art</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s343_n2" from="13005" to="13015">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">NOUN</f>
+ <f name="lemma">Bild</f>
+ <f name="msd">Gender=Neut|Number=Plur|Person=3</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s343_n3" from="13015" to="13016">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">PUNCT</f>
+ <f name="lemma">,</f>
+ <f name="msd">PunctType=Comm</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s343_n4" from="13017" to="13020">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">PRON</f>
+ <f name="lemma">die</f>
+ <f name="msd">Case=Nom|Number=Plur|Person=3|PronType=Rel</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s343_n5" from="13021" to="13024">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">ADP</f>
+ <f name="lemma">vom</f>
+ <f name="msd">AdpType=Prep|Case=Dat</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s343_n6" from="13025" to="13030">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">NOUN</f>
+ <f name="lemma">Licht</f>
+ <f name="msd">Gender=Neut|Number=Sing|Person=3</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s343_n7" from="13031" to="13048">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">ADJ</f>
+ <f name="lemma">unterschiedlich</f>
+ <f name="msd">Case=Gen|Degree=Pos|Number=Plur</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s343_n8" from="13049" to="13068">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">NOUN</f>
+ <f name="lemma">Ebild</f>
+ <f name="msd">Gender=Neut|Number=Plur|Person=3</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s343_n9" from="13069" to="13075">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">AUX</f>
+ <f name="lemma">werden</f>
+ <f name="msd">Mood=Ind|Number=Plur|Person=3|Tense=Pres|VerbForm=Fin</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s343_n10" from="13075" to="13076">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">PUNCT</f>
+ <f name="lemma">,</f>
+ <f name="msd">PunctType=Comm</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s343_n11" from="13077" to="13081">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">AUX</f>
+ <f name="lemma">sein</f>
+ <f name="msd">Mood=Ind|Number=Plur|Person=3|Tense=Pres|VerbForm=Fin</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s343_n12" from="13082" to="13089">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">ADV</f>
+ <f name="lemma">dadurch</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s343_n13" from="13090" to="13101">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">ADJ</f>
+ <f name="lemma">verscheiden</f>
+ <f name="msd">Degree=Pos|Variant=Short</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s343_n14" from="13102" to="13106">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">ADJ</f>
+ <f name="lemma">groß</f>
+ <f name="msd">Degree=Pos|Variant=Short</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s343_n15" from="13106" to="13107">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">PUNCT</f>
+ <f name="lemma">.</f>
+ <f name="msd">PunctType=Peri</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s344_n1" from="13108" to="13114">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">DET</f>
+ <f name="lemma">dies</f>
+ <f name="msd">Case=Acc|Gender=Masc|Number=Sing|PronType=Dem</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s344_n2" from="13115" to="13121">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">NOUN</f>
+ <f name="lemma">Effekt</f>
+ <f name="msd">Gender=Masc|Number=Sing|Person=3</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s344_n3" from="13122" to="13127">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">VERB</f>
+ <f name="lemma">nennen</f>
+ <f name="msd">Mood=Ind|Number=Sing|Person=3|Tense=Pres|VerbForm=Fin</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s344_n4" from="13128" to="13131">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">PRON</f>
+ <f name="lemma">man</f>
+ <f name="msd">Case=Nom|Number=Sing|Person=3|PronType=Ind,Neg,Tot</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s344_n5" from="13132" to="13146">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">NOUN</f>
+ <f name="lemma">Fehler</f>
+ <f name="msd">Gender=Masc|Number=Plur|Person=3</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s344_n6" from="13146" to="13147">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">PUNCT</f>
+ <f name="lemma">.</f>
+ <f name="msd">PunctType=Peri</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s345_n1" from="13148" to="13150">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">PRON</f>
+ <f name="lemma">Er</f>
+ <f name="msd">Case=Nom|Gender=Masc|Number=Sing|Person=3|PronType=Prs</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s345_n2" from="13151" to="13158">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">VERB</f>
+ <f name="lemma">bewirken</f>
+ <f name="msd">Mood=Ind|Number=Sing|Person=3|Tense=Pres|VerbForm=Fin</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s345_n3" from="13159" to="13168">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">NOUN</f>
+ <f name="lemma">Säume</f>
+ <f name="msd">Gender=Masc|Number=Plur|Person=3</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s345_n4" from="13169" to="13171">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">ADP</f>
+ <f name="lemma">an</f>
+ <f name="msd">AdpType=Prep|Case=Dat</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s345_n5" from="13172" to="13178">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">NOUN</f>
+ <f name="lemma">Kante</f>
+ <f name="msd">Gender=Fem|Number=Plur|Person=3</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s345_n6" from="13179" to="13182">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">DET</f>
+ <f name="lemma">des</f>
+ <f name="msd">Case=Gen|Gender=Neut|Number=Sing|PronType=Art</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s345_n7" from="13183" to="13193">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">NOUN</f>
+ <f name="lemma">Motiv</f>
+ <f name="msd">Case=Gen|Gender=Neut|Number=Sing|Person=3</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s345_n8" from="13193" to="13194">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">PUNCT</f>
+ <f name="lemma">,</f>
+ <f name="msd">PunctType=Comm</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s345_n9" from="13195" to="13200">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">SCONJ</f>
+ <f name="lemma">falls</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s345_n10" from="13201" to="13211">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">ADV</f>
+ <f name="lemma">diesenicht</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s345_n11" from="13212" to="13218">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">ADJ</f>
+ <f name="lemma">radial</f>
+ <f name="msd">Degree=Pos|Variant=Short</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s345_n12" from="13219" to="13228">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">VERB</f>
+ <f name="lemma">verlaufen</f>
+ <f name="msd">Mood=Ind|Number=Plur|Person=3|Tense=Pres|VerbForm=Fin</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s345_n13" from="13228" to="13229">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">PUNCT</f>
+ <f name="lemma">,</f>
+ <f name="msd">PunctType=Comm</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s345_n14" from="13230" to="13233">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">CCONJ</f>
+ <f name="lemma">und</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s345_n15" from="13234" to="13238">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">DET</f>
+ <f name="lemma">eine</f>
+ <f name="msd">Case=Nom|Gender=Fem|Number=Sing|PronType=Art</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s345_n16" from="13239" to="13248">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">NOUN</f>
+ <f name="lemma">Unschärfe</f>
+ <f name="msd">Gender=Fem|Number=Sing|Person=3</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s345_n17" from="13249" to="13252">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">DET</f>
+ <f name="lemma">des</f>
+ <f name="msd">Case=Gen|Gender=Neut|Number=Sing|PronType=Art</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s345_n18" from="13253" to="13259">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">NOUN</f>
+ <f name="lemma">Bild</f>
+ <f name="msd">Case=Gen|Gender=Neut|Number=Sing|Person=3</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s345_n19" from="13259" to="13260">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">PUNCT</f>
+ <f name="lemma">.</f>
+ <f name="msd">PunctType=Peri</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s346_n1" from="13261" to="13264">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">DET</f>
+ <f name="lemma">Die</f>
+ <f name="msd">Case=Nom|Gender=Fem|Number=Sing|PronType=Art</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s346_n2" from="13265" to="13271">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">NOUN</f>
+ <f name="lemma">Breite</f>
+ <f name="msd">Gender=Fem|Number=Sing|Person=3</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s346_n3" from="13272" to="13275">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">DET</f>
+ <f name="lemma">der</f>
+ <f name="msd">Case=Gen|Number=Plur|PronType=Art</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s346_n4" from="13276" to="13285">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">NOUN</f>
+ <f name="lemma">Säume</f>
+ <f name="msd">Gender=Masc|Number=Plur|Person=3</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s346_n5" from="13286" to="13289">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">AUX</f>
+ <f name="lemma">sein</f>
+ <f name="msd">Mood=Ind|Number=Sing|Person=3|Tense=Pres|VerbForm=Fin</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s346_n6" from="13290" to="13302">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">ADJ</f>
+ <f name="lemma">proportional</f>
+ <f name="msd">Degree=Pos|Variant=Short</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s346_n7" from="13303" to="13306">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">ADP</f>
+ <f name="lemma">zum</f>
+ <f name="msd">AdpType=Prep|Case=Dat</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s346_n8" from="13307" to="13314">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">NOUN</f>
+ <f name="lemma">Abstand</f>
+ <f name="msd">Gender=Masc|Number=Sing|Person=3</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s346_n9" from="13315" to="13318">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">ADP</f>
+ <f name="lemma">von</f>
+ <f name="msd">AdpType=Prep|Case=Dat</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s346_n10" from="13319" to="13331">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">NOUN</f>
+ <f name="lemma">Bildmitte</f>
+ <f name="msd">Gender=Fem|Number=Sing|Person=3</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s346_n11" from="13331" to="13332">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">PUNCT</f>
+ <f name="lemma">.</f>
+ <f name="msd">PunctType=Peri</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s347_n1" from="13334" to="13349">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">NOUN</f>
+ <f name="lemma">Fehler</f>
+ <f name="msd">Gender=Masc|Number=Sing|Person=3</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s347_n2" from="13351" to="13355">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">PROPN</f>
+ <f name="lemma">mini</f>
+ <f name="msd">Person=3</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s347_n3" from="13355" to="13356">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">X</f>
+ <f name="lemma">|</f>
+ <f name="msd">Foreign=Yes|Person=3</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s347_n4" from="13356" to="13364">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">ADJ</f>
+ <f name="lemma">hochkant</f>
+ <f name="msd">Degree=Pos|Variant=Short</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s347_n5" from="13364" to="13365">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">X</f>
+ <f name="lemma">|</f>
+ <f name="msd">Foreign=Yes|Person=3</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s347_n6" from="13365" to="13380">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">NOUN</f>
+ <f name="lemma">Fehler</f>
+ <f name="msd">Gender=Masc|Number=Plur|Person=3</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s347_n7" from="13380" to="13381">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">PUNCT</f>
+ <f name="lemma">:</f>
+ <f name="msd">PunctType=Peri</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s347_n8" from="13382" to="13386">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">ADJ</f>
+ <f name="lemma">rot</f>
+ <f name="msd">Degree=Pos|Number=Plur</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s347_n9" from="13387" to="13396">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">NOUN</f>
+ <f name="lemma">Säume</f>
+ <f name="msd">Gender=Masc|Number=Plur|Person=3</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s347_n10" from="13397" to="13400">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">ADP</f>
+ <f name="lemma">vor</f>
+ <f name="msd">AdpType=Prep|Case=Dat</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s347_n11" from="13401" to="13416">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">ADJ</f>
+ <f name="lemma">dereigentlichen</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s347_n12" from="13417" to="13429">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">NOUN</f>
+ <f name="lemma">Ebene</f>
+ <f name="msd">Gender=Fem|Number=Sing|Person=3</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s347_n13" from="13429" to="13430">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">PUNCT</f>
+ <f name="lemma">,</f>
+ <f name="msd">PunctType=Comm</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s347_n14" from="13431" to="13436">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">ADJ</f>
+ <f name="lemma">grün</f>
+ <f name="msd">Degree=Pos|Number=Plur</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s347_n15" from="13437" to="13445">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">ADV</f>
+ <f name="lemma">dahinter</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s347_n16" from="13446" to="13450">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">ADV</f>
+ <f name="lemma">Auch</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s347_n17" from="13451" to="13454">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">DET</f>
+ <f name="lemma">die</f>
+ <f name="msd">Case=Nom|Gender=Fem|Number=Sing|PronType=Art</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s347_n18" from="13455" to="13467">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">NOUN</f>
+ <f name="lemma">Weite</f>
+ <f name="msd">Gender=Fem|Number=Sing|Person=3</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s347_n19" from="13468" to="13471">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">DET</f>
+ <f name="lemma">des</f>
+ <f name="msd">Case=Gen|Gender=Neut|Number=Sing|PronType=Art</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s347_n20" from="13472" to="13479">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">NOUN</f>
+ <f name="lemma">System</f>
+ <f name="msd">Case=Gen|Gender=Neut|Number=Sing|Person=3</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s347_n21" from="13479" to="13480">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">PUNCT</f>
+ <f name="lemma">,</f>
+ <f name="msd">PunctType=Comm</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s347_n22" from="13481" to="13484">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">CCONJ</f>
+ <f name="lemma">und</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s347_n23" from="13485" to="13490">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">ADV</f>
+ <f name="lemma">damit</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s347_n24" from="13491" to="13494">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">DET</f>
+ <f name="lemma">der</f>
+ <f name="msd">Case=Nom|Gender=Masc|Number=Sing|PronType=Art</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s347_n25" from="13495" to="13502">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">NOUN</f>
+ <f name="lemma">Abstand</f>
+ <f name="msd">Gender=Masc|Number=Sing|Person=3</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s347_n26" from="13503" to="13506">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">DET</f>
+ <f name="lemma">des</f>
+ <f name="msd">Case=Gen|Gender=Masc|Number=Sing|PronType=Art</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s347_n27" from="13507" to="13516">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">NOUN</f>
+ <f name="lemma">Desvon</f>
+ <f name="msd">Person=3</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s347_n28" from="13517" to="13520">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">DET</f>
+ <f name="lemma">der</f>
+ <f name="msd">Case=Gen|Gender=Fem|Number=Sing|PronType=Art</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s347_n29" from="13521" to="13528">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">ADJ</f>
+ <f name="lemma">NULL</f>
+ <f name="msd">Degree=Sup|Number=Sing</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s347_n30" from="13529" to="13535">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">NOUN</f>
+ <f name="lemma">Fläche</f>
+ <f name="msd">Gender=Fem|Number=Sing|Person=3</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s347_n31" from="13536" to="13539">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">DET</f>
+ <f name="lemma">des</f>
+ <f name="msd">Case=Gen|Gender=Neut|Number=Sing|PronType=Art</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s347_n32" from="13540" to="13547">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">NOUN</f>
+ <f name="lemma">System</f>
+ <f name="msd">Case=Gen|Gender=Neut|Number=Sing|Person=3</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s347_n33" from="13547" to="13548">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">PUNCT</f>
+ <f name="lemma">,</f>
+ <f name="msd">PunctType=Comm</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s347_n34" from="13549" to="13552">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">AUX</f>
+ <f name="lemma">sein</f>
+ <f name="msd">Mood=Ind|Number=Sing|Person=3|Tense=Pres|VerbForm=Fin</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s347_n35" from="13553" to="13556">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">ADP</f>
+ <f name="lemma">vom</f>
+ <f name="msd">AdpType=Prep|Case=Dat</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s347_n36" from="13557" to="13571">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">NOUN</f>
+ <f name="lemma">Index</f>
+ <f name="msd">Gender=Masc|Number=Sing|Person=3</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s347_n37" from="13572" to="13575">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">DET</f>
+ <f name="lemma">der</f>
+ <f name="msd">Case=Gen|Gender=Fem|Number=Sing|PronType=Art</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s347_n38" from="13576" to="13585">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">NOUN</f>
+ <f name="lemma">Nund</f>
+ <f name="msd">Gender=Fem|Number=Sing|Person=3</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s347_n39" from="13586" to="13591">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">ADV</f>
+ <f name="lemma">somit</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s347_n40" from="13592" to="13595">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">ADP</f>
+ <f name="lemma">von</f>
+ <f name="msd">AdpType=Prep|Case=Dat</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s347_n41" from="13596" to="13599">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">DET</f>
+ <f name="lemma">der</f>
+ <f name="msd">Case=Dat|Gender=Fem|Number=Sing|PronType=Art</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s347_n42" from="13600" to="13611">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">NOUN</f>
+ <f name="lemma">Wellenlänge</f>
+ <f name="msd">Gender=Fem|Number=Sing|Person=3</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s347_n43" from="13612" to="13615">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">DET</f>
+ <f name="lemma">des</f>
+ <f name="msd">Case=Gen|Gender=Neut|Number=Sing|PronType=Art</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s347_n44" from="13616" to="13622">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">NOUN</f>
+ <f name="lemma">Licht</f>
+ <f name="msd">Case=Gen|Gender=Neut|Number=Sing|Person=3</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s347_n45" from="13623" to="13631">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">ADJ</f>
+ <f name="lemma">abhängig</f>
+ <f name="msd">Degree=Pos|Variant=Short</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s347_n46" from="13631" to="13632">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">PUNCT</f>
+ <f name="lemma">.</f>
+ <f name="msd">PunctType=Peri</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s348_n1" from="13633" to="13640">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">ADV</f>
+ <f name="lemma">Dadurch</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s348_n2" from="13641" to="13645">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">AUX</f>
+ <f name="lemma">können</f>
+ <f name="msd">Mood=Ind|Number=Sing|Person=3|Tense=Pres|VerbForm=Fin|VerbType=Mod</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s348_n3" from="13646" to="13649">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">PRON</f>
+ <f name="lemma">man</f>
+ <f name="msd">Case=Nom|Number=Sing|Person=3|PronType=Ind,Neg,Tot</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s348_n4" from="13650" to="13653">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">DET</f>
+ <f name="lemma">die</f>
+ <f name="msd">Case=Acc|Number=Plur|PronType=Art</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s348_n5" from="13654" to="13664">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">NOUN</f>
+ <f name="lemma">Bild</f>
+ <f name="msd">Gender=Neut|Number=Plur|Person=3</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s348_n6" from="13665" to="13682">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">ADJ</f>
+ <f name="lemma">unterschiedlich</f>
+ <f name="msd">Degree=Pos|Gender=Fem|Number=Sing</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s348_n7" from="13683" to="13694">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">NOUN</f>
+ <f name="lemma">Farbennicht</f>
+ <f name="msd">Gender=Fem|Number=Sing|Person=3</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s348_n8" from="13695" to="13707">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">ADJ</f>
+ <f name="lemma">gleichzeitig</f>
+ <f name="msd">Degree=Pos|Variant=Short</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s348_n9" from="13708" to="13714">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">ADJ</f>
+ <f name="lemma">scharf</f>
+ <f name="msd">Degree=Pos|Variant=Short</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s348_n10" from="13715" to="13724">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">VERB</f>
+ <f name="lemma">auffangen</f>
+ <f name="msd">VerbForm=Inf</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s348_n11" from="13724" to="13725">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">PUNCT</f>
+ <f name="lemma">,</f>
+ <f name="msd">PunctType=Comm</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s348_n12" from="13726" to="13730">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">SCONJ</f>
+ <f name="lemma">weil</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s348_n13" from="13731" to="13734">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">PRON</f>
+ <f name="lemma">sie</f>
+ <f name="msd">Case=Nom|Number=Plur|Person=3|PronType=Prs</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s348_n14" from="13735" to="13737">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">ADP</f>
+ <f name="lemma">an</f>
+ <f name="msd">AdpType=Prep|Case=Dat</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s348_n15" from="13738" to="13761">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">PROPN</f>
+ <f name="lemma">Chiedenenposition</f>
+ <f name="msd">Person=3</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s348_n16" from="13762" to="13768">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">VERB</f>
+ <f name="lemma">stehen</f>
+ <f name="msd">Mood=Ind|Number=Plur|Person=3|Tense=Pres|VerbForm=Fin</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s348_n17" from="13768" to="13769">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">PUNCT</f>
+ <f name="lemma">.</f>
+ <f name="msd">PunctType=Peri</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s349_n1" from="13770" to="13774">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">PRON</f>
+ <f name="lemma">Dies</f>
+ <f name="msd">Case=Acc|Gender=Neut|Number=Sing|Person=3|PronType=Dem</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s349_n2" from="13775" to="13780">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">VERB</f>
+ <f name="lemma">nennen</f>
+ <f name="msd">Mood=Ind|Number=Sing|Person=3|Tense=Pres|VerbForm=Fin</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s349_n3" from="13781" to="13784">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">PRON</f>
+ <f name="lemma">man</f>
+ <f name="msd">Case=Nom|Number=Sing|Person=3|PronType=Ind,Neg,Tot</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s349_n4" from="13785" to="13800">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">NOUN</f>
+ <f name="lemma">Fehler</f>
+ <f name="msd">Gender=Masc|Number=Plur|Person=3</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s349_n5" from="13800" to="13801">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">PUNCT</f>
+ <f name="lemma">.</f>
+ <f name="msd">PunctType=Peri</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s350_n1" from="13802" to="13804">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">PRON</f>
+ <f name="lemma">Es</f>
+ <f name="msd">Case=Nom|Gender=Neut|Number=Sing|Person=3|PronType=Prs</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s350_n2" from="13805" to="13813">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">VERB</f>
+ <f name="lemma">entstehen</f>
+ <f name="msd">Mood=Ind|Number=Sing|Person=3|Tense=Pres|VerbForm=Fin</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s350_n3" from="13814" to="13818">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">DET</f>
+ <f name="lemma">eine</f>
+ <f name="msd">Case=Nom|Gender=Fem|Number=Sing|PronType=Art</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s350_n4" from="13819" to="13828">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">NOUN</f>
+ <f name="lemma">Unschärfe</f>
+ <f name="msd">Gender=Fem|Number=Sing|Person=3</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s350_n5" from="13828" to="13829">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">PUNCT</f>
+ <f name="lemma">,</f>
+ <f name="msd">PunctType=Comm</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s350_n6" from="13830" to="13833">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">PRON</f>
+ <f name="lemma">die</f>
+ <f name="msd">Case=Nom|Gender=Fem|Number=Sing|Person=3|PronType=Rel</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s350_n7" from="13834" to="13839">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">PART</f>
+ <f name="lemma">nicht</f>
+ <f name="msd">Polarity=Neg</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s350_n8" from="13840" to="13843">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">ADP</f>
+ <f name="lemma">von</f>
+ <f name="msd">AdpType=Prep|Case=Dat</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s350_n9" from="13844" to="13847">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">DET</f>
+ <f name="lemma">der</f>
+ <f name="msd">Case=Dat|Gender=Fem|Number=Sing|PronType=Art</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s350_n10" from="13848" to="13863">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">NOUN</f>
+ <f name="lemma">Bhängt</f>
+ <f name="msd">Gender=Fem|Number=Sing|Person=3</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s350_n11" from="13863" to="13864">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">PUNCT</f>
+ <f name="lemma">.</f>
+ <f name="msd">PunctType=Peri</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s351_n1" from="13866" to="13876">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">NOUN</f>
+ <f name="lemma">Gaussfehler</f>
+ <f name="msd">Gender=Masc|Number=Sing|Person=3</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s351_n2" from="13878" to="13881">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">DET</f>
+ <f name="lemma">Die</f>
+ <f name="msd">Case=Nom|Gender=Fem|Number=Sing|PronType=Art</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s351_n3" from="13882" to="13892">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">NOUN</f>
+ <f name="lemma">unknown</f>
+ <f name="msd">Person=3</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s351_n4" from="13893" to="13896">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">DET</f>
+ <f name="lemma">der</f>
+ <f name="msd">Case=Gen|Number=Plur|PronType=Art</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s351_n5" from="13897" to="13906">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">ADJ</f>
+ <f name="lemma">optisch</f>
+ <f name="msd">Degree=Pos|Number=Plur</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s351_n6" from="13907" to="13913">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">NOUN</f>
+ <f name="lemma">Gläser</f>
+ <f name="msd">Gender=Masc|Number=Plur|Person=3</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s351_n7" from="13914" to="13921">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">VERB</f>
+ <f name="lemma">bewirken</f>
+ <f name="msd">Mood=Ind|Number=Sing|Person=3|Tense=Pres|VerbForm=Fin</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s351_n8" from="13922" to="13926">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">DET</f>
+ <f name="lemma">eine</f>
+ <f name="msd">Case=Acc|Gender=Fem|Number=Sing|PronType=Art</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s351_n9" from="13927" to="13939">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">NOUN</f>
+ <f name="lemma">Variationder</f>
+ <f name="msd">Person=3</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s351_n10" from="13940" to="13947">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">ADJ</f>
+ <f name="lemma">übrig</f>
+ <f name="msd">Case=Acc|Degree=Pos|Gender=Masc|Number=Sing</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s351_n11" from="13948" to="13964">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">NOUN</f>
+ <f name="lemma">Fehler</f>
+ <f name="msd">Gender=Masc|Number=Plur|Person=3</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s351_n12" from="13965" to="13968">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">ADP</f>
+ <f name="lemma">mit</f>
+ <f name="msd">AdpType=Prep|Case=Dat</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s351_n13" from="13969" to="13972">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">DET</f>
+ <f name="lemma">der</f>
+ <f name="msd">Case=Dat|Gender=Fem|Number=Sing|PronType=Art</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s351_n14" from="13973" to="13984">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">NOUN</f>
+ <f name="lemma">Wellenlänge</f>
+ <f name="msd">Gender=Fem|Number=Sing|Person=3</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s351_n15" from="13984" to="13985">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">PUNCT</f>
+ <f name="lemma">.</f>
+ <f name="msd">PunctType=Peri</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s352_n1" from="13986" to="13990">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">SCONJ</f>
+ <f name="lemma">Wenn</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s352_n2" from="13991" to="13994">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">DET</f>
+ <f name="lemma">die</f>
+ <f name="msd">Case=Nom|Gender=Fem|Number=Sing|PronType=Art</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s352_n3" from="13995" to="13999">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">NOUN</f>
+ <f name="lemma">Koma</f>
+ <f name="msd">Gender=Fem|Number=Sing|Person=3</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s352_n4" from="14000" to="14003">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">ADP</f>
+ <f name="lemma">für</f>
+ <f name="msd">AdpType=Prep|Case=Acc</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s352_n5" from="14004" to="14010">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">ADJ</f>
+ <f name="lemma">grün</f>
+ <f name="msd">Degree=Pos|Gender=Neut|Number=Sing</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s352_n6" from="14011" to="14016">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">NOUN</f>
+ <f name="lemma">Licht</f>
+ <f name="msd">Gender=Neut|Number=Sing|Person=3</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s352_n7" from="14017" to="14027">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">VERB</f>
+ <f name="lemma">korrigieren</f>
+ <f name="msd">Aspect=Perf|VerbForm=Part</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s352_n8" from="14028" to="14031">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">AUX</f>
+ <f name="lemma">sein</f>
+ <f name="msd">Mood=Ind|Number=Sing|Person=3|Tense=Pres|VerbForm=Fin</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s352_n9" from="14031" to="14032">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">PUNCT</f>
+ <f name="lemma">,</f>
+ <f name="msd">PunctType=Comm</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s352_n10" from="14033" to="14037">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">AUX</f>
+ <f name="lemma">können</f>
+ <f name="msd">Mood=Ind|Number=Sing|Person=3|Tense=Pres|VerbForm=Fin|VerbType=Mod</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s352_n11" from="14038" to="14041">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">PRON</f>
+ <f name="lemma">sie</f>
+ <f name="msd">Case=Nom|Gender=Fem|Number=Sing|Person=3|PronType=Prs</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s352_n12" from="14042" to="14050">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">ADJ</f>
+ <f name="lemma">fürrot</f>
+ <f name="msd">Degree=Pos|Gender=Neut|Number=Sing</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s352_n13" from="14051" to="14054">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">CCONJ</f>
+ <f name="lemma">und</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s352_n14" from="14055" to="14061">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">ADJ</f>
+ <f name="lemma">blau</f>
+ <f name="msd">Degree=Pos|Gender=Neut|Number=Sing</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s352_n15" from="14062" to="14067">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">NOUN</f>
+ <f name="lemma">Licht</f>
+ <f name="msd">Gender=Neut|Number=Sing|Person=3</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s352_n16" from="14068" to="14076">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">ADV</f>
+ <f name="lemma">trotzdem</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s352_n17" from="14077" to="14086">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">ADJ</f>
+ <f name="lemma">vorhanden</f>
+ <f name="msd">Degree=Pos|Variant=Short</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s352_n18" from="14087" to="14091">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">AUX</f>
+ <f name="lemma">sein</f>
+ <f name="msd">VerbForm=Inf</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s352_n19" from="14091" to="14092">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">PUNCT</f>
+ <f name="lemma">.</f>
+ <f name="msd">PunctType=Peri</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s353_n1" from="14093" to="14099">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">DET</f>
+ <f name="lemma">dies</f>
+ <f name="msd">Case=Nom|Gender=Masc|Number=Sing|PronType=Dem</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s353_n2" from="14100" to="14106">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">NOUN</f>
+ <f name="lemma">Effekt</f>
+ <f name="msd">Gender=Masc|Number=Sing|Person=3</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s353_n3" from="14107" to="14111">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">AUX</f>
+ <f name="lemma">können</f>
+ <f name="msd">Mood=Ind|Number=Sing|Person=3|Tense=Pres|VerbForm=Fin|VerbType=Mod</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s353_n4" from="14112" to="14115">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">DET</f>
+ <f name="lemma">die</f>
+ <f name="msd">Case=Acc|Gender=Fem|Number=Sing|PronType=Art</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s353_n5" from="14116" to="14120">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">NOUN</f>
+ <f name="lemma">Güte</f>
+ <f name="msd">Gender=Fem|Number=Sing|Person=3</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s353_n6" from="14121" to="14126">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">DET</f>
+ <f name="lemma">eines</f>
+ <f name="msd">Case=Gen|Gender=Neut|Number=Sing|PronType=Art</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s353_n7" from="14127" to="14136">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">NOUN</f>
+ <f name="lemma">Objektiv</f>
+ <f name="msd">Case=Gen|Gender=Neut|Number=Sing|Person=3</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s353_n8" from="14137" to="14158">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">VERB</f>
+ <f name="lemma">erheblichbeeinflussen</f>
+ <f name="msd">VerbForm=Inf</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s353_n9" from="14159" to="14162">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">CCONJ</f>
+ <f name="lemma">und</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s353_n10" from="14163" to="14167">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">AUX</f>
+ <f name="lemma">müssen</f>
+ <f name="msd">Mood=Ind|Number=Sing|Person=3|Tense=Pres|VerbForm=Fin|VerbType=Mod</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s353_n11" from="14168" to="14171">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">ADP</f>
+ <f name="lemma">bei</f>
+ <f name="msd">AdpType=Prep|Case=Dat</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s353_n12" from="14172" to="14175">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">DET</f>
+ <f name="lemma">der</f>
+ <f name="msd">Case=Dat|Gender=Fem|Number=Sing|PronType=Art</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s353_n13" from="14176" to="14188">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">NOUN</f>
+ <f name="lemma">Konstruktion</f>
+ <f name="msd">Gender=Fem|Number=Sing|Person=3</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s353_n14" from="14189" to="14192">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">ADP</f>
+ <f name="lemma">von</f>
+ <f name="msd">AdpType=Prep|Case=Dat</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s353_n15" from="14193" to="14205">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">ADJ</f>
+ <f name="lemma">hochwertig</f>
+ <f name="msd">Case=Dat|Degree=Pos|Number=Plur</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s353_n16" from="14206" to="14228">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">VERB</f>
+ <f name="lemma">Systemenberücksichtigt</f>
+ <f name="msd">Aspect=Perf|VerbForm=Part</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s353_n17" from="14229" to="14235">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">AUX</f>
+ <f name="lemma">werden</f>
+ <f name="msd">VerbForm=Inf</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s353_n18" from="14235" to="14236">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">PUNCT</f>
+ <f name="lemma">.</f>
+ <f name="msd">PunctType=Peri</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s354_n1" from="14237" to="14239">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">ADP</f>
+ <f name="lemma">Im</f>
+ <f name="msd">AdpType=Prep|Case=Dat</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s354_n2" from="14240" to="14244">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">NOUN</f>
+ <f name="lemma">Fall</f>
+ <f name="msd">Gender=Masc|Number=Sing|Person=3</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s354_n3" from="14245" to="14248">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">DET</f>
+ <f name="lemma">der</f>
+ <f name="msd">Case=Gen|Gender=Fem|Number=Sing|PronType=Art</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s354_n4" from="14249" to="14260">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">ADJ</f>
+ <f name="lemma">sphärisch</f>
+ <f name="msd">Degree=Pos|Number=Sing</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s354_n5" from="14261" to="14271">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">NOUN</f>
+ <f name="lemma">Ration</f>
+ <f name="msd">Gender=Fem|Number=Sing|Person=3</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s354_n6" from="14272" to="14282">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">VERB</f>
+ <f name="lemma">bezeichnen</f>
+ <f name="msd">Mood=Ind|Number=Sing|Person=3|Tense=Pres|VerbForm=Fin</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s354_n7" from="14283" to="14286">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">PRON</f>
+ <f name="lemma">man</f>
+ <f name="msd">Case=Nom|Number=Sing|Person=3|PronType=Ind,Neg,Tot</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s354_n8" from="14287" to="14299">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">PROPN</f>
+ <f name="lemma">Effekt</f>
+ <f name="msd">Person=3</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s354_n9" from="14300" to="14303">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">CCONJ</f>
+ <f name="lemma">als</f>
+ <f name="msd">ConjType=Comp</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s354_n10" from="14304" to="14314">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">NOUN</f>
+ <f name="lemma">Gaussfehler</f>
+ <f name="msd">Gender=Masc|Number=Sing|Person=3</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s354_n11" from="14314" to="14315">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">PUNCT</f>
+ <f name="lemma">,</f>
+ <f name="msd">PunctType=Comm</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s354_n12" from="14316" to="14321">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">ADV</f>
+ <f name="lemma">wobei</f>
+ <f name="msd">PronType=Int</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s354_n13" from="14322" to="14325">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">DET</f>
+ <f name="lemma">die</f>
+ <f name="msd">Case=Nom|Gender=Fem|Number=Sing|PronType=Art</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s354_n14" from="14326" to="14337">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">NOUN</f>
+ <f name="lemma">Bezeichnung</f>
+ <f name="msd">Gender=Fem|Number=Sing|Person=3</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s354_n15" from="14338" to="14341">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">ADV</f>
+ <f name="lemma">oft</f>
+ <f name="msd">Degree=Pos</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s354_n16" from="14342" to="14345">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">ADP</f>
+ <f name="lemma">auf</f>
+ <f name="msd">AdpType=Prep|Case=Acc</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s354_n17" from="14346" to="14349">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">DET</f>
+ <f name="lemma">die</f>
+ <f name="msd">Case=Acc|Number=Plur|PronType=Art</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s354_n18" from="14350" to="14363">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">PROPN</f>
+ <f name="lemma">Fehler</f>
+ <f name="msd">Person=3</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s354_n19" from="14364" to="14374">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">VERB</f>
+ <f name="lemma">ausdehnen</f>
+ <f name="msd">Aspect=Perf|VerbForm=Part</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s354_n20" from="14375" to="14379">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">AUX</f>
+ <f name="lemma">werden</f>
+ <f name="msd">Mood=Ind|Number=Sing|Person=3|Tense=Pres|VerbForm=Fin</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s354_n21" from="14379" to="14380">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">PUNCT</f>
+ <f name="lemma">.</f>
+ <f name="msd">PunctType=Peri</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s355_n1" from="14381" to="14385">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">PROPN</f>
+ <f name="lemma">mini</f>
+ <f name="msd">Person=3</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s355_n2" from="14385" to="14386">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">X</f>
+ <f name="lemma">|</f>
+ <f name="msd">Foreign=Yes|Person=3</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s355_n3" from="14386" to="14394">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">X</f>
+ <f name="lemma">Achromat</f>
+ <f name="msd">Person=3</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s355_n4" from="14395" to="14399">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">X</f>
+ <f name="lemma">mini</f>
+ <f name="msd">Foreign=Yes|Person=3</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s355_n5" from="14399" to="14400">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">X</f>
+ <f name="lemma">|</f>
+ <f name="msd">Foreign=Yes|Person=3</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s355_n6" from="14400" to="14410">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">NOUN</f>
+ <f name="lemma">Romat</f>
+ <f name="msd">Person=3</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s355_n7" from="14412" to="14420">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">X</f>
+ <f name="lemma">Achromat</f>
+ <f name="msd">Person=3</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s355_n8" from="14422" to="14426">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">SCONJ</f>
+ <f name="lemma">Wenn</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s355_n9" from="14427" to="14429">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">ADP</f>
+ <f name="lemma">in</f>
+ <f name="msd">AdpType=Prep|Case=Dat</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s355_n10" from="14430" to="14435">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">DET</f>
+ <f name="lemma">einem</f>
+ <f name="msd">Case=Dat|Gender=Neut|Number=Sing|PronType=Art</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s355_n11" from="14436" to="14442">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">NOUN</f>
+ <f name="lemma">System</f>
+ <f name="msd">Gender=Neut|Number=Sing|Person=3</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s355_n12" from="14443" to="14455">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">NOUN</f>
+ <f name="lemma">Gläser</f>
+ <f name="msd">Gender=Masc|Number=Plur|Person=3</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s355_n13" from="14456" to="14459">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">ADP</f>
+ <f name="lemma">mit</f>
+ <f name="msd">AdpType=Prep|Case=Dat</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s355_n14" from="14460" to="14469">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">ADJ</f>
+ <f name="lemma">erheblich</f>
+ <f name="msd">Degree=Pos|Variant=Short</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s355_n15" from="14470" to="14481">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">ADV</f>
+ <f name="lemma">voneinander</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s355_n16" from="14482" to="14495">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">ADJ</f>
+ <f name="lemma">verscheiden</f>
+ <f name="msd">Case=Dat|Degree=Pos|Number=Plur</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s355_n17" from="14496" to="14507">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">NOUN</f>
+ <f name="lemma">Zahl</f>
+ <f name="msd">Gender=Fem|Number=Plur|Person=3</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s355_n18" from="14508" to="14517">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">VERB</f>
+ <f name="lemma">verwenden</f>
+ <f name="msd">Aspect=Perf|VerbForm=Part</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s355_n19" from="14518" to="14524">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">AUX</f>
+ <f name="lemma">werden</f>
+ <f name="msd">Mood=Ind|Number=Plur|Person=3|Tense=Pres|VerbForm=Fin</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s355_n20" from="14524" to="14525">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">PUNCT</f>
+ <f name="lemma">,</f>
+ <f name="msd">PunctType=Comm</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s355_n21" from="14526" to="14530">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">AUX</f>
+ <f name="lemma">können</f>
+ <f name="msd">Mood=Ind|Number=Sing|Person=3|Tense=Pres|VerbForm=Fin|VerbType=Mod</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s355_n22" from="14531" to="14544">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">PROPN</f>
+ <f name="lemma">Farbfehler</f>
+ <f name="msd">Person=3</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s355_n23" from="14545" to="14550">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">ADJ</f>
+ <f name="lemma">stark</f>
+ <f name="msd">Degree=Pos|Variant=Short</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s355_n24" from="14551" to="14561">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">VERB</f>
+ <f name="lemma">verringern</f>
+ <f name="msd">Aspect=Perf|VerbForm=Part</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s355_n25" from="14562" to="14568">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">AUX</f>
+ <f name="lemma">werden</f>
+ <f name="msd">VerbForm=Inf</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s355_n26" from="14568" to="14569">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">PUNCT</f>
+ <f name="lemma">.</f>
+ <f name="msd">PunctType=Peri</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s356_n1" from="14570" to="14578">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">ADJ</f>
+ <f name="lemma">speziell</f>
+ <f name="msd">Degree=Pos|Variant=Short</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s356_n2" from="14579" to="14587">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">VERB</f>
+ <f name="lemma">verstehen</f>
+ <f name="msd">Mood=Ind|Number=Sing|Person=3|Tense=Pres|VerbForm=Fin</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s356_n3" from="14588" to="14591">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">PRON</f>
+ <f name="lemma">man</f>
+ <f name="msd">Case=Nom|Number=Sing|Person=3|PronType=Ind,Neg,Tot</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s356_n4" from="14592" to="14597">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">ADP</f>
+ <f name="lemma">unter</f>
+ <f name="msd">AdpType=Prep|Case=Dat</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s356_n5" from="14598" to="14603">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">DET</f>
+ <f name="lemma">einem</f>
+ <f name="msd">Case=Dat|Gender=Masc|Number=Sing|PronType=Art</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s356_n6" from="14604" to="14614">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">NOUN</f>
+ <f name="lemma">Achromat</f>
+ <f name="msd">Gender=Masc|Number=Sing|Person=3</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s356_n7" from="14615" to="14618">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">DET</f>
+ <f name="lemma">ein</f>
+ <f name="msd">Case=Acc|Gender=Neut|Number=Sing|PronType=Art</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s356_n8" from="14619" to="14627">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">NOUN</f>
+ <f name="lemma">Objektiv</f>
+ <f name="msd">Gender=Neut|Number=Sing|Person=3</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s356_n9" from="14627" to="14628">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">PUNCT</f>
+ <f name="lemma">,</f>
+ <f name="msd">PunctType=Comm</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s356_n10" from="14629" to="14632">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">ADP</f>
+ <f name="lemma">bei</f>
+ <f name="msd">AdpType=Prep|Case=Dat</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s356_n11" from="14633" to="14636">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">PRON</f>
+ <f name="lemma">dem</f>
+ <f name="msd">Case=Dat|Gender=Neut|Number=Sing|Person=3|PronType=Rel</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s356_n12" from="14637" to="14640">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">DET</f>
+ <f name="lemma">die</f>
+ <f name="msd">Case=Nom|Gender=Fem|Number=Sing|PronType=Art</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s356_n13" from="14641" to="14649">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">NOUN</f>
+ <f name="lemma">Änderung</f>
+ <f name="msd">Gender=Fem|Number=Sing|Person=3</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s356_n14" from="14650" to="14653">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">DET</f>
+ <f name="lemma">der</f>
+ <f name="msd">Case=Gen|Gender=Fem|Number=Sing|PronType=Art</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s356_n15" from="14654" to="14666">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">NOUN</f>
+ <f name="lemma">Weite</f>
+ <f name="msd">Gender=Fem|Number=Sing|Person=3</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s356_n16" from="14667" to="14670">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">ADP</f>
+ <f name="lemma">mit</f>
+ <f name="msd">AdpType=Prep|Case=Dat</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s356_n17" from="14671" to="14674">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">DET</f>
+ <f name="lemma">der</f>
+ <f name="msd">Case=Dat|Gender=Fem|Number=Sing|PronType=Art</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s356_n18" from="14675" to="14686">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">NOUN</f>
+ <f name="lemma">Wellenlänge</f>
+ <f name="msd">Gender=Fem|Number=Sing|Person=3</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s356_n19" from="14687" to="14690">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">ADP</f>
+ <f name="lemma">für</f>
+ <f name="msd">AdpType=Prep|Case=Acc</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s356_n20" from="14691" to="14695">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">DET</f>
+ <f name="lemma">eine</f>
+ <f name="msd">Case=Acc|Gender=Fem|Number=Sing|PronType=Art</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s356_n21" from="14696" to="14719">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">NOUN</f>
+ <f name="lemma">Verschwindet</f>
+ <f name="msd">Gender=Fem|Number=Sing|Person=3</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s356_n22" from="14719" to="14720">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">PUNCT</f>
+ <f name="lemma">.</f>
+ <f name="msd">PunctType=Peri</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s357_n1" from="14722" to="14732">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">ADJ</f>
+ <f name="lemma">Romat</f>
+ <f name="msd">Degree=Pos|Variant=Short</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s357_n2" from="14734" to="14738">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">DET</f>
+ <f name="lemma">Eine</f>
+ <f name="msd">Case=Acc|Gender=Fem|Number=Sing|PronType=Art</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s357_n3" from="14739" to="14756">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">NOUN</f>
+ <f name="lemma">Entwicklung</f>
+ <f name="msd">Gender=Fem|Number=Sing|Person=3</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s357_n4" from="14757" to="14764">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">VERB</f>
+ <f name="lemma">stellen</f>
+ <f name="msd">Mood=Ind|Number=Plur|Person=3|Tense=Pres|VerbForm=Fin</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s357_n5" from="14765" to="14767">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">ADV</f>
+ <f name="lemma">so</f>
+ <f name="msd">Degree=Pos</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s357_n6" from="14768" to="14776">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">ADJ</f>
+ <f name="lemma">nennen</f>
+ <f name="msd">Degree=Pos|Number=Plur</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s357_n7" from="14777" to="14791">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">ADJ</f>
+ <f name="lemma">apochromatisch</f>
+ <f name="msd">Degree=Pos|Variant=Short</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s357_n8" from="14792" to="14803">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">ADJ</f>
+ <f name="lemma">korrigieren</f>
+ <f name="msd">Degree=Pos|Number=Plur</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s357_n9" from="14804" to="14813">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">NOUN</f>
+ <f name="lemma">Objektiv</f>
+ <f name="msd">Gender=Neut|Number=Plur|Person=3</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s357_n10" from="14814" to="14818">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">CCONJ</f>
+ <f name="lemma">oder</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s357_n11" from="14819" to="14830">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">NOUN</f>
+ <f name="lemma">Romat</f>
+ <f name="msd">Gender=Masc|Number=Plur|Person=3</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s357_n12" from="14831" to="14834">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">ADP</f>
+ <f name="lemma">dar</f>
+ <f name="msd">PartType=Vbp</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s357_n13" from="14834" to="14835">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">PUNCT</f>
+ <f name="lemma">.</f>
+ <f name="msd">PunctType=Peri</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s358_n1" from="14836" to="14839">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">ADP</f>
+ <f name="lemma">Für</f>
+ <f name="msd">AdpType=Prep|Case=Acc</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s358_n2" from="14840" to="14845">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">PRON</f>
+ <f name="lemma">diese</f>
+ <f name="msd">Case=Acc|Gender=Fem|Number=Sing|Person=3|PronType=Dem</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s358_n3" from="14846" to="14855">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">VERB</f>
+ <f name="lemma">verwenden</f>
+ <f name="msd">Mood=Ind|Number=Sing|Person=3|Tense=Pres|VerbForm=Fin</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s358_n4" from="14856" to="14859">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">PRON</f>
+ <f name="lemma">man</f>
+ <f name="msd">Case=Nom|Number=Sing|Person=3|PronType=Ind,Neg,Tot</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s358_n5" from="14860" to="14866">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">NOUN</f>
+ <f name="lemma">Gläser</f>
+ <f name="msd">Gender=Masc|Number=Plur|Person=3</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s358_n6" from="14867" to="14870">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">ADP</f>
+ <f name="lemma">mit</f>
+ <f name="msd">AdpType=Prep|Case=Dat</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s358_n7" from="14871" to="14885">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">ADJ</f>
+ <f name="lemma">ungewöhnlich</f>
+ <f name="msd">Case=Dat|Degree=Pos|Number=Sing</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s358_n8" from="14886" to="14906">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">NOUN</f>
+ <f name="lemma">Verhalten</f>
+ <f name="msd">Gender=Neut|Number=Sing|Person=3</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s358_n9" from="14906" to="14907">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">PUNCT</f>
+ <f name="lemma">,</f>
+ <f name="msd">PunctType=Comm</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s358_n10" from="14908" to="14915">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">ADV</f>
+ <f name="lemma">wodurch</f>
+ <f name="msd">PronType=Int</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s358_n11" from="14916" to="14920">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">ADV</f>
+ <f name="lemma">auch</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s358_n12" from="14921" to="14924">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">DET</f>
+ <f name="lemma">das</f>
+ <f name="msd">Case=Nom|Gender=Neut|Number=Sing|PronType=Art</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s358_n13" from="14925" to="14934">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">ADJ</f>
+ <f name="lemma">sekundär</f>
+ <f name="msd">Degree=Pos|Gender=Neut|Number=Sing</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s358_n14" from="14935" to="14943">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">NOUN</f>
+ <f name="lemma">Spektrum</f>
+ <f name="msd">Gender=Neut|Number=Sing|Person=3</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s358_n15" from="14944" to="14954">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">VERB</f>
+ <f name="lemma">korrigieren</f>
+ <f name="msd">Aspect=Perf|VerbForm=Part</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s358_n16" from="14955" to="14961">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">AUX</f>
+ <f name="lemma">werden</f>
+ <f name="msd">VerbForm=Inf</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s358_n17" from="14962" to="14966">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">AUX</f>
+ <f name="lemma">können</f>
+ <f name="msd">Mood=Ind|Number=Sing|Person=3|Tense=Pres|VerbForm=Fin|VerbType=Mod</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s358_n18" from="14966" to="14967">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">PUNCT</f>
+ <f name="lemma">.</f>
+ <f name="msd">PunctType=Peri</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s359_n1" from="14968" to="14970">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">ADP</f>
+ <f name="lemma">In</f>
+ <f name="msd">AdpType=Prep|Case=Dat</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s359_n2" from="14971" to="14974">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">DET</f>
+ <f name="lemma">der</f>
+ <f name="msd">Case=Dat|Gender=Fem|Number=Sing|PronType=Art</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s359_n3" from="14975" to="14986">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">ADJ</f>
+ <f name="lemma">klassisch</f>
+ <f name="msd">Degree=Pos|Number=Sing</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s359_n4" from="14987" to="14997">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">NOUN</f>
+ <f name="lemma">Ausführung</f>
+ <f name="msd">Gender=Fem|Number=Sing|Person=3</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s359_n5" from="14998" to="15004">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">AUX</f>
+ <f name="lemma">werden</f>
+ <f name="msd">Mood=Ind|Number=Plur|Person=3|Tense=Pres|VerbForm=Fin</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s359_n6" from="15005" to="15010">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">PRON</f>
+ <f name="lemma">diese</f>
+ <f name="msd">Case=Nom|Number=Plur|Person=3|PronType=Dem</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s359_n7" from="15011" to="15013">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">ADV</f>
+ <f name="lemma">so</f>
+ <f name="msd">Degree=Pos</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s359_n8" from="15014" to="15023">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">VERB</f>
+ <f name="lemma">berechnen</f>
+ <f name="msd">Aspect=Perf|VerbForm=Part</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s359_n9" from="15023" to="15024">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">PUNCT</f>
+ <f name="lemma">,</f>
+ <f name="msd">PunctType=Comm</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s359_n10" from="15025" to="15032">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">PRON</f>
+ <f name="lemma">dassdie</f>
+ <f name="msd">Case=Nom|Number=Plur|Person=3|PronType=Rel</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s359_n11" from="15033" to="15046">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">NOUN</f>
+ <f name="lemma">Weit</f>
+ <f name="msd">Gender=Fem|Number=Plur|Person=3</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s359_n12" from="15047" to="15050">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">ADP</f>
+ <f name="lemma">bei</f>
+ <f name="msd">AdpType=Prep|Case=Dat</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s359_n13" from="15051" to="15055">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">NUM</f>
+ <f name="lemma">drei</f>
+ <f name="msd">Number=Plur|NumType=Card|Person=3</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s359_n14" from="15056" to="15068">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">NOUN</f>
+ <f name="lemma">Wellenlänge</f>
+ <f name="msd">Gender=Fem|Number=Plur|Person=3</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s359_n15" from="15069" to="15070">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">PUNCT</f>
+ <f name="lemma">(</f>
+ <f name="msd">PunctType=Brck</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s359_n16" from="15070" to="15072">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">ADP</f>
+ <f name="lemma">z.</f>
+ <f name="msd">AdpType=Prep|Case=Dat</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s359_n17" from="15073" to="15075">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">NOUN</f>
+ <f name="lemma">unknown</f>
+ <f name="msd">Person=3</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s359_n18" from="15076" to="15079">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">NOUN</f>
+ <f name="lemma">Rot</f>
+ <f name="msd">Gender=Neut|Number=Sing|Person=3</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s359_n19" from="15079" to="15080">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">PUNCT</f>
+ <f name="lemma">,</f>
+ <f name="msd">PunctType=Comm</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s359_n20" from="15081" to="15085">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">NOUN</f>
+ <f name="lemma">Grün</f>
+ <f name="msd">Gender=Neut|Number=Sing|Person=3</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s359_n21" from="15086" to="15089">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">CCONJ</f>
+ <f name="lemma">und</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s359_n22" from="15090" to="15094">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">NOUN</f>
+ <f name="lemma">Blau</f>
+ <f name="msd">Gender=Neut|Number=Sing|Person=3</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s359_n23" from="15094" to="15095">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">PUNCT</f>
+ <f name="lemma">)</f>
+ <f name="msd">PunctType=Brck</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s359_n24" from="15096" to="15110">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">VERB</f>
+ <f name="lemma">übereinstimmen</f>
+ <f name="msd">Mood=Ind|Number=Plur|Person=3|Tense=Pres|VerbForm=Fin</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s359_n25" from="15110" to="15111">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">PUNCT</f>
+ <f name="lemma">,</f>
+ <f name="msd">PunctType=Comm</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s359_n26" from="15112" to="15119">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">ADV</f>
+ <f name="lemma">wodurch</f>
+ <f name="msd">PronType=Int</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s359_n27" from="15120" to="15138">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">NOUN</f>
+ <f name="lemma">Fehler</f>
+ <f name="msd">Gender=Masc|Number=Sing|Person=3</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s359_n28" from="15139" to="15143">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">ADV</f>
+ <f name="lemma">auch</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s359_n29" from="15144" to="15147">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">ADP</f>
+ <f name="lemma">bei</f>
+ <f name="msd">AdpType=Prep|Case=Dat</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s359_n30" from="15148" to="15153">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">DET</f>
+ <f name="lemma">all</f>
+ <f name="msd">Case=Dat|Number=Plur|Person=3</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s359_n31" from="15154" to="15161">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">ADJ</f>
+ <f name="lemma">ander</f>
+ <f name="msd">Degree=Pos|Number=Plur</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s359_n32" from="15162" to="15174">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">NOUN</f>
+ <f name="lemma">Wellenlänge</f>
+ <f name="msd">Gender=Fem|Number=Plur|Person=3</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s359_n33" from="15175" to="15178">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">DET</f>
+ <f name="lemma">des</f>
+ <f name="msd">Case=Gen|Gender=Neut|Number=Sing|PronType=Art</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s359_n34" from="15179" to="15195">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">NOUN</f>
+ <f name="lemma">sichtbarenliChts</f>
+ <f name="msd">Case=Gen|Gender=Neut|Number=Sing|Person=3</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s359_n35" from="15196" to="15200">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">ADV</f>
+ <f name="lemma">sehr</f>
+ <f name="msd">Degree=Pos</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s359_n36" from="15201" to="15207">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">ADJ</f>
+ <f name="lemma">gering</f>
+ <f name="msd">Degree=Pos|Variant=Short</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s359_n37" from="15208" to="15212">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">AUX</f>
+ <f name="lemma">werden</f>
+ <f name="msd">Mood=Ind|Number=Sing|Person=3|Tense=Pres|VerbForm=Fin</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s359_n38" from="15212" to="15213">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">PUNCT</f>
+ <f name="lemma">.</f>
+ <f name="msd">PunctType=Peri</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s360_n1" from="15214" to="15217">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">DET</f>
+ <f name="lemma">Ein</f>
+ <f name="msd">Case=Nom|Gender=Masc|Number=Sing|PronType=Art</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s360_n2" from="15218" to="15225">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">NOUN</f>
+ <f name="lemma">Hinweis</f>
+ <f name="msd">Gender=Masc|Number=Sing|Person=3</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s360_n3" from="15226" to="15229">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">ADP</f>
+ <f name="lemma">auf</f>
+ <f name="msd">AdpType=Prep|Case=Acc</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s360_n4" from="15230" to="15232">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">ADV</f>
+ <f name="lemma">so</f>
+ <f name="msd">Degree=Pos</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s360_n5" from="15233" to="15244">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">ADJ</f>
+ <f name="lemma">korrigieren</f>
+ <f name="msd">Degree=Pos|Number=Plur</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s360_n6" from="15245" to="15252">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">NOUN</f>
+ <f name="lemma">System</f>
+ <f name="msd">Gender=Neut|Number=Plur|Person=3</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s360_n7" from="15253" to="15256">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">AUX</f>
+ <f name="lemma">sein</f>
+ <f name="msd">Mood=Ind|Number=Sing|Person=3|Tense=Pres|VerbForm=Fin</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s360_n8" from="15257" to="15262">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">ADV</f>
+ <f name="lemma">meist</f>
+ <f name="msd">Degree=Sup</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s360_n9" from="15263" to="15266">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">DET</f>
+ <f name="lemma">die</f>
+ <f name="msd">Case=Nom|Gender=Fem|Number=Sing|PronType=Art</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s360_n10" from="15267" to="15276">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">NOUN</f>
+ <f name="lemma">Abkürzung</f>
+ <f name="msd">Gender=Fem|Number=Sing|Person=3</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s360_n11" from="15277" to="15280">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">PROPN</f>
+ <f name="lemma">APO</f>
+ <f name="msd">Person=3</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s360_n12" from="15281" to="15284">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">ADP</f>
+ <f name="lemma">auf</f>
+ <f name="msd">AdpType=Prep|Case=Dat</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s360_n13" from="15285" to="15288">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">DET</f>
+ <f name="lemma">den</f>
+ <f name="msd">Case=Dat|Number=Plur|PronType=Art</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s360_n14" from="15289" to="15299">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">NOUN</f>
+ <f name="lemma">Objektiv</f>
+ <f name="msd">Case=Dat|Gender=Neut|Number=Plur|Person=3</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s360_n15" from="15299" to="15300">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">PUNCT</f>
+ <f name="lemma">.</f>
+ <f name="msd">PunctType=Peri</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s361_n1" from="15301" to="15304">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">PRON</f>
+ <f name="lemma">Sie</f>
+ <f name="msd">Case=Nom|Number=Plur|Person=3|PronType=Prs</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s361_n2" from="15305" to="15309">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">AUX</f>
+ <f name="lemma">sein</f>
+ <f name="msd">Mood=Ind|Number=Plur|Person=3|Tense=Pres|VerbForm=Fin</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s361_n3" from="15310" to="15312">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">ADP</f>
+ <f name="lemma">in</f>
+ <f name="msd">AdpType=Prep|Case=Dat</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s361_n4" from="15313" to="15318">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">DET</f>
+ <f name="lemma">all</f>
+ <f name="msd">Case=Dat|Gender=Fem|Number=Sing|Person=3</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s361_n5" from="15319" to="15324">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">NOUN</f>
+ <f name="lemma">Regel</f>
+ <f name="msd">Gender=Fem|Number=Sing|Person=3</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s361_n6" from="15325" to="15334">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">ADJ</f>
+ <f name="lemma">bedeuten</f>
+ <f name="msd">Degree=Pos|Variant=Short</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s361_n7" from="15335" to="15341">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">ADJ</f>
+ <f name="lemma">teuer</f>
+ <f name="msd">Degree=Cmp|Variant=Short</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s361_n8" from="15342" to="15345">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">CCONJ</f>
+ <f name="lemma">als</f>
+ <f name="msd">ConjType=Comp</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s361_n9" from="15346" to="15367">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">ADJ</f>
+ <f name="lemma">lediglichachromatisch</f>
+ <f name="msd">Degree=Pos|Variant=Short</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s361_n10" from="15368" to="15379">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">ADJ</f>
+ <f name="lemma">korrigieren</f>
+ <f name="msd">Degree=Pos|Number=Plur</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s361_n11" from="15380" to="15388">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">NOUN</f>
+ <f name="lemma">Produkt</f>
+ <f name="msd">Gender=Neut|Number=Plur|Person=3</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s361_n12" from="15388" to="15389">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">PUNCT</f>
+ <f name="lemma">.</f>
+ <f name="msd">PunctType=Peri</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s362_n1" from="15391" to="15396">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">VERB</f>
+ <f name="lemma">sehen</f>
+ <f name="msd">Mood=Imp|Number=Sing|Person=2|VerbForm=Fin</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s362_n2" from="15397" to="15401">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">ADV</f>
+ <f name="lemma">auch</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ </spanList>
+</layer>
diff --git a/t/real/corpus/ICCGER/DeReKo-WPD17/B00-26993/base/tokens.xml b/t/real/corpus/ICCGER/DeReKo-WPD17/B00-26993/base/tokens.xml
new file mode 100644
index 0000000..62b7118
--- /dev/null
+++ b/t/real/corpus/ICCGER/DeReKo-WPD17/B00-26993/base/tokens.xml
@@ -0,0 +1,1316 @@
+<?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="ICCGER_DeReKo-WPD17.B00-26993"
+ xmlns="http://ids-mannheim.de/ns/KorAP"
+ version="KorAP-0.4">
+ <spanList>
+ <span id="t_0" from="0" to="4" />
+ <span id="t_1" from="5" to="15" />
+ <span id="t_2" from="16" to="19" />
+ <span id="t_3" from="20" to="24" />
+ <span id="t_4" from="25" to="37" />
+ <span id="t_5" from="38" to="46" />
+ <span id="t_6" from="47" to="65" />
+ <span id="t_7" from="65" to="66" />
+ <span id="t_8" from="67" to="76" />
+ <span id="t_9" from="77" to="80" />
+ <span id="t_10" from="81" to="86" />
+ <span id="t_11" from="87" to="94" />
+ <span id="t_12" from="95" to="110" />
+ <span id="t_13" from="111" to="121" />
+ <span id="t_14" from="122" to="134" />
+ <span id="t_15" from="135" to="138" />
+ <span id="t_16" from="139" to="145" />
+ <span id="t_17" from="146" to="149" />
+ <span id="t_18" from="150" to="160" />
+ <span id="t_19" from="161" to="165" />
+ <span id="t_20" from="166" to="174" />
+ <span id="t_21" from="175" to="178" />
+ <span id="t_22" from="179" to="189" />
+ <span id="t_23" from="189" to="190" />
+ <span id="t_24" from="191" to="195" />
+ <span id="t_25" from="196" to="206" />
+ <span id="t_26" from="207" to="210" />
+ <span id="t_27" from="211" to="216" />
+ <span id="t_28" from="217" to="235" />
+ <span id="t_29" from="236" to="240" />
+ <span id="t_30" from="241" to="247" />
+ <span id="t_31" from="248" to="253" />
+ <span id="t_32" from="254" to="258" />
+ <span id="t_33" from="259" to="269" />
+ <span id="t_34" from="270" to="279" />
+ <span id="t_35" from="280" to="283" />
+ <span id="t_36" from="284" to="293" />
+ <span id="t_37" from="294" to="297" />
+ <span id="t_38" from="298" to="301" />
+ <span id="t_39" from="302" to="314" />
+ <span id="t_40" from="315" to="318" />
+ <span id="t_41" from="319" to="332" />
+ <span id="t_42" from="333" to="341" />
+ <span id="t_43" from="342" to="345" />
+ <span id="t_44" from="346" to="352" />
+ <span id="t_45" from="353" to="367" />
+ <span id="t_46" from="367" to="368" />
+ <span id="t_47" from="369" to="377" />
+ <span id="t_48" from="378" to="383" />
+ <span id="t_49" from="384" to="388" />
+ <span id="t_50" from="389" to="394" />
+ <span id="t_51" from="395" to="413" />
+ <span id="t_52" from="413" to="414" />
+ <span id="t_53" from="416" to="429" />
+ <span id="t_54" from="431" to="433" />
+ <span id="t_55" from="434" to="437" />
+ <span id="t_56" from="438" to="448" />
+ <span id="t_57" from="449" to="452" />
+ <span id="t_58" from="453" to="458" />
+ <span id="t_59" from="459" to="463" />
+ <span id="t_60" from="464" to="484" />
+ <span id="t_61" from="485" to="498" />
+ <span id="t_62" from="499" to="508" />
+ <span id="t_63" from="509" to="518" />
+ <span id="t_64" from="518" to="519" />
+ <span id="t_65" from="520" to="523" />
+ <span id="t_66" from="524" to="527" />
+ <span id="t_67" from="528" to="531" />
+ <span id="t_68" from="532" to="535" />
+ <span id="t_69" from="536" to="551" />
+ <span id="t_70" from="552" to="565" />
+ <span id="t_71" from="565" to="566" />
+ <span id="t_72" from="567" to="575" />
+ <span id="t_73" from="576" to="585" />
+ <span id="t_74" from="586" to="594" />
+ <span id="t_75" from="595" to="601" />
+ <span id="t_76" from="602" to="606" />
+ <span id="t_77" from="607" to="612" />
+ <span id="t_78" from="613" to="616" />
+ <span id="t_79" from="617" to="635" />
+ <span id="t_80" from="636" to="639" />
+ <span id="t_81" from="640" to="647" />
+ <span id="t_82" from="648" to="660" />
+ <span id="t_83" from="660" to="661" />
+ <span id="t_84" from="662" to="665" />
+ <span id="t_85" from="666" to="669" />
+ <span id="t_86" from="670" to="678" />
+ <span id="t_87" from="679" to="691" />
+ <span id="t_88" from="691" to="692" />
+ <span id="t_89" from="693" to="701" />
+ <span id="t_90" from="702" to="705" />
+ <span id="t_91" from="706" to="715" />
+ <span id="t_92" from="715" to="716" />
+ <span id="t_93" from="717" to="719" />
+ <span id="t_94" from="720" to="723" />
+ <span id="t_95" from="724" to="739" />
+ <span id="t_96" from="740" to="743" />
+ <span id="t_97" from="744" to="751" />
+ <span id="t_98" from="752" to="755" />
+ <span id="t_99" from="756" to="765" />
+ <span id="t_100" from="766" to="774" />
+ <span id="t_101" from="775" to="778" />
+ <span id="t_102" from="779" to="785" />
+ <span id="t_103" from="785" to="786" />
+ <span id="t_104" from="787" to="791" />
+ <span id="t_105" from="792" to="797" />
+ <span id="t_106" from="798" to="806" />
+ <span id="t_107" from="807" to="810" />
+ <span id="t_108" from="811" to="816" />
+ <span id="t_109" from="817" to="821" />
+ <span id="t_110" from="822" to="836" />
+ <span id="t_111" from="837" to="839" />
+ <span id="t_112" from="840" to="851" />
+ <span id="t_113" from="851" to="852" />
+ <span id="t_114" from="853" to="857" />
+ <span id="t_115" from="858" to="860" />
+ <span id="t_116" from="861" to="864" />
+ <span id="t_117" from="865" to="872" />
+ <span id="t_118" from="873" to="885" />
+ <span id="t_119" from="886" to="903" />
+ <span id="t_120" from="904" to="915" />
+ <span id="t_121" from="915" to="916" />
+ <span id="t_122" from="917" to="920" />
+ <span id="t_123" from="921" to="924" />
+ <span id="t_124" from="925" to="937" />
+ <span id="t_125" from="938" to="948" />
+ <span id="t_126" from="949" to="955" />
+ <span id="t_127" from="956" to="965" />
+ <span id="t_128" from="966" to="970" />
+ <span id="t_129" from="970" to="971" />
+ <span id="t_130" from="972" to="979" />
+ <span id="t_131" from="980" to="987" />
+ <span id="t_132" from="988" to="991" />
+ <span id="t_133" from="992" to="995" />
+ <span id="t_134" from="996" to="1006" />
+ <span id="t_135" from="1007" to="1020" />
+ <span id="t_136" from="1022" to="1023" />
+ <span id="t_137" from="1025" to="1031" />
+ <span id="t_138" from="1033" to="1037" />
+ <span id="t_139" from="1038" to="1048" />
+ <span id="t_140" from="1049" to="1052" />
+ <span id="t_141" from="1053" to="1058" />
+ <span id="t_142" from="1059" to="1070" />
+ <span id="t_143" from="1071" to="1082" />
+ <span id="t_144" from="1083" to="1086" />
+ <span id="t_145" from="1087" to="1102" />
+ <span id="t_146" from="1103" to="1107" />
+ <span id="t_147" from="1107" to="1108" />
+ <span id="t_148" from="1109" to="1114" />
+ <span id="t_149" from="1115" to="1117" />
+ <span id="t_150" from="1118" to="1122" />
+ <span id="t_151" from="1123" to="1135" />
+ <span id="t_152" from="1136" to="1145" />
+ <span id="t_153" from="1146" to="1152" />
+ <span id="t_154" from="1153" to="1155" />
+ <span id="t_155" from="1156" to="1164" />
+ <span id="t_156" from="1165" to="1176" />
+ <span id="t_157" from="1177" to="1180" />
+ <span id="t_158" from="1180" to="1181" />
+ <span id="t_159" from="1182" to="1194" />
+ <span id="t_160" from="1195" to="1199" />
+ <span id="t_161" from="1200" to="1212" />
+ <span id="t_162" from="1212" to="1213" />
+ <span id="t_163" from="1214" to="1217" />
+ <span id="t_164" from="1218" to="1223" />
+ <span id="t_165" from="1224" to="1228" />
+ <span id="t_166" from="1229" to="1232" />
+ <span id="t_167" from="1233" to="1243" />
+ <span id="t_168" from="1244" to="1254" />
+ <span id="t_169" from="1255" to="1267" />
+ <span id="t_170" from="1268" to="1273" />
+ <span id="t_171" from="1274" to="1275" />
+ <span id="t_172" from="1275" to="1282" />
+ <span id="t_173" from="1282" to="1283" />
+ <span id="t_174" from="1284" to="1287" />
+ <span id="t_175" from="1288" to="1292" />
+ <span id="t_176" from="1293" to="1310" />
+ <span id="t_177" from="1311" to="1316" />
+ <span id="t_178" from="1317" to="1318" />
+ <span id="t_179" from="1318" to="1325" />
+ <span id="t_180" from="1325" to="1326" />
+ <span id="t_181" from="1326" to="1327" />
+ <span id="t_182" from="1328" to="1340" />
+ <span id="t_183" from="1341" to="1349" />
+ <span id="t_184" from="1350" to="1353" />
+ <span id="t_185" from="1354" to="1361" />
+ <span id="t_186" from="1362" to="1365" />
+ <span id="t_187" from="1366" to="1375" />
+ <span id="t_188" from="1375" to="1376" />
+ <span id="t_189" from="1377" to="1379" />
+ <span id="t_190" from="1380" to="1383" />
+ <span id="t_191" from="1384" to="1392" />
+ <span id="t_192" from="1393" to="1399" />
+ <span id="t_193" from="1400" to="1418" />
+ <span id="t_194" from="1419" to="1427" />
+ <span id="t_195" from="1428" to="1432" />
+ <span id="t_196" from="1432" to="1433" />
+ <span id="t_197" from="1434" to="1437" />
+ <span id="t_198" from="1438" to="1449" />
+ <span id="t_199" from="1450" to="1456" />
+ <span id="t_200" from="1457" to="1460" />
+ <span id="t_201" from="1461" to="1479" />
+ <span id="t_202" from="1480" to="1483" />
+ <span id="t_203" from="1484" to="1497" />
+ <span id="t_204" from="1498" to="1501" />
+ <span id="t_205" from="1502" to="1509" />
+ <span id="t_206" from="1510" to="1513" />
+ <span id="t_207" from="1514" to="1517" />
+ <span id="t_208" from="1518" to="1521" />
+ <span id="t_209" from="1522" to="1526" />
+ <span id="t_210" from="1527" to="1537" />
+ <span id="t_211" from="1538" to="1555" />
+ <span id="t_212" from="1556" to="1583" />
+ <span id="t_213" from="1583" to="1584" />
+ <span id="t_214" from="1585" to="1597" />
+ <span id="t_215" from="1598" to="1603" />
+ <span id="t_216" from="1604" to="1609" />
+ <span id="t_217" from="1610" to="1623" />
+ <span id="t_218" from="1624" to="1627" />
+ <span id="t_219" from="1628" to="1647" />
+ <span id="t_220" from="1647" to="1648" />
+ <span id="t_221" from="1649" to="1657" />
+ <span id="t_222" from="1658" to="1661" />
+ <span id="t_223" from="1662" to="1665" />
+ <span id="t_224" from="1666" to="1677" />
+ <span id="t_225" from="1678" to="1683" />
+ <span id="t_226" from="1684" to="1688" />
+ <span id="t_227" from="1689" to="1699" />
+ <span id="t_228" from="1700" to="1714" />
+ <span id="t_229" from="1715" to="1718" />
+ <span id="t_230" from="1719" to="1729" />
+ <span id="t_231" from="1730" to="1733" />
+ <span id="t_232" from="1734" to="1737" />
+ <span id="t_233" from="1738" to="1749" />
+ <span id="t_234" from="1749" to="1750" />
+ <span id="t_235" from="1751" to="1754" />
+ <span id="t_236" from="1755" to="1760" />
+ <span id="t_237" from="1761" to="1776" />
+ <span id="t_238" from="1777" to="1779" />
+ <span id="t_239" from="1780" to="1783" />
+ <span id="t_240" from="1784" to="1794" />
+ <span id="t_241" from="1794" to="1795" />
+ <span id="t_242" from="1795" to="1798" />
+ <span id="t_243" from="1799" to="1808" />
+ <span id="t_244" from="1809" to="1817" />
+ <span id="t_245" from="1818" to="1828" />
+ <span id="t_246" from="1828" to="1829" />
+ <span id="t_247" from="1830" to="1837" />
+ <span id="t_248" from="1838" to="1844" />
+ <span id="t_249" from="1845" to="1849" />
+ <span id="t_250" from="1850" to="1853" />
+ <span id="t_251" from="1854" to="1857" />
+ <span id="t_252" from="1858" to="1867" />
+ <span id="t_253" from="1868" to="1871" />
+ <span id="t_254" from="1872" to="1879" />
+ <span id="t_255" from="1880" to="1888" />
+ <span id="t_256" from="1889" to="1897" />
+ <span id="t_257" from="1897" to="1898" />
+ <span id="t_258" from="1899" to="1905" />
+ <span id="t_259" from="1906" to="1909" />
+ <span id="t_260" from="1910" to="1917" />
+ <span id="t_261" from="1918" to="1928" />
+ <span id="t_262" from="1929" to="1932" />
+ <span id="t_263" from="1933" to="1950" />
+ <span id="t_264" from="1950" to="1951" />
+ <span id="t_265" from="1952" to="1955" />
+ <span id="t_266" from="1956" to="1964" />
+ <span id="t_267" from="1965" to="1970" />
+ <span id="t_268" from="1971" to="1974" />
+ <span id="t_269" from="1975" to="1979" />
+ <span id="t_270" from="1980" to="1984" />
+ <span id="t_271" from="1985" to="1992" />
+ <span id="t_272" from="1993" to="2006" />
+ <span id="t_273" from="2007" to="2020" />
+ <span id="t_274" from="2020" to="2021" />
+ <span id="t_275" from="2022" to="2024" />
+ <span id="t_276" from="2025" to="2028" />
+ <span id="t_277" from="2029" to="2034" />
+ <span id="t_278" from="2035" to="2038" />
+ <span id="t_279" from="2039" to="2053" />
+ <span id="t_280" from="2054" to="2063" />
+ <span id="t_281" from="2063" to="2064" />
+ <span id="t_282" from="2065" to="2077" />
+ <span id="t_283" from="2078" to="2084" />
+ <span id="t_284" from="2085" to="2091" />
+ <span id="t_285" from="2092" to="2097" />
+ <span id="t_286" from="2098" to="2104" />
+ <span id="t_287" from="2105" to="2120" />
+ <span id="t_288" from="2121" to="2127" />
+ <span id="t_289" from="2127" to="2128" />
+ <span id="t_290" from="2129" to="2132" />
+ <span id="t_291" from="2133" to="2138" />
+ <span id="t_292" from="2139" to="2144" />
+ <span id="t_293" from="2145" to="2153" />
+ <span id="t_294" from="2154" to="2158" />
+ <span id="t_295" from="2159" to="2162" />
+ <span id="t_296" from="2163" to="2167" />
+ <span id="t_297" from="2168" to="2169" />
+ <span id="t_298" from="2169" to="2170" />
+ <span id="t_299" from="2170" to="2172" />
+ <span id="t_300" from="2172" to="2173" />
+ <span id="t_301" from="2173" to="2175" />
+ <span id="t_302" from="2176" to="2179" />
+ <span id="t_303" from="2180" to="2186" />
+ <span id="t_304" from="2187" to="2190" />
+ <span id="t_305" from="2191" to="2194" />
+ <span id="t_306" from="2195" to="2213" />
+ <span id="t_307" from="2214" to="2217" />
+ <span id="t_308" from="2218" to="2226" />
+ <span id="t_309" from="2227" to="2229" />
+ <span id="t_310" from="2230" to="2240" />
+ <span id="t_311" from="2241" to="2249" />
+ <span id="t_312" from="2249" to="2250" />
+ <span id="t_313" from="2251" to="2253" />
+ <span id="t_314" from="2254" to="2258" />
+ <span id="t_315" from="2259" to="2267" />
+ <span id="t_316" from="2268" to="2271" />
+ <span id="t_317" from="2272" to="2279" />
+ <span id="t_318" from="2280" to="2286" />
+ <span id="t_319" from="2287" to="2292" />
+ <span id="t_320" from="2293" to="2296" />
+ <span id="t_321" from="2297" to="2301" />
+ <span id="t_322" from="2302" to="2303" />
+ <span id="t_323" from="2303" to="2316" />
+ <span id="t_324" from="2316" to="2317" />
+ <span id="t_325" from="2318" to="2326" />
+ <span id="t_326" from="2327" to="2340" />
+ <span id="t_327" from="2340" to="2341" />
+ <span id="t_328" from="2341" to="2342" />
+ <span id="t_329" from="2343" to="2346" />
+ <span id="t_330" from="2347" to="2348" />
+ <span id="t_331" from="2348" to="2361" />
+ <span id="t_332" from="2362" to="2365" />
+ <span id="t_333" from="2366" to="2378" />
+ <span id="t_334" from="2378" to="2379" />
+ <span id="t_335" from="2379" to="2380" />
+ <span id="t_336" from="2381" to="2384" />
+ <span id="t_337" from="2385" to="2386" />
+ <span id="t_338" from="2386" to="2399" />
+ <span id="t_339" from="2400" to="2403" />
+ <span id="t_340" from="2404" to="2406" />
+ <span id="t_341" from="2407" to="2411" />
+ <span id="t_342" from="2411" to="2412" />
+ <span id="t_343" from="2412" to="2413" />
+ <span id="t_344" from="2414" to="2417" />
+ <span id="t_345" from="2418" to="2419" />
+ <span id="t_346" from="2419" to="2425" />
+ <span id="t_347" from="2426" to="2446" />
+ <span id="t_348" from="2446" to="2447" />
+ <span id="t_349" from="2448" to="2451" />
+ <span id="t_350" from="2452" to="2455" />
+ <span id="t_351" from="2456" to="2458" />
+ <span id="t_352" from="2459" to="2464" />
+ <span id="t_353" from="2465" to="2469" />
+ <span id="t_354" from="2470" to="2473" />
+ <span id="t_355" from="2474" to="2475" />
+ <span id="t_356" from="2476" to="2478" />
+ <span id="t_357" from="2479" to="2482" />
+ <span id="t_358" from="2483" to="2496" />
+ <span id="t_359" from="2497" to="2500" />
+ <span id="t_360" from="2501" to="2514" />
+ <span id="t_361" from="2515" to="2516" />
+ <span id="t_362" from="2516" to="2521" />
+ <span id="t_363" from="2522" to="2535" />
+ <span id="t_364" from="2535" to="2536" />
+ <span id="t_365" from="2537" to="2545" />
+ <span id="t_366" from="2545" to="2546" />
+ <span id="t_367" from="2547" to="2549" />
+ <span id="t_368" from="2550" to="2560" />
+ <span id="t_369" from="2561" to="2566" />
+ <span id="t_370" from="2567" to="2570" />
+ <span id="t_371" from="2571" to="2585" />
+ <span id="t_372" from="2586" to="2587" />
+ <span id="t_373" from="2587" to="2595" />
+ <span id="t_374" from="2595" to="2596" />
+ <span id="t_375" from="2597" to="2610" />
+ <span id="t_376" from="2610" to="2611" />
+ <span id="t_377" from="2612" to="2619" />
+ <span id="t_378" from="2619" to="2620" />
+ <span id="t_379" from="2621" to="2627" />
+ <span id="t_380" from="2628" to="2640" />
+ <span id="t_381" from="2641" to="2644" />
+ <span id="t_382" from="2645" to="2658" />
+ <span id="t_383" from="2659" to="2662" />
+ <span id="t_384" from="2662" to="2663" />
+ <span id="t_385" from="2665" to="2683" />
+ <span id="t_386" from="2686" to="2689" />
+ <span id="t_387" from="2690" to="2708" />
+ <span id="t_388" from="2709" to="2716" />
+ <span id="t_389" from="2717" to="2729" />
+ <span id="t_390" from="2730" to="2733" />
+ <span id="t_391" from="2734" to="2745" />
+ <span id="t_392" from="2746" to="2760" />
+ <span id="t_393" from="2760" to="2761" />
+ <span id="t_394" from="2762" to="2765" />
+ <span id="t_395" from="2766" to="2770" />
+ <span id="t_396" from="2771" to="2781" />
+ <span id="t_397" from="2782" to="2792" />
+ <span id="t_398" from="2793" to="2796" />
+ <span id="t_399" from="2797" to="2801" />
+ <span id="t_400" from="2802" to="2812" />
+ <span id="t_401" from="2813" to="2826" />
+ <span id="t_402" from="2827" to="2828" />
+ <span id="t_403" from="2828" to="2836" />
+ <span id="t_404" from="2837" to="2860" />
+ <span id="t_405" from="2860" to="2861" />
+ <span id="t_406" from="2862" to="2870" />
+ <span id="t_407" from="2870" to="2871" />
+ <span id="t_408" from="2872" to="2874" />
+ <span id="t_409" from="2875" to="2881" />
+ <span id="t_410" from="2882" to="2888" />
+ <span id="t_411" from="2889" to="2893" />
+ <span id="t_412" from="2893" to="2894" />
+ <span id="t_413" from="2895" to="2898" />
+ <span id="t_414" from="2899" to="2903" />
+ <span id="t_415" from="2904" to="2909" />
+ <span id="t_416" from="2910" to="2913" />
+ <span id="t_417" from="2914" to="2925" />
+ <span id="t_418" from="2926" to="2934" />
+ <span id="t_419" from="2934" to="2935" />
+ <span id="t_420" from="2936" to="2940" />
+ <span id="t_421" from="2941" to="2954" />
+ <span id="t_422" from="2954" to="2955" />
+ <span id="t_423" from="2956" to="2962" />
+ <span id="t_424" from="2963" to="2966" />
+ <span id="t_425" from="2967" to="2978" />
+ <span id="t_426" from="2979" to="2987" />
+ <span id="t_427" from="2988" to="2992" />
+ <span id="t_428" from="2993" to="2998" />
+ <span id="t_429" from="2999" to="3002" />
+ <span id="t_430" from="3003" to="3006" />
+ <span id="t_431" from="3007" to="3018" />
+ <span id="t_432" from="3019" to="3024" />
+ <span id="t_433" from="3025" to="3034" />
+ <span id="t_434" from="3035" to="3041" />
+ <span id="t_435" from="3041" to="3042" />
+ <span id="t_436" from="3043" to="3048" />
+ <span id="t_437" from="3049" to="3052" />
+ <span id="t_438" from="3053" to="3064" />
+ <span id="t_439" from="3065" to="3070" />
+ <span id="t_440" from="3071" to="3074" />
+ <span id="t_441" from="3075" to="3079" />
+ <span id="t_442" from="3080" to="3104" />
+ <span id="t_443" from="3105" to="3111" />
+ <span id="t_444" from="3112" to="3125" />
+ <span id="t_445" from="3126" to="3129" />
+ <span id="t_446" from="3130" to="3136" />
+ <span id="t_447" from="3137" to="3140" />
+ <span id="t_448" from="3141" to="3163" />
+ <span id="t_449" from="3163" to="3164" />
+ <span id="t_450" from="3165" to="3177" />
+ <span id="t_451" from="3178" to="3182" />
+ <span id="t_452" from="3183" to="3187" />
+ <span id="t_453" from="3188" to="3196" />
+ <span id="t_454" from="3197" to="3200" />
+ <span id="t_455" from="3201" to="3211" />
+ <span id="t_456" from="3212" to="3218" />
+ <span id="t_457" from="3219" to="3230" />
+ <span id="t_458" from="3230" to="3231" />
+ <span id="t_459" from="3232" to="3235" />
+ <span id="t_460" from="3236" to="3242" />
+ <span id="t_461" from="3243" to="3248" />
+ <span id="t_462" from="3249" to="3260" />
+ <span id="t_463" from="3261" to="3267" />
+ <span id="t_464" from="3268" to="3271" />
+ <span id="t_465" from="3272" to="3280" />
+ <span id="t_466" from="3281" to="3284" />
+ <span id="t_467" from="3285" to="3297" />
+ <span id="t_468" from="3298" to="3302" />
+ <span id="t_469" from="3303" to="3307" />
+ <span id="t_470" from="3308" to="3310" />
+ <span id="t_471" from="3311" to="3314" />
+ <span id="t_472" from="3315" to="3322" />
+ <span id="t_473" from="3322" to="3323" />
+ <span id="t_474" from="3324" to="3329" />
+ <span id="t_475" from="3330" to="3334" />
+ <span id="t_476" from="3335" to="3338" />
+ <span id="t_477" from="3339" to="3344" />
+ <span id="t_478" from="3345" to="3363" />
+ <span id="t_479" from="3364" to="3367" />
+ <span id="t_480" from="3368" to="3375" />
+ <span id="t_481" from="3376" to="3384" />
+ <span id="t_482" from="3385" to="3391" />
+ <span id="t_483" from="3391" to="3392" />
+ <span id="t_484" from="3393" to="3402" />
+ <span id="t_485" from="3403" to="3407" />
+ <span id="t_486" from="3408" to="3411" />
+ <span id="t_487" from="3412" to="3416" />
+ <span id="t_488" from="3417" to="3427" />
+ <span id="t_489" from="3428" to="3431" />
+ <span id="t_490" from="3432" to="3448" />
+ <span id="t_491" from="3448" to="3449" />
+ <span id="t_492" from="3450" to="3466" />
+ <span id="t_493" from="3466" to="3467" />
+ <span id="t_494" from="3468" to="3481" />
+ <span id="t_495" from="3482" to="3485" />
+ <span id="t_496" from="3486" to="3497" />
+ <span id="t_497" from="3497" to="3498" />
+ <span id="t_498" from="3499" to="3503" />
+ <span id="t_499" from="3503" to="3504" />
+ <span id="t_500" from="3504" to="3510" />
+ <span id="t_501" from="3511" to="3514" />
+ <span id="t_502" from="3515" to="3516" />
+ <span id="t_503" from="3516" to="3525" />
+ <span id="t_504" from="3525" to="3526" />
+ <span id="t_505" from="3527" to="3545" />
+ <span id="t_506" from="3546" to="3561" />
+ <span id="t_507" from="3562" to="3565" />
+ <span id="t_508" from="3566" to="3584" />
+ <span id="t_509" from="3585" to="3590" />
+ <span id="t_510" from="3591" to="3601" />
+ <span id="t_511" from="3602" to="3618" />
+ <span id="t_512" from="3619" to="3626" />
+ <span id="t_513" from="3626" to="3627" />
+ <span id="t_514" from="3628" to="3630" />
+ <span id="t_515" from="3631" to="3633" />
+ <span id="t_516" from="3634" to="3637" />
+ <span id="t_517" from="3638" to="3644" />
+ <span id="t_518" from="3645" to="3648" />
+ <span id="t_519" from="3649" to="3657" />
+ <span id="t_520" from="3658" to="3662" />
+ <span id="t_521" from="3663" to="3665" />
+ <span id="t_522" from="3666" to="3669" />
+ <span id="t_523" from="3670" to="3675" />
+ <span id="t_524" from="3676" to="3679" />
+ <span id="t_525" from="3680" to="3687" />
+ <span id="t_526" from="3688" to="3702" />
+ <span id="t_527" from="3702" to="3703" />
+ <span id="t_528" from="3704" to="3707" />
+ <span id="t_529" from="3708" to="3717" />
+ <span id="t_530" from="3718" to="3721" />
+ <span id="t_531" from="3722" to="3729" />
+ <span id="t_532" from="3730" to="3738" />
+ <span id="t_533" from="3739" to="3742" />
+ <span id="t_534" from="3743" to="3749" />
+ <span id="t_535" from="3750" to="3759" />
+ <span id="t_536" from="3760" to="3767" />
+ <span id="t_537" from="3768" to="3771" />
+ <span id="t_538" from="3772" to="3777" />
+ <span id="t_539" from="3778" to="3783" />
+ <span id="t_540" from="3784" to="3790" />
+ <span id="t_541" from="3791" to="3794" />
+ <span id="t_542" from="3795" to="3798" />
+ <span id="t_543" from="3799" to="3806" />
+ <span id="t_544" from="3807" to="3810" />
+ <span id="t_545" from="3811" to="3817" />
+ <span id="t_546" from="3818" to="3822" />
+ <span id="t_547" from="3823" to="3829" />
+ <span id="t_548" from="3829" to="3830" />
+ <span id="t_549" from="3831" to="3835" />
+ <span id="t_550" from="3836" to="3844" />
+ <span id="t_551" from="3845" to="3853" />
+ <span id="t_552" from="3854" to="3857" />
+ <span id="t_553" from="3858" to="3863" />
+ <span id="t_554" from="3864" to="3876" />
+ <span id="t_555" from="3877" to="3880" />
+ <span id="t_556" from="3881" to="3888" />
+ <span id="t_557" from="3888" to="3889" />
+ <span id="t_558" from="3890" to="3898" />
+ <span id="t_559" from="3899" to="3900" />
+ <span id="t_560" from="3901" to="3904" />
+ <span id="t_561" from="3905" to="3918" />
+ <span id="t_562" from="3919" to="3922" />
+ <span id="t_563" from="3923" to="3928" />
+ <span id="t_564" from="3929" to="3932" />
+ <span id="t_565" from="3933" to="3940" />
+ <span id="t_566" from="3941" to="3950" />
+ <span id="t_567" from="3951" to="3954" />
+ <span id="t_568" from="3955" to="3965" />
+ <span id="t_569" from="3966" to="3975" />
+ <span id="t_570" from="3976" to="3977" />
+ <span id="t_571" from="3977" to="3987" />
+ <span id="t_572" from="3988" to="3997" />
+ <span id="t_573" from="3998" to="4001" />
+ <span id="t_574" from="4002" to="4011" />
+ <span id="t_575" from="4011" to="4012" />
+ <span id="t_576" from="4013" to="4018" />
+ <span id="t_577" from="4019" to="4028" />
+ <span id="t_578" from="4029" to="4032" />
+ <span id="t_579" from="4033" to="4052" />
+ <span id="t_580" from="4053" to="4054" />
+ <span id="t_581" from="4054" to="4057" />
+ <span id="t_582" from="4057" to="4058" />
+ <span id="t_583" from="4059" to="4066" />
+ <span id="t_584" from="4066" to="4067" />
+ <span id="t_585" from="4068" to="4073" />
+ <span id="t_586" from="4074" to="4088" />
+ <span id="t_587" from="4089" to="4098" />
+ <span id="t_588" from="4099" to="4105" />
+ <span id="t_589" from="4106" to="4109" />
+ <span id="t_590" from="4110" to="4113" />
+ <span id="t_591" from="4114" to="4124" />
+ <span id="t_592" from="4125" to="4141" />
+ <span id="t_593" from="4142" to="4145" />
+ <span id="t_594" from="4146" to="4159" />
+ <span id="t_595" from="4160" to="4165" />
+ <span id="t_596" from="4165" to="4166" />
+ <span id="t_597" from="4167" to="4176" />
+ <span id="t_598" from="4177" to="4181" />
+ <span id="t_599" from="4182" to="4192" />
+ <span id="t_600" from="4193" to="4208" />
+ <span id="t_601" from="4209" to="4212" />
+ <span id="t_602" from="4213" to="4235" />
+ <span id="t_603" from="4236" to="4239" />
+ <span id="t_604" from="4240" to="4243" />
+ <span id="t_605" from="4244" to="4257" />
+ <span id="t_606" from="4258" to="4263" />
+ <span id="t_607" from="4264" to="4267" />
+ <span id="t_608" from="4268" to="4281" />
+ <span id="t_609" from="4282" to="4291" />
+ <span id="t_610" from="4291" to="4292" />
+ <span id="t_611" from="4293" to="4300" />
+ <span id="t_612" from="4301" to="4312" />
+ <span id="t_613" from="4313" to="4316" />
+ <span id="t_614" from="4317" to="4330" />
+ <span id="t_615" from="4331" to="4335" />
+ <span id="t_616" from="4336" to="4347" />
+ <span id="t_617" from="4347" to="4348" />
+ <span id="t_618" from="4349" to="4352" />
+ <span id="t_619" from="4353" to="4363" />
+ <span id="t_620" from="4364" to="4369" />
+ <span id="t_621" from="4370" to="4382" />
+ <span id="t_622" from="4383" to="4398" />
+ <span id="t_623" from="4399" to="4407" />
+ <span id="t_624" from="4408" to="4413" />
+ <span id="t_625" from="4414" to="4438" />
+ <span id="t_626" from="4439" to="4450" />
+ <span id="t_627" from="4450" to="4451" />
+ <span id="t_628" from="4452" to="4455" />
+ <span id="t_629" from="4456" to="4460" />
+ <span id="t_630" from="4461" to="4477" />
+ <span id="t_631" from="4478" to="4489" />
+ <span id="t_632" from="4490" to="4493" />
+ <span id="t_633" from="4493" to="4494" />
+ <span id="t_634" from="4496" to="4499" />
+ <span id="t_635" from="4500" to="4507" />
+ <span id="t_636" from="4508" to="4511" />
+ <span id="t_637" from="4512" to="4530" />
+ <span id="t_638" from="4531" to="4534" />
+ <span id="t_639" from="4534" to="4535" />
+ <span id="t_640" from="4536" to="4544" />
+ <span id="t_641" from="4545" to="4550" />
+ <span id="t_642" from="4551" to="4554" />
+ <span id="t_643" from="4555" to="4558" />
+ <span id="t_644" from="4559" to="4565" />
+ <span id="t_645" from="4566" to="4569" />
+ <span id="t_646" from="4570" to="4585" />
+ <span id="t_647" from="4586" to="4588" />
+ <span id="t_648" from="4589" to="4592" />
+ <span id="t_649" from="4593" to="4604" />
+ <span id="t_650" from="4605" to="4628" />
+ <span id="t_651" from="4629" to="4632" />
+ <span id="t_652" from="4633" to="4639" />
+ <span id="t_653" from="4640" to="4642" />
+ <span id="t_654" from="4642" to="4643" />
+ <span id="t_655" from="4644" to="4650" />
+ <span id="t_656" from="4651" to="4660" />
+ <span id="t_657" from="4662" to="4668" />
+ <span id="t_658" from="4669" to="4673" />
+ <span id="t_659" from="4674" to="4693" />
+ <span id="t_660" from="4693" to="4694" />
+ <span id="t_661" from="4695" to="4697" />
+ <span id="t_662" from="4698" to="4702" />
+ <span id="t_663" from="4702" to="4703" />
+ <span id="t_664" from="4704" to="4709" />
+ <span id="t_665" from="4710" to="4719" />
+ <span id="t_666" from="4720" to="4723" />
+ <span id="t_667" from="4724" to="4727" />
+ <span id="t_668" from="4728" to="4735" />
+ <span id="t_669" from="4735" to="4736" />
+ <span id="t_670" from="4737" to="4749" />
+ <span id="t_671" from="4750" to="4754" />
+ <span id="t_672" from="4755" to="4758" />
+ <span id="t_673" from="4759" to="4763" />
+ <span id="t_674" from="4764" to="4767" />
+ <span id="t_675" from="4768" to="4779" />
+ <span id="t_676" from="4780" to="4785" />
+ <span id="t_677" from="4786" to="4804" />
+ <span id="t_678" from="4805" to="4813" />
+ <span id="t_679" from="4814" to="4822" />
+ <span id="t_680" from="4822" to="4823" />
+ <span id="t_681" from="4824" to="4835" />
+ <span id="t_682" from="4836" to="4839" />
+ <span id="t_683" from="4840" to="4848" />
+ <span id="t_684" from="4849" to="4859" />
+ <span id="t_685" from="4860" to="4870" />
+ <span id="t_686" from="4871" to="4874" />
+ <span id="t_687" from="4875" to="4884" />
+ <span id="t_688" from="4884" to="4885" />
+ <span id="t_689" from="4886" to="4896" />
+ <span id="t_690" from="4897" to="4901" />
+ <span id="t_691" from="4902" to="4905" />
+ <span id="t_692" from="4906" to="4915" />
+ <span id="t_693" from="4916" to="4928" />
+ <span id="t_694" from="4928" to="4929" />
+ <span id="t_695" from="4930" to="4934" />
+ <span id="t_696" from="4935" to="4939" />
+ <span id="t_697" from="4940" to="4943" />
+ <span id="t_698" from="4944" to="4951" />
+ <span id="t_699" from="4952" to="4960" />
+ <span id="t_700" from="4961" to="4971" />
+ <span id="t_701" from="4971" to="4972" />
+ <span id="t_702" from="4973" to="4980" />
+ <span id="t_703" from="4981" to="4982" />
+ <span id="t_704" from="4983" to="4986" />
+ <span id="t_705" from="4987" to="4990" />
+ <span id="t_706" from="4991" to="5002" />
+ <span id="t_707" from="5003" to="5004" />
+ <span id="t_708" from="5004" to="5007" />
+ <span id="t_709" from="5008" to="5015" />
+ <span id="t_710" from="5016" to="5017" />
+ <span id="t_711" from="5017" to="5018" />
+ <span id="t_712" from="5018" to="5019" />
+ <span id="t_713" from="5020" to="5022" />
+ <span id="t_714" from="5023" to="5030" />
+ <span id="t_715" from="5031" to="5034" />
+ <span id="t_716" from="5035" to="5071" />
+ <span id="t_717" from="5072" to="5075" />
+ <span id="t_718" from="5076" to="5089" />
+ <span id="t_719" from="5090" to="5093" />
+ <span id="t_720" from="5094" to="5104" />
+ <span id="t_721" from="5105" to="5108" />
+ <span id="t_722" from="5109" to="5112" />
+ <span id="t_723" from="5113" to="5123" />
+ <span id="t_724" from="5124" to="5129" />
+ <span id="t_725" from="5130" to="5135" />
+ <span id="t_726" from="5136" to="5144" />
+ <span id="t_727" from="5145" to="5146" />
+ <span id="t_728" from="5146" to="5163" />
+ <span id="t_729" from="5163" to="5164" />
+ <span id="t_730" from="5164" to="5165" />
+ <span id="t_731" from="5167" to="5182" />
+ <span id="t_732" from="5184" to="5188" />
+ <span id="t_733" from="5188" to="5189" />
+ <span id="t_734" from="5189" to="5194" />
+ <span id="t_735" from="5194" to="5195" />
+ <span id="t_736" from="5195" to="5201" />
+ <span id="t_737" from="5202" to="5205" />
+ <span id="t_738" from="5206" to="5217" />
+ <span id="t_739" from="5218" to="5222" />
+ <span id="t_740" from="5223" to="5247" />
+ <span id="t_741" from="5248" to="5260" />
+ <span id="t_742" from="5261" to="5266" />
+ <span id="t_743" from="5267" to="5270" />
+ <span id="t_744" from="5271" to="5287" />
+ <span id="t_745" from="5287" to="5288" />
+ <span id="t_746" from="5289" to="5292" />
+ <span id="t_747" from="5293" to="5295" />
+ <span id="t_748" from="5296" to="5299" />
+ <span id="t_749" from="5300" to="5318" />
+ <span id="t_750" from="5319" to="5330" />
+ <span id="t_751" from="5331" to="5335" />
+ <span id="t_752" from="5335" to="5336" />
+ <span id="t_753" from="5337" to="5343" />
+ <span id="t_754" from="5344" to="5348" />
+ <span id="t_755" from="5349" to="5376" />
+ <span id="t_756" from="5377" to="5396" />
+ <span id="t_757" from="5397" to="5410" />
+ <span id="t_758" from="5411" to="5414" />
+ <span id="t_759" from="5415" to="5427" />
+ <span id="t_760" from="5427" to="5428" />
+ <span id="t_761" from="5429" to="5433" />
+ <span id="t_762" from="5434" to="5437" />
+ <span id="t_763" from="5438" to="5444" />
+ <span id="t_764" from="5445" to="5451" />
+ <span id="t_765" from="5452" to="5457" />
+ <span id="t_766" from="5458" to="5468" />
+ <span id="t_767" from="5469" to="5475" />
+ <span id="t_768" from="5476" to="5480" />
+ <span id="t_769" from="5481" to="5486" />
+ <span id="t_770" from="5487" to="5499" />
+ <span id="t_771" from="5500" to="5503" />
+ <span id="t_772" from="5504" to="5519" />
+ <span id="t_773" from="5520" to="5525" />
+ <span id="t_774" from="5526" to="5539" />
+ <span id="t_775" from="5539" to="5540" />
+ <span id="t_776" from="5541" to="5548" />
+ <span id="t_777" from="5549" to="5563" />
+ <span id="t_778" from="5564" to="5574" />
+ <span id="t_779" from="5575" to="5578" />
+ <span id="t_780" from="5579" to="5602" />
+ <span id="t_781" from="5603" to="5606" />
+ <span id="t_782" from="5607" to="5619" />
+ <span id="t_783" from="5620" to="5623" />
+ <span id="t_784" from="5624" to="5641" />
+ <span id="t_785" from="5642" to="5646" />
+ <span id="t_786" from="5647" to="5652" />
+ <span id="t_787" from="5653" to="5656" />
+ <span id="t_788" from="5657" to="5666" />
+ <span id="t_789" from="5667" to="5671" />
+ <span id="t_790" from="5671" to="5672" />
+ <span id="t_791" from="5673" to="5681" />
+ <span id="t_792" from="5682" to="5692" />
+ <span id="t_793" from="5693" to="5703" />
+ <span id="t_794" from="5704" to="5710" />
+ <span id="t_795" from="5711" to="5715" />
+ <span id="t_796" from="5716" to="5721" />
+ <span id="t_797" from="5722" to="5723" />
+ <span id="t_798" from="5723" to="5726" />
+ <span id="t_799" from="5727" to="5733" />
+ <span id="t_800" from="5734" to="5738" />
+ <span id="t_801" from="5739" to="5751" />
+ <span id="t_802" from="5751" to="5752" />
+ <span id="t_803" from="5752" to="5753" />
+ <span id="t_804" from="5754" to="5759" />
+ <span id="t_805" from="5760" to="5768" />
+ <span id="t_806" from="5769" to="5773" />
+ <span id="t_807" from="5774" to="5776" />
+ <span id="t_808" from="5777" to="5793" />
+ <span id="t_809" from="5794" to="5803" />
+ <span id="t_810" from="5803" to="5804" />
+ <span id="t_811" from="5805" to="5807" />
+ <span id="t_812" from="5808" to="5810" />
+ <span id="t_813" from="5811" to="5813" />
+ <span id="t_814" from="5814" to="5828" />
+ <span id="t_815" from="5829" to="5832" />
+ <span id="t_816" from="5833" to="5836" />
+ <span id="t_817" from="5837" to="5854" />
+ <span id="t_818" from="5855" to="5859" />
+ <span id="t_819" from="5860" to="5881" />
+ <span id="t_820" from="5881" to="5882" />
+ <span id="t_821" from="5883" to="5886" />
+ <span id="t_822" from="5887" to="5897" />
+ <span id="t_823" from="5898" to="5901" />
+ <span id="t_824" from="5902" to="5906" />
+ <span id="t_825" from="5907" to="5915" />
+ <span id="t_826" from="5916" to="5919" />
+ <span id="t_827" from="5920" to="5936" />
+ <span id="t_828" from="5936" to="5937" />
+ <span id="t_829" from="5938" to="5957" />
+ <span id="t_830" from="5958" to="5967" />
+ <span id="t_831" from="5968" to="5971" />
+ <span id="t_832" from="5972" to="5977" />
+ <span id="t_833" from="5978" to="5990" />
+ <span id="t_834" from="5991" to="6007" />
+ <span id="t_835" from="6008" to="6015" />
+ <span id="t_836" from="6016" to="6019" />
+ <span id="t_837" from="6020" to="6030" />
+ <span id="t_838" from="6031" to="6033" />
+ <span id="t_839" from="6034" to="6044" />
+ <span id="t_840" from="6045" to="6058" />
+ <span id="t_841" from="6059" to="6065" />
+ <span id="t_842" from="6066" to="6067" />
+ <span id="t_843" from="6067" to="6070" />
+ <span id="t_844" from="6071" to="6079" />
+ <span id="t_845" from="6080" to="6085" />
+ <span id="t_846" from="6086" to="6089" />
+ <span id="t_847" from="6090" to="6103" />
+ <span id="t_848" from="6103" to="6104" />
+ <span id="t_849" from="6104" to="6105" />
+ <span id="t_850" from="6106" to="6110" />
+ <span id="t_851" from="6111" to="6118" />
+ <span id="t_852" from="6119" to="6123" />
+ <span id="t_853" from="6124" to="6132" />
+ <span id="t_854" from="6133" to="6134" />
+ <span id="t_855" from="6134" to="6139" />
+ <span id="t_856" from="6140" to="6153" />
+ <span id="t_857" from="6153" to="6154" />
+ <span id="t_858" from="6154" to="6155" />
+ <span id="t_859" from="6156" to="6159" />
+ <span id="t_860" from="6160" to="6164" />
+ <span id="t_861" from="6165" to="6168" />
+ <span id="t_862" from="6169" to="6194" />
+ <span id="t_863" from="6195" to="6224" />
+ <span id="t_864" from="6225" to="6234" />
+ <span id="t_865" from="6234" to="6235" />
+ <span id="t_866" from="6236" to="6240" />
+ <span id="t_867" from="6241" to="6244" />
+ <span id="t_868" from="6245" to="6266" />
+ <span id="t_869" from="6267" to="6271" />
+ <span id="t_870" from="6272" to="6275" />
+ <span id="t_871" from="6276" to="6296" />
+ <span id="t_872" from="6297" to="6302" />
+ <span id="t_873" from="6303" to="6305" />
+ <span id="t_874" from="6306" to="6309" />
+ <span id="t_875" from="6310" to="6317" />
+ <span id="t_876" from="6318" to="6325" />
+ <span id="t_877" from="6325" to="6326" />
+ <span id="t_878" from="6327" to="6334" />
+ <span id="t_879" from="6335" to="6337" />
+ <span id="t_880" from="6338" to="6370" />
+ <span id="t_881" from="6371" to="6380" />
+ <span id="t_882" from="6381" to="6384" />
+ <span id="t_883" from="6385" to="6392" />
+ <span id="t_884" from="6393" to="6398" />
+ <span id="t_885" from="6398" to="6399" />
+ <span id="t_886" from="6400" to="6405" />
+ <span id="t_887" from="6406" to="6413" />
+ <span id="t_888" from="6414" to="6420" />
+ <span id="t_889" from="6421" to="6424" />
+ <span id="t_890" from="6425" to="6438" />
+ <span id="t_891" from="6439" to="6442" />
+ <span id="t_892" from="6443" to="6446" />
+ <span id="t_893" from="6447" to="6468" />
+ <span id="t_894" from="6469" to="6481" />
+ <span id="t_895" from="6482" to="6485" />
+ <span id="t_896" from="6486" to="6495" />
+ <span id="t_897" from="6496" to="6502" />
+ <span id="t_898" from="6503" to="6516" />
+ <span id="t_899" from="6517" to="6520" />
+ <span id="t_900" from="6521" to="6533" />
+ <span id="t_901" from="6534" to="6548" />
+ <span id="t_902" from="6549" to="6555" />
+ <span id="t_903" from="6555" to="6556" />
+ <span id="t_904" from="6557" to="6561" />
+ <span id="t_905" from="6562" to="6572" />
+ <span id="t_906" from="6573" to="6576" />
+ <span id="t_907" from="6577" to="6592" />
+ <span id="t_908" from="6593" to="6596" />
+ <span id="t_909" from="6597" to="6606" />
+ <span id="t_910" from="6607" to="6618" />
+ <span id="t_911" from="6619" to="6621" />
+ <span id="t_912" from="6622" to="6625" />
+ <span id="t_913" from="6626" to="6644" />
+ <span id="t_914" from="6645" to="6652" />
+ <span id="t_915" from="6652" to="6653" />
+ <span id="t_916" from="6656" to="6664" />
+ <span id="t_917" from="6666" to="6669" />
+ <span id="t_918" from="6670" to="6680" />
+ <span id="t_919" from="6681" to="6683" />
+ <span id="t_920" from="6684" to="6691" />
+ <span id="t_921" from="6692" to="6697" />
+ <span id="t_922" from="6698" to="6703" />
+ <span id="t_923" from="6704" to="6708" />
+ <span id="t_924" from="6709" to="6714" />
+ <span id="t_925" from="6715" to="6729" />
+ <span id="t_926" from="6730" to="6734" />
+ <span id="t_927" from="6735" to="6740" />
+ <span id="t_928" from="6741" to="6751" />
+ <span id="t_929" from="6751" to="6752" />
+ <span id="t_930" from="6753" to="6758" />
+ <span id="t_931" from="6759" to="6764" />
+ <span id="t_932" from="6765" to="6768" />
+ <span id="t_933" from="6769" to="6780" />
+ <span id="t_934" from="6780" to="6781" />
+ <span id="t_935" from="6782" to="6795" />
+ <span id="t_936" from="6795" to="6796" />
+ <span id="t_937" from="6797" to="6808" />
+ <span id="t_938" from="6809" to="6813" />
+ <span id="t_939" from="6814" to="6822" />
+ <span id="t_940" from="6823" to="6833" />
+ <span id="t_941" from="6833" to="6834" />
+ <span id="t_942" from="6835" to="6847" />
+ <span id="t_943" from="6848" to="6856" />
+ <span id="t_944" from="6857" to="6860" />
+ <span id="t_945" from="6861" to="6870" />
+ <span id="t_946" from="6871" to="6879" />
+ <span id="t_947" from="6879" to="6880" />
+ <span id="t_948" from="6883" to="6892" />
+ <span id="t_949" from="6894" to="6898" />
+ <span id="t_950" from="6898" to="6899" />
+ <span id="t_951" from="6899" to="6907" />
+ <span id="t_952" from="6908" to="6921" />
+ <span id="t_953" from="6922" to="6932" />
+ <span id="t_954" from="6933" to="6936" />
+ <span id="t_955" from="6937" to="6955" />
+ <span id="t_956" from="6956" to="6959" />
+ <span id="t_957" from="6960" to="6969" />
+ <span id="t_958" from="6970" to="6975" />
+ <span id="t_959" from="6976" to="6986" />
+ <span id="t_960" from="6987" to="6992" />
+ <span id="t_961" from="6993" to="6996" />
+ <span id="t_962" from="6997" to="7000" />
+ <span id="t_963" from="7001" to="7011" />
+ <span id="t_964" from="7012" to="7014" />
+ <span id="t_965" from="7014" to="7015" />
+ <span id="t_966" from="7016" to="7020" />
+ <span id="t_967" from="7021" to="7028" />
+ <span id="t_968" from="7029" to="7032" />
+ <span id="t_969" from="7033" to="7051" />
+ <span id="t_970" from="7052" to="7055" />
+ <span id="t_971" from="7056" to="7079" />
+ <span id="t_972" from="7079" to="7080" />
+ <span id="t_973" from="7080" to="7085" />
+ <span id="t_974" from="7086" to="7100" />
+ <span id="t_975" from="7101" to="7110" />
+ <span id="t_976" from="7111" to="7115" />
+ <span id="t_977" from="7115" to="7116" />
+ <span id="t_978" from="7117" to="7121" />
+ <span id="t_979" from="7122" to="7125" />
+ <span id="t_980" from="7126" to="7128" />
+ <span id="t_981" from="7129" to="7130" />
+ <span id="t_982" from="7130" to="7131" />
+ <span id="t_983" from="7132" to="7137" />
+ <span id="t_984" from="7138" to="7143" />
+ <span id="t_985" from="7143" to="7144" />
+ <span id="t_986" from="7145" to="7147" />
+ <span id="t_987" from="7148" to="7154" />
+ <span id="t_988" from="7155" to="7162" />
+ <span id="t_989" from="7163" to="7169" />
+ <span id="t_990" from="7170" to="7173" />
+ <span id="t_991" from="7174" to="7177" />
+ <span id="t_992" from="7178" to="7185" />
+ <span id="t_993" from="7186" to="7189" />
+ <span id="t_994" from="7190" to="7207" />
+ <span id="t_995" from="7208" to="7223" />
+ <span id="t_996" from="7224" to="7234" />
+ <span id="t_997" from="7234" to="7235" />
+ <span id="t_998" from="7236" to="7239" />
+ <span id="t_999" from="7240" to="7251" />
+ <span id="t_1000" from="7252" to="7255" />
+ <span id="t_1001" from="7256" to="7269" />
+ <span id="t_1002" from="7270" to="7277" />
+ <span id="t_1003" from="7278" to="7282" />
+ <span id="t_1004" from="7283" to="7291" />
+ <span id="t_1005" from="7292" to="7295" />
+ <span id="t_1006" from="7295" to="7296" />
+ <span id="t_1007" from="7297" to="7313" />
+ <span id="t_1008" from="7314" to="7320" />
+ <span id="t_1009" from="7321" to="7327" />
+ <span id="t_1010" from="7328" to="7332" />
+ <span id="t_1011" from="7333" to="7339" />
+ <span id="t_1012" from="7340" to="7343" />
+ <span id="t_1013" from="7344" to="7346" />
+ <span id="t_1014" from="7347" to="7350" />
+ <span id="t_1015" from="7351" to="7356" />
+ <span id="t_1016" from="7357" to="7368" />
+ <span id="t_1017" from="7368" to="7369" />
+ <span id="t_1018" from="7370" to="7373" />
+ <span id="t_1019" from="7374" to="7376" />
+ <span id="t_1020" from="7377" to="7382" />
+ <span id="t_1021" from="7383" to="7391" />
+ <span id="t_1022" from="7392" to="7402" />
+ <span id="t_1023" from="7402" to="7403" />
+ <span id="t_1024" from="7404" to="7407" />
+ <span id="t_1025" from="7408" to="7427" />
+ <span id="t_1026" from="7427" to="7428" />
+ <span id="t_1027" from="7429" to="7435" />
+ <span id="t_1028" from="7436" to="7444" />
+ <span id="t_1029" from="7445" to="7448" />
+ <span id="t_1030" from="7449" to="7462" />
+ <span id="t_1031" from="7463" to="7468" />
+ <span id="t_1032" from="7469" to="7482" />
+ <span id="t_1033" from="7483" to="7486" />
+ <span id="t_1034" from="7487" to="7510" />
+ <span id="t_1035" from="7511" to="7517" />
+ <span id="t_1036" from="7518" to="7522" />
+ <span id="t_1037" from="7522" to="7523" />
+ <span id="t_1038" from="7524" to="7527" />
+ <span id="t_1039" from="7528" to="7535" />
+ <span id="t_1040" from="7536" to="7542" />
+ <span id="t_1041" from="7543" to="7548" />
+ <span id="t_1042" from="7549" to="7553" />
+ <span id="t_1043" from="7554" to="7557" />
+ <span id="t_1044" from="7558" to="7563" />
+ <span id="t_1045" from="7564" to="7574" />
+ <span id="t_1046" from="7575" to="7579" />
+ <span id="t_1047" from="7579" to="7580" />
+ <span id="t_1048" from="7581" to="7584" />
+ <span id="t_1049" from="7585" to="7604" />
+ <span id="t_1050" from="7605" to="7610" />
+ <span id="t_1051" from="7611" to="7614" />
+ <span id="t_1052" from="7615" to="7618" />
+ <span id="t_1053" from="7619" to="7622" />
+ <span id="t_1054" from="7623" to="7626" />
+ <span id="t_1055" from="7627" to="7633" />
+ <span id="t_1056" from="7634" to="7636" />
+ <span id="t_1057" from="7636" to="7637" />
+ <span id="t_1058" from="7638" to="7640" />
+ <span id="t_1059" from="7641" to="7647" />
+ <span id="t_1060" from="7648" to="7651" />
+ <span id="t_1061" from="7652" to="7656" />
+ <span id="t_1062" from="7657" to="7660" />
+ <span id="t_1063" from="7661" to="7663" />
+ <span id="t_1064" from="7664" to="7668" />
+ <span id="t_1065" from="7669" to="7684" />
+ <span id="t_1066" from="7685" to="7688" />
+ <span id="t_1067" from="7689" to="7698" />
+ <span id="t_1068" from="7698" to="7699" />
+ <span id="t_1069" from="7700" to="7705" />
+ <span id="t_1070" from="7706" to="7714" />
+ <span id="t_1071" from="7715" to="7718" />
+ <span id="t_1072" from="7719" to="7722" />
+ <span id="t_1073" from="7722" to="7723" />
+ <span id="t_1074" from="7724" to="7735" />
+ <span id="t_1075" from="7736" to="7741" />
+ <span id="t_1076" from="7742" to="7745" />
+ <span id="t_1077" from="7746" to="7757" />
+ <span id="t_1078" from="7758" to="7766" />
+ <span id="t_1079" from="7767" to="7770" />
+ <span id="t_1080" from="7771" to="7778" />
+ <span id="t_1081" from="7779" to="7792" />
+ <span id="t_1082" from="7793" to="7796" />
+ <span id="t_1083" from="7797" to="7806" />
+ <span id="t_1084" from="7807" to="7810" />
+ <span id="t_1085" from="7811" to="7824" />
+ <span id="t_1086" from="7824" to="7825" />
+ <span id="t_1087" from="7826" to="7829" />
+ <span id="t_1088" from="7830" to="7849" />
+ <span id="t_1089" from="7850" to="7853" />
+ <span id="t_1090" from="7854" to="7858" />
+ <span id="t_1091" from="7859" to="7864" />
+ <span id="t_1092" from="7865" to="7869" />
+ <span id="t_1093" from="7870" to="7879" />
+ <span id="t_1094" from="7880" to="7891" />
+ <span id="t_1095" from="7891" to="7892" />
+ <span id="t_1096" from="7894" to="7903" />
+ <span id="t_1097" from="7905" to="7908" />
+ <span id="t_1098" from="7909" to="7918" />
+ <span id="t_1099" from="7919" to="7924" />
+ <span id="t_1100" from="7925" to="7935" />
+ <span id="t_1101" from="7936" to="7941" />
+ <span id="t_1102" from="7942" to="7950" />
+ <span id="t_1103" from="7951" to="7956" />
+ <span id="t_1104" from="7957" to="7967" />
+ <span id="t_1105" from="7968" to="7971" />
+ <span id="t_1106" from="7972" to="7979" />
+ <span id="t_1107" from="7980" to="7982" />
+ <span id="t_1108" from="7983" to="7987" />
+ <span id="t_1109" from="7988" to="7995" />
+ <span id="t_1110" from="7996" to="8004" />
+ <span id="t_1111" from="8004" to="8005" />
+ <span id="t_1112" from="8006" to="8021" />
+ <span id="t_1113" from="8022" to="8028" />
+ <span id="t_1114" from="8029" to="8033" />
+ <span id="t_1115" from="8034" to="8036" />
+ <span id="t_1116" from="8037" to="8049" />
+ <span id="t_1117" from="8050" to="8074" />
+ <span id="t_1118" from="8075" to="8078" />
+ <span id="t_1119" from="8079" to="8085" />
+ <span id="t_1120" from="8086" to="8092" />
+ <span id="t_1121" from="8093" to="8100" />
+ <span id="t_1122" from="8100" to="8101" />
+ <span id="t_1123" from="8102" to="8106" />
+ <span id="t_1124" from="8107" to="8110" />
+ <span id="t_1125" from="8111" to="8114" />
+ <span id="t_1126" from="8115" to="8123" />
+ <span id="t_1127" from="8124" to="8131" />
+ <span id="t_1128" from="8132" to="8135" />
+ <span id="t_1129" from="8136" to="8139" />
+ <span id="t_1130" from="8140" to="8153" />
+ <span id="t_1131" from="8153" to="8154" />
+ <span id="t_1132" from="8155" to="8164" />
+ <span id="t_1133" from="8165" to="8171" />
+ <span id="t_1134" from="8172" to="8176" />
+ <span id="t_1135" from="8177" to="8181" />
+ <span id="t_1136" from="8182" to="8187" />
+ <span id="t_1137" from="8188" to="8193" />
+ <span id="t_1138" from="8194" to="8197" />
+ <span id="t_1139" from="8198" to="8201" />
+ <span id="t_1140" from="8202" to="8215" />
+ <span id="t_1141" from="8216" to="8219" />
+ <span id="t_1142" from="8220" to="8223" />
+ <span id="t_1143" from="8224" to="8231" />
+ <span id="t_1144" from="8232" to="8235" />
+ <span id="t_1145" from="8236" to="8241" />
+ <span id="t_1146" from="8242" to="8254" />
+ <span id="t_1147" from="8255" to="8263" />
+ <span id="t_1148" from="8264" to="8267" />
+ <span id="t_1149" from="8268" to="8279" />
+ <span id="t_1150" from="8279" to="8280" />
+ <span id="t_1151" from="8281" to="8293" />
+ <span id="t_1152" from="8293" to="8294" />
+ <span id="t_1153" from="8295" to="8304" />
+ <span id="t_1154" from="8304" to="8305" />
+ <span id="t_1155" from="8306" to="8310" />
+ <span id="t_1156" from="8311" to="8318" />
+ <span id="t_1157" from="8319" to="8322" />
+ <span id="t_1158" from="8323" to="8333" />
+ <span id="t_1159" from="8334" to="8337" />
+ <span id="t_1160" from="8338" to="8346" />
+ <span id="t_1161" from="8346" to="8347" />
+ <span id="t_1162" from="8348" to="8355" />
+ <span id="t_1163" from="8356" to="8372" />
+ <span id="t_1164" from="8373" to="8378" />
+ <span id="t_1165" from="8379" to="8387" />
+ <span id="t_1166" from="8388" to="8395" />
+ <span id="t_1167" from="8395" to="8396" />
+ <span id="t_1168" from="8397" to="8399" />
+ <span id="t_1169" from="8400" to="8404" />
+ <span id="t_1170" from="8405" to="8407" />
+ <span id="t_1171" from="8408" to="8417" />
+ <span id="t_1172" from="8417" to="8418" />
+ <span id="t_1173" from="8419" to="8425" />
+ <span id="t_1174" from="8426" to="8429" />
+ <span id="t_1175" from="8430" to="8443" />
+ <span id="t_1176" from="8444" to="8455" />
+ <span id="t_1177" from="8456" to="8462" />
+ <span id="t_1178" from="8462" to="8463" />
+ <span id="t_1179" from="8464" to="8471" />
+ <span id="t_1180" from="8472" to="8475" />
+ <span id="t_1181" from="8476" to="8479" />
+ <span id="t_1182" from="8480" to="8489" />
+ <span id="t_1183" from="8490" to="8493" />
+ <span id="t_1184" from="8494" to="8508" />
+ <span id="t_1185" from="8508" to="8509" />
+ <span id="t_1186" from="8510" to="8521" />
+ <span id="t_1187" from="8522" to="8528" />
+ <span id="t_1188" from="8529" to="8532" />
+ <span id="t_1189" from="8533" to="8549" />
+ <span id="t_1190" from="8550" to="8571" />
+ <span id="t_1191" from="8571" to="8572" />
+ <span id="t_1192" from="8573" to="8589" />
+ <span id="t_1193" from="8590" to="8593" />
+ <span id="t_1194" from="8594" to="8607" />
+ <span id="t_1195" from="8608" to="8611" />
+ <span id="t_1196" from="8612" to="8625" />
+ <span id="t_1197" from="8626" to="8642" />
+ <span id="t_1198" from="8643" to="8649" />
+ <span id="t_1199" from="8650" to="8653" />
+ <span id="t_1200" from="8654" to="8656" />
+ <span id="t_1201" from="8657" to="8661" />
+ <span id="t_1202" from="8662" to="8665" />
+ <span id="t_1203" from="8666" to="8673" />
+ <span id="t_1204" from="8674" to="8680" />
+ <span id="t_1205" from="8681" to="8683" />
+ <span id="t_1206" from="8684" to="8706" />
+ <span id="t_1207" from="8707" to="8717" />
+ <span id="t_1208" from="8718" to="8724" />
+ <span id="t_1209" from="8725" to="8728" />
+ <span id="t_1210" from="8729" to="8735" />
+ <span id="t_1211" from="8735" to="8736" />
+ <span id="t_1212" from="8737" to="8739" />
+ <span id="t_1213" from="8740" to="8743" />
+ <span id="t_1214" from="8744" to="8752" />
+ <span id="t_1215" from="8753" to="8766" />
+ <span id="t_1216" from="8767" to="8776" />
+ <span id="t_1217" from="8777" to="8781" />
+ <span id="t_1218" from="8782" to="8797" />
+ <span id="t_1219" from="8798" to="8805" />
+ <span id="t_1220" from="8805" to="8806" />
+ <span id="t_1221" from="8808" to="8818" />
+ <span id="t_1222" from="8820" to="8822" />
+ <span id="t_1223" from="8823" to="8826" />
+ <span id="t_1224" from="8827" to="8837" />
+ <span id="t_1225" from="8838" to="8842" />
+ <span id="t_1226" from="8843" to="8856" />
+ <span id="t_1227" from="8857" to="8873" />
+ <span id="t_1228" from="8874" to="8882" />
+ <span id="t_1229" from="8882" to="8883" />
+ <span id="t_1230" from="8884" to="8891" />
+ <span id="t_1231" from="8892" to="8894" />
+ <span id="t_1232" from="8895" to="8905" />
+ <span id="t_1233" from="8906" to="8918" />
+ <span id="t_1234" from="8919" to="8932" />
+ <span id="t_1235" from="8933" to="8953" />
+ <span id="t_1236" from="8953" to="8954" />
+ <span id="t_1237" from="8955" to="8963" />
+ <span id="t_1238" from="8964" to="8975" />
+ <span id="t_1239" from="8976" to="8979" />
+ <span id="t_1240" from="8980" to="8993" />
+ <span id="t_1241" from="8994" to="9000" />
+ <span id="t_1242" from="9001" to="9003" />
+ <span id="t_1243" from="9004" to="9009" />
+ <span id="t_1244" from="9010" to="9030" />
+ <span id="t_1245" from="9030" to="9031" />
+ <span id="t_1246" from="9032" to="9038" />
+ <span id="t_1247" from="9039" to="9047" />
+ <span id="t_1248" from="9047" to="9048" />
+ <span id="t_1249" from="9049" to="9052" />
+ <span id="t_1250" from="9053" to="9059" />
+ <span id="t_1251" from="9060" to="9063" />
+ <span id="t_1252" from="9064" to="9073" />
+ <span id="t_1253" from="9073" to="9074" />
+ <span id="t_1254" from="9075" to="9082" />
+ <span id="t_1255" from="9083" to="9087" />
+ <span id="t_1256" from="9088" to="9097" />
+ <span id="t_1257" from="9098" to="9107" />
+ <span id="t_1258" from="9108" to="9110" />
+ <span id="t_1259" from="9110" to="9111" />
+ <span id="t_1260" from="9112" to="9119" />
+ <span id="t_1261" from="9120" to="9126" />
+ <span id="t_1262" from="9127" to="9131" />
+ <span id="t_1263" from="9132" to="9141" />
+ <span id="t_1264" from="9142" to="9148" />
+ <span id="t_1265" from="9149" to="9151" />
+ <span id="t_1266" from="9152" to="9162" />
+ <span id="t_1267" from="9162" to="9163" />
+ <span id="t_1268" from="9164" to="9174" />
+ <span id="t_1269" from="9175" to="9179" />
+ <span id="t_1270" from="9180" to="9190" />
+ <span id="t_1271" from="9191" to="9195" />
+ <span id="t_1272" from="9196" to="9201" />
+ <span id="t_1273" from="9202" to="9205" />
+ <span id="t_1274" from="9206" to="9208" />
+ <span id="t_1275" from="9209" to="9214" />
+ <span id="t_1276" from="9215" to="9231" />
+ <span id="t_1277" from="9232" to="9235" />
+ <span id="t_1278" from="9236" to="9245" />
+ <span id="t_1279" from="9246" to="9249" />
+ <span id="t_1280" from="9250" to="9260" />
+ <span id="t_1281" from="9261" to="9270" />
+ <span id="t_1282" from="9270" to="9271" />
+ <span id="t_1283" from="9273" to="9283" />
+ <span id="t_1284" from="9285" to="9289" />
+ <span id="t_1285" from="9289" to="9290" />
+ <span id="t_1286" from="9290" to="9296" />
+ <span id="t_1287" from="9297" to="9302" />
+ <span id="t_1288" from="9303" to="9322" />
+ <span id="t_1289" from="9323" to="9326" />
+ <span id="t_1290" from="9327" to="9346" />
+ <span id="t_1291" from="9347" to="9348" />
+ <span id="t_1292" from="9348" to="9363" />
+ <span id="t_1293" from="9363" to="9364" />
+ <span id="t_1294" from="9365" to="9369" />
+ <span id="t_1295" from="9369" to="9370" />
+ <span id="t_1296" from="9370" to="9375" />
+ <span id="t_1297" from="9375" to="9376" />
+ <span id="t_1298" from="9376" to="9390" />
+ <span id="t_1299" from="9391" to="9394" />
+ <span id="t_1300" from="9395" to="9403" />
+ <span id="t_1301" from="9404" to="9407" />
+ <span id="t_1302" from="9408" to="9411" />
+ <span id="t_1303" from="9412" to="9419" />
+ <span id="t_1304" from="9421" to="9429" />
+ <span id="t_1305" from="9432" to="9447" />
+ </spanList>
+</layer>
\ No newline at end of file
diff --git a/t/real/corpus/ICCGER/DeReKo-WPD17/B00-26993/data.xml b/t/real/corpus/ICCGER/DeReKo-WPD17/B00-26993/data.xml
new file mode 100644
index 0000000..95df716
--- /dev/null
+++ b/t/real/corpus/ICCGER/DeReKo-WPD17/B00-26993/data.xml
@@ -0,0 +1,8 @@
+<?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="ICCGER_DeReKo-WPD17.B00-26993"
+ xmlns="http://ids-mannheim.de/ns/KorAP">
+ <text>Eine Biomembran ist eine Trennschicht zwischen Zellkompartimenten. Innerhalb der Zelle trennen unterschiedlich aufgebaute Biomembranen das Innere von Organellen oder Vakuolen vom Cytoplasma. Eine Biomembran hat durch Membrankomponenten eine aktive Rolle beim selektiven Transport von Molekülen und der Übermittlung von Informationen zwischen den beiden Kompartimenten, zwischen denen sich diese Biomembranbefindet. Permeabilität Da die Biomembran vor allem eine Trennschichtzwischen verschiedenen Bereichen darstellt, ist sie für die meistenMoleküle undurchlässig. Kleinere lipophile Moleküle können frei durch die Lipiddoppelschicht der Membran diffundieren, wie zum Beispiel Kohlendioxid, Alkohole und Harnstoff. Um die Durchlässigkeit der Membran für lipophobe Teilchen wie Wasser, oder große Teilchen wie Ionen oder Zuckermoleküle zu ermöglichen, sind in die Membran verschiedene Transportproteine eingelagert, die für denTransport bestimmter Stoffe zuständig sind. Deshalb spricht man von selektiver Permeabilität . Aufbau Eine Biomembran ist stets topologisch geschlossen und umschließteinen Raum. Nicht in sich geschlossene Membranen kommen in intakten Zellennicht vor. Biomembranen sind asymmetrisch: sie haben eine dem Cytoplasma zugewandte plasmatische Seite (P-Seite) und eine extraplasmatische Seite (E-Seite). Biomembranen bestehen aus Lipiden und Proteinen. An die Proteine können Kohlenhydratketten geknüpft sein. Der Lipidanteil bildet als Lipiddoppelschicht die Grundsubstanz der Membran und ist für ihre besonderen physikochemischen Eigenschaftenverantwortlich. Insbesondere wirkt diese Doppelschicht als passiveTrennschicht. Steroide wie das Cholesterin gehen eine hydrophobe Wechselwirkung mit denLipiden ein und verfestigen, bei hohen Konzentrationen in der Biomembran,die ansonsten flexible Biomembran. Darüber hinaus sind auf und innerhalb der Membran Proteine verteilt, welche die aktiven Funktionen der Membranübernehmen. Die Proteine haben nur eine sehr geringe Stützfunktion derBiomembran, da sie durch die Lipidschichten schwimmen. Biomembranen können anhand ihrer Dichte charakterisiert werden; sie liegt meist zwischen 1,12 und 1,22 g·cm−3. Die Dichte ist vom Gewichtsverhältnis der Proteine zu denLipiden abhängig: je nach Funktion der Membran werden Werte von 0,25 (Myelinmembran, geringer Proteinanteil), 1,3 (Plasmamembran von Erythrozyten), 2,5 (Plasmamembran von E. coli), 2,9 (Innere Mitochondrienmembran) bis hin zu einem Wert von 5 in der Purpurmembran bei Halobacterium (hoher Proteinanteil) gefunden. In bestimmten Arten von Zellorganellen (Zellkern, Mitochondrium, Plastid) treten Biomembranen als Doppelmembran auf. Lipiddoppelschicht Die Lipiddoppelschicht besteht größtenteils aus amphiphilen Phospholipiden, die eine hydrophile Kopfgruppe und eine hydrophobe Schwanzgruppe (meistens Kohlenwasserstoffketten) besitzen. In Wasser bildet sich, als eine Folge des hydrophoben Effektes, eine Doppelschicht, beider die hydrophoben Schwänze nach innen und die hydrophilen Köpfe nachaußen zeigen. Wegen des hydrophoben Kerns ist eine solcheLipiddoppelschicht nahezu undurchlässig für Wasser und wasserlöslicheMoleküle, gleichzeitig aber sehr flexibel und mechanisch schwer zuzerstören. Aus diesem Grund hinterlässt selbst ein Einstich mit einerPipette kein Loch in der Membran. Dafür kann sie durch Lipidlösungsmittel und Lipasen zerstört werden. Membranen sind aus drei Haupttypen von Lipidenaufgebaut: Phosphoglyceride, Sphingolipide und Cholesterin. mini|Schema der (flüssigen) Lipiddoppelschicht einerBiomembran Die Lipiddoppelschicht einer Biomembran istnormalerweise flüssig, d. h. die Lipide und Proteine sind in der Ebene der Membran rechtbeweglich. Ein Austausch von Lipiden zwischen den beiden Schichten odergar ein Lösen eines Lipids von der Membran ist jedoch sehr selten. Eine gezielte Bewegung von einer Membranseite zur anderen( Flipflop ) ist normalerweise nur unter dem aktiven Mitwirken von speziellen Proteinen (sogenannte Flippasen und Floppasen) unter Verbrauch von Adenosintriphosphat (ATP) möglich. Dabei transportieren Flippasen Lipide von der Außenseite derPlasmamembran zur cytosolischen Seite. Floppasen sind klassische ABC-Transporter und befördernMembranlipide von der cytosolischen Seite der Plasmamembran nachaußen. Weitere Transporter für Membranlipide sind Scramblasen, die allerdings nicht ATP-abhängig Membranlipidein Richtung ihres Konzentrationsgradienten austauschen, bis sich einGleichgewicht eingestellt hat. Wie flüssig die Lipiddoppelschicht ist, hängtvor allem von der Anzahl der Doppelbindungen in den hydrophoben Kohlenwasserstoffketten der Lipide ab, einige Bakterien nutzen auch Kettenverzweigungen. Je mehr, desto flüssiger ist die Membran. Andererseits wird der Grad der Flüssigkeit durch andereeingelagerte Moleküle bestimmt. Cholesterin zum Beispiel vermindert einerseits die Fluidität, verhindert aber bei niedrigen Temperaturen, dass sich die Membran gelartig verfestigt. Vitamin E ist ein Antioxidans (wie Vitamin C), es schützt die ungesättigtenKohlenwasserstoffketten der Phospholipide der Biomembran vor der Zerstörung durch freie Radikale (Lipidperoxidation). Membranproteine mini|500px|Modell der Zellmembran nach demFlüssig-Mosaik-Modell Verschiedene Arten von Membranproteinen, die in die Lipiddoppelschicht eingelagert sind, sorgen über Protein-Lipid-Interaktionen fürunterschiedliche Eigenschaften der Biomembranen. Auch die beiden Seiten einer Biomembran können sich durch dieAnordnung der Membranproteine stark unterscheiden. Während beispielsweise Rezeptoren für Zell-Zell-Kommunikation und fürDetektion von Umweltveränderung nach außen hin gerichtet sind, weisenan Reaktionen beteiligte Enzyme nach innen (sie liegen also imCytoplasma). Viele Proteine sind am Membrantransport beteiligt, d. h. am Stoffaustausch und der Signalübertragung über spezifischeRezeptoren. Gut untersucht ist eine Vielzahl von Membranproteinen, dieunterschiedliche Zellarten und deren Reifestadien charakterisieren undsich von Individuum zu Individuum unterscheiden können (zum Beispiel Blut- und Gewebegruppen). Dazu gehören auch Moleküle (meist Glykoproteine), die nach dem Schlüssel-Schloss-Prinzip zurEigen-Fremd-Unterscheidung beitragen. Nach dem Flüssig-Mosaik-Modell sind die Membranproteinenicht starr in der Membran fixiert, sondern zu hochdynamischenOrtsveränderungen innerhalb der Membran fähig. Diese Dynamik bildet die Voraussetzung für die Auslösungmannigfacher Signalketten auf Zellebene sowohl intrazellulär als auchzwischen kooperierenden Zellen. Eine Einteilung der Membranproteine ist nachihrer Verankerung in der Lipiddoppelschicht möglich: Funktion Das Zytoplasma im Inneren einer Zelle wird durch eineBiomembran nach außen abgegrenzt. Diese nennt man Zellmembran, Plasmamembran, Plasmalemma oder Membrana cellularis. Biomembranen besitzen die folgenden Aufgaben: Fluidität mini|Einfluss ungesättigter Fettsäuren auf dieMembranstruktur Die Fluidität einer Biomembran hängt von der Temperatur ab. Eine Membran aus Phosphatidylcholin und Phosphatidylethanolamin,deren Fettsäurereste gesättigt sind, wäre bei 37 °C recht fluid. In diesem Zustand könnte man die Membran als zweidimensionalen Flüssigkristall betrachten. Die Längsachsen der Phospholipide richten sich parallel aus, diePhospholipide selbst können sich drehen und in der Ebene freibewegen. Bis zu einer gewissen Temperatur, der Übergangstemperatur, istdie Bewegung der Phospholipide stark eingeschränkt und dieMembraneigenschaften ändern sich, der Zustand ähnelt jetzt eher dem eines gefrorenen Gels. Die Übergangstemperatur hängt von der Art der Lipide ab; je kürzer sie sind und je mehr Doppelbindungen sie enthalten, desto geringer ist sie. Cholesterin stört die gewöhnliche Struktur der Membran undverringert die Mobilität der Membranlipide. Die Übergangstemperatur ist dann nicht mehr eindeutig zubestimmen. Bedeutung Die Fluidität einer Biomembran liegt zwischen starr undflüssig und erlaubt so eine gewisse Struktur. Membranproteine können sich zu funktionalen Einheitenzusammenlangern und später wieder trennen. Dies ist zum Beispiel wichtig für die Photosynthese. Fluidität spielt auch eine große Rolle bei der Membrangenese und ist wichtig für viele grundlegende Prozesse wie Zellteilung, Zellwachstum, Sekretion, etc. Während die Temperatur oft schwankt, mussdie Membranfluidität dabei konstant bleiben. Um dies zu erreichen, können die Membranlipide modifiziert werden: Möglich ist ein Austausch von Phospholipiden; Desaturasen können aus Einfachbindungen Doppelbindungenbilden, Phosphatrückgrat und Lipidschwänze der Phospholipide könnenumverteilt werden und es kann ein höherer Anteil an ungesättigteFettsäuren produziert werden als vorher. So ist speziell wechselwarmen Lebewesen eine Umweltanpassung möglich. Lipidflöße In der Biomembran sind Lipidmoleküle nichtgleichmäßig verteilt, sondern es existieren Mikrodomänen mitbesonderer Lipidzusammensetzung. Speziell Cholesterin und Sphingolipide neigen zu solch einemZusammenschluss. Manche Proteine, wie solche mit GPI-Anker, sammeln sich insolchen Bereichen an, während andere dort besonders selten zu findensind. Vermutlich sind Lipidflöße sehr klein und in einem ständigenProzess der Auflösung und Neubildung begriffen. Geschichte mini|Schema einer Lipid-Doppelschicht mit peripherenProteinen (Sandwich-Modell) mini|150px|Versuchsschema des Versuchs von und von1972 Weblinks Einzelnachweise </text>
+</raw_text>
\ No newline at end of file
diff --git a/t/real/corpus/ICCGER/DeReKo-WPD17/B00-26993/header.xml b/t/real/corpus/ICCGER/DeReKo-WPD17/B00-26993/header.xml
new file mode 100644
index 0000000..c6c6dba
--- /dev/null
+++ b/t/real/corpus/ICCGER/DeReKo-WPD17/B00-26993/header.xml
@@ -0,0 +1,37 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<teiHeader>
+ <fileDesc>
+ <titleStmt>
+ <title>WPD17/B00.26993 Biomembran, In: Wikipedia -
+ URL:http://de.wikipedia.org/wiki/Biomembran: Wikipedia, 2017 [Extract]</title>
+ <respStmt>
+ <resp>compiled by ICC</resp>
+ <name>ICC: IDS</name>
+ </respStmt>
+ </titleStmt>
+ <publicationStmt>
+ <distributor>
+ <note>NOT FOR DISTRIBUTION</note>
+ <note>German Reference Corpus DeReKo</note>
+ </distributor>
+ <idno>ID</idno>
+ </publicationStmt>
+ <sourceDesc>
+ <bibl>
+ <author>Ghilt, u.a.</author>
+ <title>Biomembran</title>
+ <pubPlace/>
+ <publisher/>
+ <date when="2017">2017</date>
+ </bibl>
+ </sourceDesc>
+ </fileDesc>
+ <profileDesc>
+ <textClass>
+ <classCode scheme="ICC">Learned_Natural_Sciences</classCode>
+ </textClass>
+ </profileDesc>
+ <revisionDesc>
+ <change when="2022-12-21" who="IDS">Updated conversion from TEI I5</change>
+ </revisionDesc>
+ </teiHeader>
\ No newline at end of file
diff --git a/t/real/corpus/ICCGER/DeReKo-WPD17/B00-26993/struct/structure.xml b/t/real/corpus/ICCGER/DeReKo-WPD17/B00-26993/struct/structure.xml
new file mode 100644
index 0000000..f9b2300
--- /dev/null
+++ b/t/real/corpus/ICCGER/DeReKo-WPD17/B00-26993/struct/structure.xml
@@ -0,0 +1,1738 @@
+<?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="ICCGER_DeReKo-WPD17.B00-26993"
+ xmlns="http://ids-mannheim.de/ns/KorAP"
+ version="KorAP-0.4">
+ <spanList>
+ <span id="s0" from="0" to="9450" l="1">
+ <fs type="struct" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="name">text</f>
+ </fs>
+ </span>
+ <span id="s1" from="0" to="9450" l="2">
+ <fs type="struct" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="name">body</f>
+ </fs>
+ </span>
+ <span id="s2" from="0" to="414" l="3">
+ <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="type">fix2</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s3" from="0" to="414" l="4">
+ <fs type="struct" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="name">p</f>
+ </fs>
+ </span>
+ <span id="s4" from="0" to="66" l="5">
+ <fs type="struct" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="name">s</f>
+ </fs>
+ </span>
+ <span id="s5" from="5" to="15" l="6">
+ <fs type="struct" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="name">hi</f>
+ <f name="attr">
+ <fs type="attr">
+ <f name="rend">bo</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s6" from="25" to="37" l="6">
+ <fs type="struct" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="name">ref</f>
+ <f name="attr">
+ <fs type="attr">
+ <f name="target">https://de.wikipedia.org/wiki/Membran_%28Trennschicht%29</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s7" from="47" to="65" l="6">
+ <fs type="struct" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="name">ref</f>
+ <f name="attr">
+ <fs type="attr">
+ <f name="target">https://de.wikipedia.org/wiki/Zellkompartiment</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s8" from="67" to="190" l="5">
+ <fs type="struct" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="name">s</f>
+ </fs>
+ </span>
+ <span id="s9" from="150" to="160" l="6">
+ <fs type="struct" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="name">ref</f>
+ <f name="attr">
+ <fs type="attr">
+ <f name="target">https://de.wikipedia.org/wiki/Organell</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s10" from="166" to="174" l="6">
+ <fs type="struct" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="name">ref</f>
+ <f name="attr">
+ <fs type="attr">
+ <f name="target">https://de.wikipedia.org/wiki/Vakuole</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s11" from="179" to="189" l="6">
+ <fs type="struct" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="name">ref</f>
+ <f name="attr">
+ <fs type="attr">
+ <f name="target">https://de.wikipedia.org/wiki/Cytoplasma</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s12" from="191" to="414" l="5">
+ <fs type="struct" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="name">s</f>
+ </fs>
+ </span>
+ <span id="s13" from="284" to="293" l="6">
+ <fs type="struct" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="name">ref</f>
+ <f name="attr">
+ <fs type="attr">
+ <f name="target">https://de.wikipedia.org/wiki/Molek%C3%BCl</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s14" from="353" to="367" l="6">
+ <fs type="struct" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="name">ref</f>
+ <f name="attr">
+ <fs type="attr">
+ <f name="target">https://de.wikipedia.org/wiki/Zellkompartiment</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s15" from="414" to="1023" l="3">
+ <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="type">fix2</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s16" from="414" to="430" l="4">
+ <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="s17" from="415" to="430" l="5">
+ <fs type="struct" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="name">s</f>
+ </fs>
+ </span>
+ <span id="s18" from="430" to="430" l="4">
+ <fs type="struct" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="name">p</f>
+ </fs>
+ </span>
+ <span id="s19" from="430" to="430" l="5">
+ <fs type="struct" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="name">s</f>
+ </fs>
+ </span>
+ <span id="s20" from="430" to="430" l="6">
+ <fs type="struct" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="name">gap</f>
+ <f name="attr">
+ <fs type="attr">
+ <f name="reason">template</f>
+ <f name="instant">false</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s21" from="430" to="1023" l="4">
+ <fs type="struct" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="name">p</f>
+ </fs>
+ </span>
+ <span id="s22" from="431" to="566" l="5">
+ <fs type="struct" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="name">s</f>
+ </fs>
+ </span>
+ <span id="s23" from="567" to="716" l="5">
+ <fs type="struct" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="name">s</f>
+ </fs>
+ </span>
+ <span id="s24" from="576" to="585" l="6">
+ <fs type="struct" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="name">ref</f>
+ <f name="attr">
+ <fs type="attr">
+ <f name="target">https://de.wikipedia.org/wiki/Lipophil</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s25" from="679" to="691" l="6">
+ <fs type="struct" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="name">ref</f>
+ <f name="attr">
+ <fs type="attr">
+ <f name="target">https://de.wikipedia.org/wiki/Kohlendioxid</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s26" from="693" to="701" l="6">
+ <fs type="struct" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="name">ref</f>
+ <f name="attr">
+ <fs type="attr">
+ <f name="target">https://de.wikipedia.org/wiki/Alkohole</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s27" from="706" to="715" l="6">
+ <fs type="struct" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="name">ref</f>
+ <f name="attr">
+ <fs type="attr">
+ <f name="target">https://de.wikipedia.org/wiki/Harnstoff</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s28" from="717" to="971" l="5">
+ <fs type="struct" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="name">s</f>
+ </fs>
+ </span>
+ <span id="s29" from="811" to="816" l="6">
+ <fs type="struct" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="name">ref</f>
+ <f name="attr">
+ <fs type="attr">
+ <f name="target">https://de.wikipedia.org/wiki/Ion</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s30" from="822" to="833" l="6">
+ <fs type="struct" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="name">ref</f>
+ <f name="attr">
+ <fs type="attr">
+ <f name="target">https://de.wikipedia.org/wiki/Zucker</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s31" from="886" to="903" l="6">
+ <fs type="struct" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="name">ref</f>
+ <f name="attr">
+ <fs type="attr">
+ <f name="target">https://de.wikipedia.org/wiki/Transportprotein</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s32" from="972" to="1023" l="5">
+ <fs type="struct" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="name">s</f>
+ </fs>
+ </span>
+ <span id="s33" from="996" to="1020" l="6">
+ <fs type="struct" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="name">ref</f>
+ <f name="attr">
+ <fs type="attr">
+ <f name="target">https://de.wikipedia.org/wiki/Selektive_Permeabilit%C3%A4t</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s34" from="1021" to="1021" l="6">
+ <fs type="struct" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="name">ptr</f>
+ <f name="attr">
+ <fs type="attr">
+ <f name="target">WPD17.B00.26993-f1</f>
+ <f name="rend">ref</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s35" from="1023" to="2663" l="3">
+ <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="type">fix2</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s36" from="1023" to="1032" l="4">
+ <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="s37" from="1024" to="1032" l="5">
+ <fs type="struct" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="name">s</f>
+ </fs>
+ </span>
+ <span id="s38" from="1032" to="1327" l="4">
+ <fs type="struct" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="name">p</f>
+ </fs>
+ </span>
+ <span id="s39" from="1033" to="1108" l="5">
+ <fs type="struct" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="name">s</f>
+ </fs>
+ </span>
+ <span id="s40" from="1109" to="1181" l="5">
+ <fs type="struct" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="name">s</f>
+ </fs>
+ </span>
+ <span id="s41" from="1182" to="1327" l="5">
+ <fs type="struct" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="name">s</f>
+ </fs>
+ </span>
+ <span id="s42" from="1255" to="1273" l="6">
+ <fs type="struct" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="name">hi</f>
+ <f name="attr">
+ <fs type="attr">
+ <f name="rend">it</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s43" from="1293" to="1316" l="6">
+ <fs type="struct" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="name">hi</f>
+ <f name="attr">
+ <fs type="attr">
+ <f name="rend">it</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s44" from="1327" to="1327" l="6">
+ <fs type="struct" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="name">ptr</f>
+ <f name="attr">
+ <fs type="attr">
+ <f name="target">WPD17.B00.26993-f2</f>
+ <f name="rend">ref</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s45" from="1327" to="2064" l="4">
+ <fs type="struct" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="name">p</f>
+ </fs>
+ </span>
+ <span id="s46" from="1328" to="1376" l="5">
+ <fs type="struct" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="name">s</f>
+ </fs>
+ </span>
+ <span id="s47" from="1354" to="1361" l="6">
+ <fs type="struct" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="name">ref</f>
+ <f name="attr">
+ <fs type="attr">
+ <f name="target">https://de.wikipedia.org/wiki/Lipide</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s48" from="1366" to="1375" l="6">
+ <fs type="struct" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="name">ref</f>
+ <f name="attr">
+ <fs type="attr">
+ <f name="target">https://de.wikipedia.org/wiki/Protein</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s49" from="1377" to="1433" l="5">
+ <fs type="struct" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="name">s</f>
+ </fs>
+ </span>
+ <span id="s50" from="1434" to="1584" l="5">
+ <fs type="struct" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="name">s</f>
+ </fs>
+ </span>
+ <span id="s51" from="1461" to="1479" l="6">
+ <fs type="struct" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="name">ref</f>
+ <f name="attr">
+ <fs type="attr">
+ <f name="target">https://de.wikipedia.org/wiki/Lipiddoppelschicht</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s52" from="1538" to="1555" l="6">
+ <fs type="struct" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="name">ref</f>
+ <f name="attr">
+ <fs type="attr">
+ <f name="target">https://de.wikipedia.org/wiki/Physikalische_Chemie</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s53" from="1585" to="1648" l="5">
+ <fs type="struct" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="name">s</f>
+ </fs>
+ </span>
+ <span id="s54" from="1648" to="1829" l="5">
+ <fs type="struct" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="name">s</f>
+ </fs>
+ </span>
+ <span id="s55" from="1649" to="1657" l="6">
+ <fs type="struct" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="name">ref</f>
+ <f name="attr">
+ <fs type="attr">
+ <f name="target">https://de.wikipedia.org/wiki/Steroide</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s56" from="1666" to="1677" l="6">
+ <fs type="struct" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="name">ref</f>
+ <f name="attr">
+ <fs type="attr">
+ <f name="target">https://de.wikipedia.org/wiki/Cholesterin</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s57" from="1830" to="1951" l="5">
+ <fs type="struct" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="name">s</f>
+ </fs>
+ </span>
+ <span id="s58" from="1880" to="1888" l="6">
+ <fs type="struct" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="name">ref</f>
+ <f name="attr">
+ <fs type="attr">
+ <f name="target">https://de.wikipedia.org/wiki/Protein</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s59" from="1952" to="2064" l="5">
+ <fs type="struct" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="name">s</f>
+ </fs>
+ </span>
+ <span id="s60" from="2064" to="2546" l="4">
+ <fs type="struct" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="name">p</f>
+ </fs>
+ </span>
+ <span id="s61" from="2065" to="2175" l="5">
+ <fs type="struct" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="name">s</f>
+ </fs>
+ </span>
+ <span id="s62" from="2098" to="2104" l="6">
+ <fs type="struct" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="name">ref</f>
+ <f name="attr">
+ <fs type="attr">
+ <f name="target">https://de.wikipedia.org/wiki/Dichte_%28Physik%29</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s63" from="2172" to="2174" l="6">
+ <fs type="struct" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="name">hi</f>
+ <f name="attr">
+ <fs type="attr">
+ <f name="rend">super</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s64" from="2176" to="2546" l="5">
+ <fs type="struct" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="name">s</f>
+ </fs>
+ </span>
+ <span id="s65" from="2303" to="2316" l="6">
+ <fs type="struct" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="name">ref</f>
+ <f name="attr">
+ <fs type="attr">
+ <f name="target">https://de.wikipedia.org/wiki/Myelin</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s66" from="2366" to="2378" l="6">
+ <fs type="struct" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="name">ref</f>
+ <f name="attr">
+ <fs type="attr">
+ <f name="target">https://de.wikipedia.org/wiki/Erythrozyten</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s67" from="2404" to="2411" l="6">
+ <fs type="struct" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="name">ref</f>
+ <f name="attr">
+ <fs type="attr">
+ <f name="target">https://de.wikipedia.org/wiki/E._coli</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s68" from="2426" to="2446" l="6">
+ <fs type="struct" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="name">ref</f>
+ <f name="attr">
+ <fs type="attr">
+ <f name="target">https://de.wikipedia.org/wiki/Mitochondrien</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s69" from="2483" to="2496" l="6">
+ <fs type="struct" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="name">ref</f>
+ <f name="attr">
+ <fs type="attr">
+ <f name="target">https://de.wikipedia.org/wiki/Purpurmembran</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s70" from="2501" to="2514" l="6">
+ <fs type="struct" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="name">ref</f>
+ <f name="attr">
+ <fs type="attr">
+ <f name="target">https://de.wikipedia.org/wiki/Halobacterium</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s71" from="2546" to="2546" l="6">
+ <fs type="struct" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="name">ptr</f>
+ <f name="attr">
+ <fs type="attr">
+ <f name="target">WPD17.B00.26993-f3</f>
+ <f name="rend">ref</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s72" from="2546" to="2663" l="4">
+ <fs type="struct" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="name">p</f>
+ </fs>
+ </span>
+ <span id="s73" from="2547" to="2663" l="5">
+ <fs type="struct" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="name">s</f>
+ </fs>
+ </span>
+ <span id="s74" from="2575" to="2585" l="6">
+ <fs type="struct" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="name">ref</f>
+ <f name="attr">
+ <fs type="attr">
+ <f name="target">https://de.wikipedia.org/wiki/Organell</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s75" from="2587" to="2595" l="6">
+ <fs type="struct" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="name">ref</f>
+ <f name="attr">
+ <fs type="attr">
+ <f name="target">https://de.wikipedia.org/wiki/Zellkern</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s76" from="2597" to="2610" l="6">
+ <fs type="struct" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="name">ref</f>
+ <f name="attr">
+ <fs type="attr">
+ <f name="target">https://de.wikipedia.org/wiki/Mitochondrium</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s77" from="2612" to="2619" l="6">
+ <fs type="struct" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="name">ref</f>
+ <f name="attr">
+ <fs type="attr">
+ <f name="target">https://de.wikipedia.org/wiki/Plastid</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s78" from="2645" to="2658" l="6">
+ <fs type="struct" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="name">ref</f>
+ <f name="attr">
+ <fs type="attr">
+ <f name="target">https://de.wikipedia.org/wiki/Doppelmembran</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s79" from="2663" to="5165" l="3">
+ <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="type">fix2</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s80" from="2663" to="2684" l="4">
+ <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="s81" from="2664" to="2684" l="5">
+ <fs type="struct" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="name">s</f>
+ </fs>
+ </span>
+ <span id="s82" from="2684" to="3392" l="4">
+ <fs type="struct" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="name">p</f>
+ </fs>
+ </span>
+ <span id="s83" from="2684" to="2871" l="5">
+ <fs type="struct" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="name">s</f>
+ </fs>
+ </span>
+ <span id="s84" from="2685" to="2685" l="6">
+ <fs type="struct" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="name">gap</f>
+ <f name="attr">
+ <fs type="attr">
+ <f name="reason">template</f>
+ <f name="instant">false</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s85" from="2734" to="2745" l="6">
+ <fs type="struct" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="name">ref</f>
+ <f name="attr">
+ <fs type="attr">
+ <f name="target">https://de.wikipedia.org/wiki/Amphiphil</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s86" from="2746" to="2760" l="6">
+ <fs type="struct" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="name">ref</f>
+ <f name="attr">
+ <fs type="attr">
+ <f name="target">https://de.wikipedia.org/wiki/Phospholipide</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s87" from="2771" to="2781" l="6">
+ <fs type="struct" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="name">ref</f>
+ <f name="attr">
+ <fs type="attr">
+ <f name="target">https://de.wikipedia.org/wiki/Hydrophil</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s88" from="2802" to="2812" l="6">
+ <fs type="struct" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="name">ref</f>
+ <f name="attr">
+ <fs type="attr">
+ <f name="target">https://de.wikipedia.org/wiki/Hydrophob</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s89" from="2837" to="2860" l="6">
+ <fs type="struct" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="name">ref</f>
+ <f name="attr">
+ <fs type="attr">
+ <f name="target">https://de.wikipedia.org/wiki/Kohlenwasserstoff</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s90" from="2872" to="3042" l="5">
+ <fs type="struct" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="name">s</f>
+ </fs>
+ </span>
+ <span id="s91" from="2914" to="2934" l="6">
+ <fs type="struct" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="name">ref</f>
+ <f name="attr">
+ <fs type="attr">
+ <f name="target">https://de.wikipedia.org/wiki/Hydrophober_Effekt</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s92" from="3043" to="3231" l="5">
+ <fs type="struct" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="name">s</f>
+ </fs>
+ </span>
+ <span id="s93" from="3232" to="3323" l="5">
+ <fs type="struct" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="name">s</f>
+ </fs>
+ </span>
+ <span id="s94" from="3324" to="3392" l="5">
+ <fs type="struct" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="name">s</f>
+ </fs>
+ </span>
+ <span id="s95" from="3368" to="3375" l="6">
+ <fs type="struct" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="name">ref</f>
+ <f name="attr">
+ <fs type="attr">
+ <f name="target">https://de.wikipedia.org/wiki/Lipasen</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s96" from="3392" to="3498" l="4">
+ <fs type="struct" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="name">p</f>
+ </fs>
+ </span>
+ <span id="s97" from="3393" to="3498" l="5">
+ <fs type="struct" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="name">s</f>
+ </fs>
+ </span>
+ <span id="s98" from="3498" to="3561" l="4">
+ <fs type="struct" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="name">p</f>
+ </fs>
+ </span>
+ <span id="s99" from="3498" to="3561" l="5">
+ <fs type="struct" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="name">s</f>
+ </fs>
+ </span>
+ <span id="s100" from="3499" to="3561" l="6">
+ <fs type="struct" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="name">ref</f>
+ <f name="attr">
+ <fs type="attr">
+ <f name="target">https://de.wikipedia.org/wiki/Datei%3ALipid_bilayer_fluid.svg</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s101" from="3561" to="4494" l="4">
+ <fs type="struct" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="name">p</f>
+ </fs>
+ </span>
+ <span id="s102" from="3562" to="3633" l="5">
+ <fs type="struct" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="name">s</f>
+ </fs>
+ </span>
+ <span id="s103" from="3634" to="3703" l="5">
+ <fs type="struct" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="name">s</f>
+ </fs>
+ </span>
+ <span id="s104" from="3704" to="3830" l="5">
+ <fs type="struct" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="name">s</f>
+ </fs>
+ </span>
+ <span id="s105" from="3831" to="4067" l="5">
+ <fs type="struct" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="name">s</f>
+ </fs>
+ </span>
+ <span id="s106" from="3889" to="3899" l="6">
+ <fs type="struct" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="name">hi</f>
+ <f name="attr">
+ <fs type="attr">
+ <f name="rend">it</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s107" from="3890" to="3898" l="7">
+ <fs type="struct" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="name">ref</f>
+ <f name="attr">
+ <fs type="attr">
+ <f name="target">https://de.wikipedia.org/wiki/Flipflop_%28Zellbiologie%29</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s108" from="3988" to="3997" l="6">
+ <fs type="struct" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="name">hi</f>
+ <f name="attr">
+ <fs type="attr">
+ <f name="rend">it</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s109" from="4002" to="4011" l="6">
+ <fs type="struct" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="name">hi</f>
+ <f name="attr">
+ <fs type="attr">
+ <f name="rend">it</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s110" from="4033" to="4052" l="6">
+ <fs type="struct" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="name">ref</f>
+ <f name="attr">
+ <fs type="attr">
+ <f name="target">https://de.wikipedia.org/wiki/Adenosintriphosphat</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s111" from="4068" to="4166" l="5">
+ <fs type="struct" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="name">s</f>
+ </fs>
+ </span>
+ <span id="s112" from="4167" to="4292" l="5">
+ <fs type="struct" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="name">s</f>
+ </fs>
+ </span>
+ <span id="s113" from="4293" to="4494" l="5">
+ <fs type="struct" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="name">s</f>
+ </fs>
+ </span>
+ <span id="s114" from="4336" to="4347" l="6">
+ <fs type="struct" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="name">hi</f>
+ <f name="attr">
+ <fs type="attr">
+ <f name="rend">it</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s115" from="4494" to="4972" l="4">
+ <fs type="struct" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="name">p</f>
+ </fs>
+ </span>
+ <span id="s116" from="4495" to="4694" l="5">
+ <fs type="struct" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="name">s</f>
+ </fs>
+ </span>
+ <span id="s117" from="4651" to="4660" l="6">
+ <fs type="struct" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="name">ref</f>
+ <f name="attr">
+ <fs type="attr">
+ <f name="target">https://de.wikipedia.org/wiki/Bakterien</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s118" from="4661" to="4661" l="6">
+ <fs type="struct" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="name">ptr</f>
+ <f name="attr">
+ <fs type="attr">
+ <f name="target">WPD17.B00.26993-f5</f>
+ <f name="rend">ref</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s119" from="4695" to="4736" l="5">
+ <fs type="struct" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="name">s</f>
+ </fs>
+ </span>
+ <span id="s120" from="4737" to="4823" l="5">
+ <fs type="struct" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="name">s</f>
+ </fs>
+ </span>
+ <span id="s121" from="4824" to="4972" l="5">
+ <fs type="struct" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="name">s</f>
+ </fs>
+ </span>
+ <span id="s122" from="4952" to="4960" l="6">
+ <fs type="struct" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="name">ref</f>
+ <f name="attr">
+ <fs type="attr">
+ <f name="target">https://de.wikipedia.org/wiki/Gel</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s123" from="4972" to="5165" l="4">
+ <fs type="struct" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="name">p</f>
+ </fs>
+ </span>
+ <span id="s124" from="4972" to="5165" l="5">
+ <fs type="struct" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="name">s</f>
+ </fs>
+ </span>
+ <span id="s125" from="4973" to="4982" l="6">
+ <fs type="struct" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="name">ref</f>
+ <f name="attr">
+ <fs type="attr">
+ <f name="target">https://de.wikipedia.org/wiki/Vitamin_E</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s126" from="4991" to="5002" l="6">
+ <fs type="struct" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="name">ref</f>
+ <f name="attr">
+ <fs type="attr">
+ <f name="target">https://de.wikipedia.org/wiki/Antioxidans</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s127" from="5008" to="5017" l="6">
+ <fs type="struct" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="name">ref</f>
+ <f name="attr">
+ <fs type="attr">
+ <f name="target">https://de.wikipedia.org/wiki/Ascorbins%C3%A4ure</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s128" from="5146" to="5163" l="6">
+ <fs type="struct" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="name">ref</f>
+ <f name="attr">
+ <fs type="attr">
+ <f name="target">https://de.wikipedia.org/wiki/Lipidperoxidation</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s129" from="5165" to="6654" l="3">
+ <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="type">fix2</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s130" from="5165" to="5183" l="4">
+ <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="s131" from="5166" to="5183" l="5">
+ <fs type="struct" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="name">s</f>
+ </fs>
+ </span>
+ <span id="s132" from="5183" to="5247" l="4">
+ <fs type="struct" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="name">p</f>
+ </fs>
+ </span>
+ <span id="s133" from="5183" to="5247" l="5">
+ <fs type="struct" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="name">s</f>
+ </fs>
+ </span>
+ <span id="s134" from="5184" to="5247" l="6">
+ <fs type="struct" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="name">ref</f>
+ <f name="attr">
+ <fs type="attr">
+ <f name="target">https://de.wikipedia.org/wiki/Datei%3ACell_membrane_detailed_diagram_de.svg</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s135" from="5247" to="5753" l="4">
+ <fs type="struct" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="name">p</f>
+ </fs>
+ </span>
+ <span id="s136" from="5248" to="5428" l="5">
+ <fs type="struct" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="name">s</f>
+ </fs>
+ </span>
+ <span id="s137" from="5271" to="5287" l="6">
+ <fs type="struct" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="name">ref</f>
+ <f name="attr">
+ <fs type="attr">
+ <f name="target">https://de.wikipedia.org/wiki/Membranprotein</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s138" from="5349" to="5376" l="6">
+ <fs type="struct" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="name">ref</f>
+ <f name="attr">
+ <fs type="attr">
+ <f name="target">https://de.wikipedia.org/wiki/Protein-Lipid-Interaktion</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s139" from="5429" to="5540" l="5">
+ <fs type="struct" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="name">s</f>
+ </fs>
+ </span>
+ <span id="s140" from="5541" to="5753" l="5">
+ <fs type="struct" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="name">s</f>
+ </fs>
+ </span>
+ <span id="s141" from="5564" to="5574" l="6">
+ <fs type="struct" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="name">ref</f>
+ <f name="attr">
+ <fs type="attr">
+ <f name="target">https://de.wikipedia.org/wiki/Rezeptor_%28Biochemie%29</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s142" from="5753" to="6235" l="4">
+ <fs type="struct" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="name">p</f>
+ </fs>
+ </span>
+ <span id="s143" from="5754" to="5810" l="5">
+ <fs type="struct" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="name">s</f>
+ </fs>
+ </span>
+ <span id="s144" from="5777" to="5793" l="6">
+ <fs type="struct" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="name">ref</f>
+ <f name="attr">
+ <fs type="attr">
+ <f name="target">https://de.wikipedia.org/wiki/Membrantransport</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s145" from="5811" to="5882" l="5">
+ <fs type="struct" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="name">s</f>
+ </fs>
+ </span>
+ <span id="s146" from="5883" to="6105" l="5">
+ <fs type="struct" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="name">s</f>
+ </fs>
+ </span>
+ <span id="s147" from="6080" to="6085" l="6">
+ <fs type="struct" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="name">ref</f>
+ <f name="attr">
+ <fs type="attr">
+ <f name="target">https://de.wikipedia.org/wiki/Blutgruppe</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s148" from="6090" to="6103" l="6">
+ <fs type="struct" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="name">ref</f>
+ <f name="attr">
+ <fs type="attr">
+ <f name="target">https://de.wikipedia.org/wiki/Human_Leukocyte_Antigen</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s149" from="6106" to="6235" l="5">
+ <fs type="struct" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="name">s</f>
+ </fs>
+ </span>
+ <span id="s150" from="6169" to="6194" l="6">
+ <fs type="struct" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="name">ref</f>
+ <f name="attr">
+ <fs type="attr">
+ <f name="target">https://de.wikipedia.org/wiki/Schl%C3%BCssel-Schloss-Prinzip</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s151" from="6235" to="6556" l="4">
+ <fs type="struct" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="name">p</f>
+ </fs>
+ </span>
+ <span id="s152" from="6236" to="6399" l="5">
+ <fs type="struct" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="name">s</f>
+ </fs>
+ </span>
+ <span id="s153" from="6245" to="6266" l="6">
+ <fs type="struct" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="name">ref</f>
+ <f name="attr">
+ <fs type="attr">
+ <f name="target">https://de.wikipedia.org/wiki/Fl%C3%BCssig-Mosaik-Modell</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s154" from="6400" to="6556" l="5">
+ <fs type="struct" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="name">s</f>
+ </fs>
+ </span>
+ <span id="s155" from="6556" to="6654" l="4">
+ <fs type="struct" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="name">p</f>
+ </fs>
+ </span>
+ <span id="s156" from="6557" to="6654" l="5">
+ <fs type="struct" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="name">s</f>
+ </fs>
+ </span>
+ <span id="s157" from="6654" to="6881" l="3">
+ <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="type">fix2</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s158" from="6654" to="6665" l="4">
+ <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="s159" from="6655" to="6665" l="5">
+ <fs type="struct" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="name">s</f>
+ </fs>
+ </span>
+ <span id="s160" from="6665" to="6881" l="4">
+ <fs type="struct" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="name">p</f>
+ </fs>
+ </span>
+ <span id="s161" from="6666" to="6752" l="5">
+ <fs type="struct" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="name">s</f>
+ </fs>
+ </span>
+ <span id="s162" from="6670" to="6680" l="6">
+ <fs type="struct" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="name">ref</f>
+ <f name="attr">
+ <fs type="attr">
+ <f name="target">https://de.wikipedia.org/wiki/Zytoplasma</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s163" from="6753" to="6834" l="5">
+ <fs type="struct" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="name">s</f>
+ </fs>
+ </span>
+ <span id="s164" from="6769" to="6780" l="6">
+ <fs type="struct" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="name">ref</f>
+ <f name="attr">
+ <fs type="attr">
+ <f name="target">https://de.wikipedia.org/wiki/Zellmembran</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s165" from="6782" to="6795" l="6">
+ <fs type="struct" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="name">hi</f>
+ <f name="attr">
+ <fs type="attr">
+ <f name="rend">it</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s166" from="6797" to="6808" l="6">
+ <fs type="struct" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="name">hi</f>
+ <f name="attr">
+ <fs type="attr">
+ <f name="rend">it</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s167" from="6814" to="6833" l="6">
+ <fs type="struct" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="name">hi</f>
+ <f name="attr">
+ <fs type="attr">
+ <f name="rend">it</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s168" from="6835" to="6881" l="5">
+ <fs type="struct" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="name">s</f>
+ </fs>
+ </span>
+ <span id="s169" from="6881" to="7892" l="3">
+ <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="type">fix2</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s170" from="6881" to="6893" l="4">
+ <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="s171" from="6882" to="6893" l="5">
+ <fs type="struct" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="name">s</f>
+ </fs>
+ </span>
+ <span id="s172" from="6893" to="6955" l="4">
+ <fs type="struct" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="name">p</f>
+ </fs>
+ </span>
+ <span id="s173" from="6893" to="6955" l="5">
+ <fs type="struct" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="name">s</f>
+ </fs>
+ </span>
+ <span id="s174" from="6894" to="6955" l="6">
+ <fs type="struct" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="name">ref</f>
+ <f name="attr">
+ <fs type="attr">
+ <f name="target">https://de.wikipedia.org/wiki/Datei%3ALipid_unsaturation_effect.svg</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s175" from="6955" to="7892" l="4">
+ <fs type="struct" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="name">p</f>
+ </fs>
+ </span>
+ <span id="s176" from="6956" to="7015" l="5">
+ <fs type="struct" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="name">s</f>
+ </fs>
+ </span>
+ <span id="s177" from="7001" to="7011" l="6">
+ <fs type="struct" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="name">ref</f>
+ <f name="attr">
+ <fs type="attr">
+ <f name="target">https://de.wikipedia.org/wiki/Temperatur</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s178" from="7016" to="7144" l="5">
+ <fs type="struct" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="name">s</f>
+ </fs>
+ </span>
+ <span id="s179" from="7145" to="7235" l="5">
+ <fs type="struct" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="name">s</f>
+ </fs>
+ </span>
+ <span id="s180" from="7208" to="7223" l="6">
+ <fs type="struct" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="name">ref</f>
+ <f name="attr">
+ <fs type="attr">
+ <f name="target">https://de.wikipedia.org/wiki/Fl%C3%BCssigkristall</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s181" from="7236" to="7369" l="5">
+ <fs type="struct" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="name">s</f>
+ </fs>
+ </span>
+ <span id="s182" from="7370" to="7580" l="5">
+ <fs type="struct" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="name">s</f>
+ </fs>
+ </span>
+ <span id="s183" from="7575" to="7579" l="6">
+ <fs type="struct" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="name">ref</f>
+ <f name="attr">
+ <fs type="attr">
+ <f name="target">https://de.wikipedia.org/wiki/Gel</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s184" from="7581" to="7723" l="5">
+ <fs type="struct" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="name">s</f>
+ </fs>
+ </span>
+ <span id="s185" from="7669" to="7684" l="6">
+ <fs type="struct" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="name">ref</f>
+ <f name="attr">
+ <fs type="attr">
+ <f name="target">https://de.wikipedia.org/wiki/Doppelbindung</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s186" from="7724" to="7825" l="5">
+ <fs type="struct" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="name">s</f>
+ </fs>
+ </span>
+ <span id="s187" from="7826" to="7892" l="5">
+ <fs type="struct" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="name">s</f>
+ </fs>
+ </span>
+ <span id="s188" from="7892" to="8806" l="3">
+ <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="type">fix2</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s189" from="7892" to="7904" l="4">
+ <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="s190" from="7893" to="7904" l="5">
+ <fs type="struct" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="name">s</f>
+ </fs>
+ </span>
+ <span id="s191" from="7904" to="8806" l="4">
+ <fs type="struct" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="name">p</f>
+ </fs>
+ </span>
+ <span id="s192" from="7905" to="8005" l="5">
+ <fs type="struct" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="name">s</f>
+ </fs>
+ </span>
+ <span id="s193" from="8006" to="8101" l="5">
+ <fs type="struct" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="name">s</f>
+ </fs>
+ </span>
+ <span id="s194" from="8102" to="8154" l="5">
+ <fs type="struct" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="name">s</f>
+ </fs>
+ </span>
+ <span id="s195" from="8155" to="8396" l="5">
+ <fs type="struct" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="name">s</f>
+ </fs>
+ </span>
+ <span id="s196" from="8202" to="8215" l="6">
+ <fs type="struct" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="name">ref</f>
+ <f name="attr">
+ <fs type="attr">
+ <f name="target">https://de.wikipedia.org/wiki/Membrangenese</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s197" from="8268" to="8279" l="6">
+ <fs type="struct" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="name">ref</f>
+ <f name="attr">
+ <fs type="attr">
+ <f name="target">https://de.wikipedia.org/wiki/Zellteilung</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s198" from="8281" to="8293" l="6">
+ <fs type="struct" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="name">ref</f>
+ <f name="attr">
+ <fs type="attr">
+ <f name="target">https://de.wikipedia.org/wiki/Zellwachstum</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s199" from="8295" to="8304" l="6">
+ <fs type="struct" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="name">ref</f>
+ <f name="attr">
+ <fs type="attr">
+ <f name="target">https://de.wikipedia.org/wiki/Sekretion</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s200" from="8397" to="8736" l="5">
+ <fs type="struct" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="name">s</f>
+ </fs>
+ </span>
+ <span id="s201" from="8510" to="8521" l="6">
+ <fs type="struct" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="name">ref</f>
+ <f name="attr">
+ <fs type="attr">
+ <f name="target">https://de.wikipedia.org/wiki/Desaturase</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s202" from="8737" to="8806" l="5">
+ <fs type="struct" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="name">s</f>
+ </fs>
+ </span>
+ <span id="s203" from="8753" to="8766" l="6">
+ <fs type="struct" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="name">ref</f>
+ <f name="attr">
+ <fs type="attr">
+ <f name="target">https://de.wikipedia.org/wiki/Wechselwarm</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s204" from="8806" to="9271" l="3">
+ <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="type">fix2</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s205" from="8806" to="8819" l="4">
+ <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="s206" from="8807" to="8819" l="5">
+ <fs type="struct" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="name">s</f>
+ </fs>
+ </span>
+ <span id="s207" from="8819" to="8819" l="4">
+ <fs type="struct" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="name">p</f>
+ </fs>
+ </span>
+ <span id="s208" from="8819" to="8819" l="5">
+ <fs type="struct" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="name">s</f>
+ </fs>
+ </span>
+ <span id="s209" from="8819" to="8819" l="6">
+ <fs type="struct" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="name">gap</f>
+ <f name="attr">
+ <fs type="attr">
+ <f name="reason">template</f>
+ <f name="instant">false</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s210" from="8819" to="9271" l="4">
+ <fs type="struct" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="name">p</f>
+ </fs>
+ </span>
+ <span id="s211" from="8820" to="8954" l="5">
+ <fs type="struct" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="name">s</f>
+ </fs>
+ </span>
+ <span id="s212" from="8955" to="9031" l="5">
+ <fs type="struct" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="name">s</f>
+ </fs>
+ </span>
+ <span id="s213" from="9032" to="9163" l="5">
+ <fs type="struct" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="name">s</f>
+ </fs>
+ </span>
+ <span id="s214" from="9164" to="9271" l="5">
+ <fs type="struct" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="name">s</f>
+ </fs>
+ </span>
+ <span id="s215" from="9271" to="9419" l="3">
+ <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="type">fix2</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s216" from="9271" to="9284" l="4">
+ <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="s217" from="9272" to="9284" l="5">
+ <fs type="struct" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="name">s</f>
+ </fs>
+ </span>
+ <span id="s218" from="9284" to="9419" l="4">
+ <fs type="struct" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="name">p</f>
+ </fs>
+ </span>
+ <span id="s219" from="9284" to="9419" l="5">
+ <fs type="struct" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="name">s</f>
+ </fs>
+ </span>
+ <span id="s220" from="9285" to="9364" l="6">
+ <fs type="struct" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="name">ref</f>
+ <f name="attr">
+ <fs type="attr">
+ <f name="target">https://de.wikipedia.org/wiki/Datei%3AMembran2.png</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s221" from="9365" to="9419" l="6">
+ <fs type="struct" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="name">ref</f>
+ <f name="attr">
+ <fs type="attr">
+ <f name="target">https://de.wikipedia.org/wiki/Datei%3AVersuch_zum_Fluid-Mosaic-Modell.png</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s222" from="9419" to="9450" l="3">
+ <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="type">fix2</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s223" from="9419" to="9430" l="4">
+ <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="s224" from="9420" to="9430" l="5">
+ <fs type="struct" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="name">s</f>
+ </fs>
+ </span>
+ <span id="s225" from="9431" to="9448" l="4">
+ <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="s226" from="9448" to="9448" l="4">
+ <fs type="struct" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="name">p</f>
+ </fs>
+ </span>
+ <span id="s227" from="9448" to="9448" l="5">
+ <fs type="struct" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="name">gap</f>
+ <f name="attr">
+ <fs type="attr">
+ <f name="reason">references</f>
+ <f name="instant">false</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s228" from="9449" to="9450" l="4">
+ <fs type="struct" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="name">p</f>
+ </fs>
+ </span>
+ </spanList>
+</layer>
\ No newline at end of file
diff --git a/t/real/corpus/ICCGER/DeReKo-WPD17/B00-26993/ud/dependency.xml b/t/real/corpus/ICCGER/DeReKo-WPD17/B00-26993/ud/dependency.xml
new file mode 100644
index 0000000..dcfc5db
--- /dev/null
+++ b/t/real/corpus/ICCGER/DeReKo-WPD17/B00-26993/ud/dependency.xml
@@ -0,0 +1,6536 @@
+<?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="ICCGER_DeReKo-WPD17.B00-26993" xmlns="http://ids-mannheim.de/ns/KorAP" version="KorAP-0.4">
+<spanList>
+<span id="s1645_n1" from="0" to="4">
+<rel label="det">
+<span from="5" to="15"/>
+</rel>
+</span>
+<span id="s1645_n2" from="5" to="15">
+<rel label="nsubj">
+<span from="25" to="37"/>
+</rel>
+</span>
+<span id="s1645_n3" from="16" to="19">
+<rel label="cop">
+<span from="25" to="37"/>
+</rel>
+</span>
+<span id="s1645_n4" from="20" to="24">
+<rel label="det">
+<span from="25" to="37"/>
+</rel>
+</span>
+<span id="s1645_n5" from="25" to="37">
+<rel label="root">
+<span from="0" to="66"/>
+</rel>
+</span>
+<span id="s1645_n6" from="38" to="46">
+<rel label="case">
+<span from="47" to="65"/>
+</rel>
+</span>
+<span id="s1645_n7" from="47" to="65">
+<rel label="nmod">
+<span from="25" to="37"/>
+</rel>
+</span>
+<span id="s1645_n8" from="65" to="66">
+<rel label="punct">
+<span from="25" to="37"/>
+</rel>
+</span>
+<span id="s1646_n1" from="67" to="76">
+<rel label="case">
+<span from="81" to="86"/>
+</rel>
+</span>
+<span id="s1646_n2" from="77" to="80">
+<rel label="det">
+<span from="81" to="86"/>
+</rel>
+</span>
+<span id="s1646_n3" from="81" to="86">
+<rel label="obl">
+<span from="87" to="94"/>
+</rel>
+</span>
+<span id="s1646_n4" from="87" to="94">
+<rel label="root">
+<span from="67" to="190"/>
+</rel>
+</span>
+<span id="s1646_n5" from="95" to="110">
+<rel label="advmod">
+<span from="111" to="121"/>
+</rel>
+</span>
+<span id="s1646_n6" from="111" to="121">
+<rel label="amod">
+<span from="122" to="134"/>
+</rel>
+</span>
+<span id="s1646_n7" from="122" to="134">
+<rel label="nsubj">
+<span from="87" to="94"/>
+</rel>
+</span>
+<span id="s1646_n8" from="135" to="138">
+<rel label="det">
+<span from="139" to="145"/>
+</rel>
+</span>
+<span id="s1646_n9" from="139" to="145">
+<rel label="obj">
+<span from="87" to="94"/>
+</rel>
+</span>
+<span id="s1646_n10" from="146" to="149">
+<rel label="case">
+<span from="150" to="160"/>
+</rel>
+</span>
+<span id="s1646_n11" from="150" to="160">
+<rel label="nmod">
+<span from="139" to="145"/>
+</rel>
+</span>
+<span id="s1646_n12" from="161" to="165">
+<rel label="cc">
+<span from="166" to="174"/>
+</rel>
+</span>
+<span id="s1646_n13" from="166" to="174">
+<rel label="conj">
+<span from="150" to="160"/>
+</rel>
+</span>
+<span id="s1646_n14" from="175" to="178">
+<rel label="case">
+<span from="179" to="189"/>
+</rel>
+</span>
+<span id="s1646_n15" from="179" to="189">
+<rel label="obl">
+<span from="87" to="94"/>
+</rel>
+</span>
+<span id="s1646_n16" from="189" to="190">
+<rel label="punct">
+<span from="87" to="94"/>
+</rel>
+</span>
+<span id="s1647_n1" from="191" to="195">
+<rel label="det">
+<span from="196" to="206"/>
+</rel>
+</span>
+<span id="s1647_n2" from="196" to="206">
+<rel label="nsubj">
+<span from="207" to="210"/>
+</rel>
+</span>
+<span id="s1647_n3" from="207" to="210">
+<rel label="root">
+<span from="191" to="414"/>
+</rel>
+</span>
+<span id="s1647_n4" from="211" to="216">
+<rel label="case">
+<span from="217" to="235"/>
+</rel>
+</span>
+<span id="s1647_n5" from="217" to="235">
+<rel label="obl">
+<span from="207" to="210"/>
+</rel>
+</span>
+<span id="s1647_n6" from="236" to="240">
+<rel label="det">
+<span from="248" to="253"/>
+</rel>
+</span>
+<span id="s1647_n7" from="241" to="247">
+<rel label="amod">
+<span from="248" to="253"/>
+</rel>
+</span>
+<span id="s1647_n8" from="248" to="253">
+<rel label="obj">
+<span from="207" to="210"/>
+</rel>
+</span>
+<span id="s1647_n9" from="254" to="258">
+<rel label="case">
+<span from="270" to="279"/>
+</rel>
+</span>
+<span id="s1647_n10" from="259" to="269">
+<rel label="amod">
+<span from="270" to="279"/>
+</rel>
+</span>
+<span id="s1647_n11" from="270" to="279">
+<rel label="nmod">
+<span from="248" to="253"/>
+</rel>
+</span>
+<span id="s1647_n12" from="280" to="283">
+<rel label="case">
+<span from="284" to="293"/>
+</rel>
+</span>
+<span id="s1647_n13" from="284" to="293">
+<rel label="nmod">
+<span from="270" to="279"/>
+</rel>
+</span>
+<span id="s1647_n14" from="294" to="297">
+<rel label="cc">
+<span from="302" to="314"/>
+</rel>
+</span>
+<span id="s1647_n15" from="298" to="301">
+<rel label="det">
+<span from="302" to="314"/>
+</rel>
+</span>
+<span id="s1647_n16" from="302" to="314">
+<rel label="conj">
+<span from="270" to="279"/>
+</rel>
+</span>
+<span id="s1647_n17" from="315" to="318">
+<rel label="case">
+<span from="319" to="332"/>
+</rel>
+</span>
+<span id="s1647_n18" from="319" to="332">
+<rel label="nmod">
+<span from="302" to="314"/>
+</rel>
+</span>
+<span id="s1647_n19" from="333" to="341">
+<rel label="case">
+<span from="353" to="367"/>
+</rel>
+</span>
+<span id="s1647_n20" from="342" to="345">
+<rel label="det">
+<span from="353" to="367"/>
+</rel>
+</span>
+<span id="s1647_n21" from="346" to="352">
+<rel label="amod">
+<span from="353" to="367"/>
+</rel>
+</span>
+<span id="s1647_n22" from="353" to="367">
+<rel label="nmod">
+<span from="319" to="332"/>
+</rel>
+</span>
+<span id="s1647_n23" from="367" to="368">
+<rel label="punct">
+<span from="378" to="383"/>
+</rel>
+</span>
+<span id="s1647_n24" from="369" to="377">
+<rel label="case">
+<span from="378" to="383"/>
+</rel>
+</span>
+<span id="s1647_n25" from="378" to="383">
+<rel label="nmod">
+<span from="302" to="314"/>
+</rel>
+</span>
+<span id="s1647_n26" from="384" to="388">
+<rel label="obj">
+<span from="378" to="383"/>
+</rel>
+</span>
+<span id="s1647_n27" from="389" to="394">
+<rel label="det">
+<span from="395" to="413"/>
+</rel>
+</span>
+<span id="s1647_n28" from="395" to="413">
+<rel label="nsubj">
+<span from="378" to="383"/>
+</rel>
+</span>
+<span id="s1647_n29" from="413" to="414">
+<rel label="punct">
+<span from="207" to="210"/>
+</rel>
+</span>
+<span id="s1648_n1" from="416" to="429">
+<rel label="nsubj">
+<span from="552" to="565"/>
+</rel>
+</span>
+<span id="s1648_n2" from="431" to="433">
+<rel label="mark">
+<span from="509" to="518"/>
+</rel>
+</span>
+<span id="s1648_n3" from="434" to="437">
+<rel label="det">
+<span from="438" to="448"/>
+</rel>
+</span>
+<span id="s1648_n4" from="438" to="448">
+<rel label="nsubj">
+<span from="509" to="518"/>
+</rel>
+</span>
+<span id="s1648_n5" from="449" to="452">
+<rel label="case">
+<span from="453" to="458"/>
+</rel>
+</span>
+<span id="s1648_n6" from="453" to="458">
+<rel label="nmod">
+<span from="464" to="484"/>
+</rel>
+</span>
+<span id="s1648_n7" from="459" to="463">
+<rel label="det">
+<span from="464" to="484"/>
+</rel>
+</span>
+<span id="s1648_n8" from="464" to="484">
+<rel label="obj">
+<span from="509" to="518"/>
+</rel>
+</span>
+<span id="s1648_n9" from="485" to="498">
+<rel label="amod">
+<span from="499" to="508"/>
+</rel>
+</span>
+<span id="s1648_n10" from="499" to="508">
+<rel label="nmod">
+<span from="464" to="484"/>
+</rel>
+</span>
+<span id="s1648_n11" from="509" to="518">
+<rel label="ccomp">
+<span from="552" to="565"/>
+</rel>
+</span>
+<span id="s1648_n12" from="518" to="519">
+<rel label="punct">
+<span from="509" to="518"/>
+</rel>
+</span>
+<span id="s1648_n13" from="520" to="523">
+<rel label="cop">
+<span from="552" to="565"/>
+</rel>
+</span>
+<span id="s1648_n14" from="524" to="527">
+<rel label="nsubj">
+<span from="552" to="565"/>
+</rel>
+</span>
+<span id="s1648_n15" from="528" to="531">
+<rel label="case">
+<span from="536" to="551"/>
+</rel>
+</span>
+<span id="s1648_n16" from="532" to="535">
+<rel label="det">
+<span from="536" to="551"/>
+</rel>
+</span>
+<span id="s1648_n17" from="536" to="551">
+<rel label="obl">
+<span from="552" to="565"/>
+</rel>
+</span>
+<span id="s1648_n18" from="552" to="565">
+<rel label="root">
+<span from="416" to="566"/>
+</rel>
+</span>
+<span id="s1648_n19" from="565" to="566">
+<rel label="punct">
+<span from="552" to="565"/>
+</rel>
+</span>
+<span id="s1649_n1" from="567" to="575">
+<rel label="amod">
+<span from="586" to="594"/>
+</rel>
+</span>
+<span id="s1649_n2" from="576" to="585">
+<rel label="amod">
+<span from="586" to="594"/>
+</rel>
+</span>
+<span id="s1649_n3" from="586" to="594">
+<rel label="nsubj">
+<span from="648" to="660"/>
+</rel>
+</span>
+<span id="s1649_n4" from="595" to="601">
+<rel label="aux">
+<span from="648" to="660"/>
+</rel>
+</span>
+<span id="s1649_n5" from="602" to="606">
+<rel label="advmod">
+<span from="648" to="660"/>
+</rel>
+</span>
+<span id="s1649_n6" from="607" to="612">
+<rel label="case">
+<span from="617" to="635"/>
+</rel>
+</span>
+<span id="s1649_n7" from="613" to="616">
+<rel label="det">
+<span from="617" to="635"/>
+</rel>
+</span>
+<span id="s1649_n8" from="617" to="635">
+<rel label="obl">
+<span from="648" to="660"/>
+</rel>
+</span>
+<span id="s1649_n9" from="636" to="639">
+<rel label="det">
+<span from="640" to="647"/>
+</rel>
+</span>
+<span id="s1649_n10" from="640" to="647">
+<rel label="nmod">
+<span from="617" to="635"/>
+</rel>
+</span>
+<span id="s1649_n11" from="648" to="660">
+<rel label="root">
+<span from="567" to="716"/>
+</rel>
+</span>
+<span id="s1649_n12" from="660" to="661">
+<rel label="punct">
+<span from="679" to="691"/>
+</rel>
+</span>
+<span id="s1649_n13" from="662" to="665">
+<rel label="case">
+<span from="679" to="691"/>
+</rel>
+</span>
+<span id="s1649_n14" from="666" to="669">
+<rel label="case">
+<span from="670" to="678"/>
+</rel>
+</span>
+<span id="s1649_n15" from="670" to="678">
+<rel label="nmod">
+<span from="679" to="691"/>
+</rel>
+</span>
+<span id="s1649_n16" from="679" to="691">
+<rel label="appos">
+<span from="617" to="635"/>
+</rel>
+</span>
+<span id="s1649_n17" from="691" to="692">
+<rel label="punct">
+<span from="693" to="701"/>
+</rel>
+</span>
+<span id="s1649_n18" from="693" to="701">
+<rel label="conj">
+<span from="679" to="691"/>
+</rel>
+</span>
+<span id="s1649_n19" from="702" to="705">
+<rel label="cc">
+<span from="706" to="715"/>
+</rel>
+</span>
+<span id="s1649_n20" from="706" to="715">
+<rel label="conj">
+<span from="679" to="691"/>
+</rel>
+</span>
+<span id="s1649_n21" from="715" to="716">
+<rel label="punct">
+<span from="648" to="660"/>
+</rel>
+</span>
+<span id="s1650_n1" from="717" to="719">
+<rel label="mark">
+<span from="840" to="851"/>
+</rel>
+</span>
+<span id="s1650_n2" from="720" to="723">
+<rel label="det">
+<span from="724" to="739"/>
+</rel>
+</span>
+<span id="s1650_n3" from="724" to="739">
+<rel label="obj">
+<span from="840" to="851"/>
+</rel>
+</span>
+<span id="s1650_n4" from="740" to="743">
+<rel label="det">
+<span from="744" to="751"/>
+</rel>
+</span>
+<span id="s1650_n5" from="744" to="751">
+<rel label="nmod">
+<span from="724" to="739"/>
+</rel>
+</span>
+<span id="s1650_n6" from="752" to="755">
+<rel label="case">
+<span from="766" to="774"/>
+</rel>
+</span>
+<span id="s1650_n7" from="756" to="765">
+<rel label="amod">
+<span from="766" to="774"/>
+</rel>
+</span>
+<span id="s1650_n8" from="766" to="774">
+<rel label="nmod">
+<span from="724" to="739"/>
+</rel>
+</span>
+<span id="s1650_n9" from="775" to="778">
+<rel label="case">
+<span from="779" to="785"/>
+</rel>
+</span>
+<span id="s1650_n10" from="779" to="785">
+<rel label="obl">
+<span from="766" to="774"/>
+</rel>
+</span>
+<span id="s1650_n11" from="785" to="786">
+<rel label="punct">
+<span from="798" to="806"/>
+</rel>
+</span>
+<span id="s1650_n12" from="787" to="791">
+<rel label="cc">
+<span from="798" to="806"/>
+</rel>
+</span>
+<span id="s1650_n13" from="792" to="797">
+<rel label="amod">
+<span from="798" to="806"/>
+</rel>
+</span>
+<span id="s1650_n14" from="798" to="806">
+<rel label="conj">
+<span from="724" to="739"/>
+</rel>
+</span>
+<span id="s1650_n15" from="807" to="810">
+<rel label="case">
+<span from="811" to="816"/>
+</rel>
+</span>
+<span id="s1650_n16" from="811" to="816">
+<rel label="obl">
+<span from="798" to="806"/>
+</rel>
+</span>
+<span id="s1650_n17" from="817" to="821">
+<rel label="cc">
+<span from="822" to="836"/>
+</rel>
+</span>
+<span id="s1650_n18" from="822" to="836">
+<rel label="conj">
+<span from="811" to="816"/>
+</rel>
+</span>
+<span id="s1650_n19" from="837" to="839">
+<rel label="mark">
+<span from="840" to="851"/>
+</rel>
+</span>
+<span id="s1650_n20" from="840" to="851">
+<rel label="advcl">
+<span from="904" to="915"/>
+</rel>
+</span>
+<span id="s1650_n21" from="851" to="852">
+<rel label="punct">
+<span from="840" to="851"/>
+</rel>
+</span>
+<span id="s1650_n22" from="853" to="857">
+<rel label="aux:pass">
+<span from="904" to="915"/>
+</rel>
+</span>
+<span id="s1650_n23" from="858" to="860">
+<rel label="case">
+<span from="865" to="872"/>
+</rel>
+</span>
+<span id="s1650_n24" from="861" to="864">
+<rel label="det">
+<span from="865" to="872"/>
+</rel>
+</span>
+<span id="s1650_n25" from="865" to="872">
+<rel label="obl">
+<span from="904" to="915"/>
+</rel>
+</span>
+<span id="s1650_n26" from="873" to="885">
+<rel label="amod">
+<span from="886" to="903"/>
+</rel>
+</span>
+<span id="s1650_n27" from="886" to="903">
+<rel label="nsubj:pass">
+<span from="904" to="915"/>
+</rel>
+</span>
+<span id="s1650_n28" from="904" to="915">
+<rel label="root">
+<span from="717" to="971"/>
+</rel>
+</span>
+<span id="s1650_n29" from="915" to="916">
+<rel label="punct">
+<span from="956" to="965"/>
+</rel>
+</span>
+<span id="s1650_n30" from="917" to="920">
+<rel label="nsubj">
+<span from="956" to="965"/>
+</rel>
+</span>
+<span id="s1650_n31" from="921" to="924">
+<rel label="case">
+<span from="925" to="937"/>
+</rel>
+</span>
+<span id="s1650_n32" from="925" to="937">
+<rel label="xcomp">
+<span from="956" to="965"/>
+</rel>
+</span>
+<span id="s1650_n33" from="938" to="948">
+<rel label="amod">
+<span from="949" to="955"/>
+</rel>
+</span>
+<span id="s1650_n34" from="949" to="955">
+<rel label="nmod">
+<span from="925" to="937"/>
+</rel>
+</span>
+<span id="s1650_n35" from="956" to="965">
+<rel label="acl">
+<span from="886" to="903"/>
+</rel>
+</span>
+<span id="s1650_n36" from="966" to="970">
+<rel label="cop">
+<span from="956" to="965"/>
+</rel>
+</span>
+<span id="s1650_n37" from="970" to="971">
+<rel label="punct">
+<span from="904" to="915"/>
+</rel>
+</span>
+<span id="s1651_n1" from="972" to="979">
+<rel label="advmod">
+<span from="980" to="987"/>
+</rel>
+</span>
+<span id="s1651_n2" from="980" to="987">
+<rel label="root">
+<span from="972" to="1023"/>
+</rel>
+</span>
+<span id="s1651_n3" from="988" to="991">
+<rel label="nsubj">
+<span from="980" to="987"/>
+</rel>
+</span>
+<span id="s1651_n4" from="992" to="995">
+<rel label="case">
+<span from="1007" to="1020"/>
+</rel>
+</span>
+<span id="s1651_n5" from="996" to="1006">
+<rel label="amod">
+<span from="1007" to="1020"/>
+</rel>
+</span>
+<span id="s1651_n6" from="1007" to="1020">
+<rel label="obl">
+<span from="980" to="987"/>
+</rel>
+</span>
+<span id="s1651_n7" from="1022" to="1023">
+<rel label="punct">
+<span from="980" to="987"/>
+</rel>
+</span>
+<span id="s1652_n1" from="1025" to="1031">
+<rel label="nsubj:pass">
+<span from="1071" to="1082"/>
+</rel>
+</span>
+<span id="s1652_n2" from="1033" to="1037">
+<rel label="det">
+<span from="1038" to="1048"/>
+</rel>
+</span>
+<span id="s1652_n3" from="1038" to="1048">
+<rel label="appos">
+<span from="1025" to="1031"/>
+</rel>
+</span>
+<span id="s1652_n4" from="1049" to="1052">
+<rel label="aux:pass">
+<span from="1071" to="1082"/>
+</rel>
+</span>
+<span id="s1652_n5" from="1053" to="1058">
+<rel label="advmod">
+<span from="1071" to="1082"/>
+</rel>
+</span>
+<span id="s1652_n6" from="1059" to="1070">
+<rel label="advmod">
+<span from="1071" to="1082"/>
+</rel>
+</span>
+<span id="s1652_n7" from="1071" to="1082">
+<rel label="root">
+<span from="1025" to="1108"/>
+</rel>
+</span>
+<span id="s1652_n8" from="1083" to="1086">
+<rel label="cc">
+<span from="1087" to="1102"/>
+</rel>
+</span>
+<span id="s1652_n9" from="1087" to="1102">
+<rel label="conj">
+<span from="1071" to="1082"/>
+</rel>
+</span>
+<span id="s1652_n10" from="1103" to="1107">
+<rel label="obj">
+<span from="1087" to="1102"/>
+</rel>
+</span>
+<span id="s1652_n11" from="1107" to="1108">
+<rel label="punct">
+<span from="1071" to="1082"/>
+</rel>
+</span>
+<span id="s1653_n1" from="1109" to="1114">
+<rel label="advmod">
+<span from="1123" to="1135"/>
+</rel>
+</span>
+<span id="s1653_n2" from="1115" to="1117">
+<rel label="case">
+<span from="1118" to="1122"/>
+</rel>
+</span>
+<span id="s1653_n3" from="1118" to="1122">
+<rel label="obl">
+<span from="1123" to="1135"/>
+</rel>
+</span>
+<span id="s1653_n4" from="1123" to="1135">
+<rel label="amod">
+<span from="1136" to="1145"/>
+</rel>
+</span>
+<span id="s1653_n5" from="1136" to="1145">
+<rel label="nsubj">
+<span from="1146" to="1152"/>
+</rel>
+</span>
+<span id="s1653_n6" from="1146" to="1152">
+<rel label="root">
+<span from="1109" to="1181"/>
+</rel>
+</span>
+<span id="s1653_n7" from="1153" to="1155">
+<rel label="case">
+<span from="1165" to="1176"/>
+</rel>
+</span>
+<span id="s1653_n8" from="1156" to="1164">
+<rel label="amod">
+<span from="1165" to="1176"/>
+</rel>
+</span>
+<span id="s1653_n9" from="1165" to="1176">
+<rel label="obl">
+<span from="1146" to="1152"/>
+</rel>
+</span>
+<span id="s1653_n10" from="1177" to="1180">
+<rel label="compound:prt">
+<span from="1146" to="1152"/>
+</rel>
+</span>
+<span id="s1653_n11" from="1180" to="1181">
+<rel label="punct">
+<span from="1146" to="1152"/>
+</rel>
+</span>
+<span id="s1654_n1" from="1182" to="1194">
+<rel label="nsubj">
+<span from="1200" to="1212"/>
+</rel>
+</span>
+<span id="s1654_n2" from="1195" to="1199">
+<rel label="cop">
+<span from="1200" to="1212"/>
+</rel>
+</span>
+<span id="s1654_n3" from="1200" to="1212">
+<rel label="root">
+<span from="1182" to="1327"/>
+</rel>
+</span>
+<span id="s1654_n4" from="1212" to="1213">
+<rel label="punct">
+<span from="1200" to="1212"/>
+</rel>
+</span>
+<span id="s1654_n5" from="1214" to="1217">
+<rel label="nsubj">
+<span from="1218" to="1223"/>
+</rel>
+</span>
+<span id="s1654_n6" from="1218" to="1223">
+<rel label="parataxis">
+<span from="1200" to="1212"/>
+</rel>
+</span>
+<span id="s1654_n7" from="1224" to="1228">
+<rel label="det">
+<span from="1268" to="1273"/>
+</rel>
+</span>
+<span id="s1654_n8" from="1229" to="1232">
+<rel label="det">
+<span from="1233" to="1243"/>
+</rel>
+</span>
+<span id="s1654_n9" from="1233" to="1243">
+<rel label="obj">
+<span from="1244" to="1254"/>
+</rel>
+</span>
+<span id="s1654_n10" from="1244" to="1254">
+<rel label="amod">
+<span from="1268" to="1273"/>
+</rel>
+</span>
+<span id="s1654_n11" from="1255" to="1267">
+<rel label="amod">
+<span from="1268" to="1273"/>
+</rel>
+</span>
+<span id="s1654_n12" from="1268" to="1273">
+<rel label="obj">
+<span from="1218" to="1223"/>
+</rel>
+</span>
+<span id="s1654_n13" from="1274" to="1275">
+<rel label="punct">
+<span from="1275" to="1282"/>
+</rel>
+</span>
+<span id="s1654_n14" from="1275" to="1282">
+<rel label="appos">
+<span from="1268" to="1273"/>
+</rel>
+</span>
+<span id="s1654_n15" from="1282" to="1283">
+<rel label="punct">
+<span from="1275" to="1282"/>
+</rel>
+</span>
+<span id="s1654_n16" from="1284" to="1287">
+<rel label="cc">
+<span from="1311" to="1316"/>
+</rel>
+</span>
+<span id="s1654_n17" from="1288" to="1292">
+<rel label="det">
+<span from="1311" to="1316"/>
+</rel>
+</span>
+<span id="s1654_n18" from="1293" to="1310">
+<rel label="amod">
+<span from="1311" to="1316"/>
+</rel>
+</span>
+<span id="s1654_n19" from="1311" to="1316">
+<rel label="conj">
+<span from="1275" to="1282"/>
+</rel>
+</span>
+<span id="s1654_n20" from="1317" to="1318">
+<rel label="punct">
+<span from="1318" to="1325"/>
+</rel>
+</span>
+<span id="s1654_n21" from="1318" to="1325">
+<rel label="appos">
+<span from="1311" to="1316"/>
+</rel>
+</span>
+<span id="s1654_n22" from="1325" to="1326">
+<rel label="punct">
+<span from="1318" to="1325"/>
+</rel>
+</span>
+<span id="s1654_n23" from="1326" to="1327">
+<rel label="punct">
+<span from="1200" to="1212"/>
+</rel>
+</span>
+<span id="s1655_n1" from="1328" to="1340">
+<rel label="nsubj">
+<span from="1341" to="1349"/>
+</rel>
+</span>
+<span id="s1655_n2" from="1341" to="1349">
+<rel label="root">
+<span from="1328" to="1376"/>
+</rel>
+</span>
+<span id="s1655_n3" from="1350" to="1353">
+<rel label="case">
+<span from="1354" to="1361"/>
+</rel>
+</span>
+<span id="s1655_n4" from="1354" to="1361">
+<rel label="obj">
+<span from="1341" to="1349"/>
+</rel>
+</span>
+<span id="s1655_n5" from="1362" to="1365">
+<rel label="cc">
+<span from="1366" to="1375"/>
+</rel>
+</span>
+<span id="s1655_n6" from="1366" to="1375">
+<rel label="conj">
+<span from="1354" to="1361"/>
+</rel>
+</span>
+<span id="s1655_n7" from="1375" to="1376">
+<rel label="punct">
+<span from="1341" to="1349"/>
+</rel>
+</span>
+<span id="s1656_n1" from="1377" to="1379">
+<rel label="case">
+<span from="1384" to="1392"/>
+</rel>
+</span>
+<span id="s1656_n2" from="1380" to="1383">
+<rel label="det">
+<span from="1384" to="1392"/>
+</rel>
+</span>
+<span id="s1656_n3" from="1384" to="1392">
+<rel label="obl">
+<span from="1419" to="1427"/>
+</rel>
+</span>
+<span id="s1656_n4" from="1393" to="1399">
+<rel label="aux">
+<span from="1419" to="1427"/>
+</rel>
+</span>
+<span id="s1656_n5" from="1400" to="1418">
+<rel label="nsubj:pass">
+<span from="1419" to="1427"/>
+</rel>
+</span>
+<span id="s1656_n6" from="1419" to="1427">
+<rel label="root">
+<span from="1377" to="1433"/>
+</rel>
+</span>
+<span id="s1656_n7" from="1428" to="1432">
+<rel label="aux:pass">
+<span from="1419" to="1427"/>
+</rel>
+</span>
+<span id="s1656_n8" from="1432" to="1433">
+<rel label="punct">
+<span from="1419" to="1427"/>
+</rel>
+</span>
+<span id="s1657_n1" from="1434" to="1437">
+<rel label="det">
+<span from="1438" to="1449"/>
+</rel>
+</span>
+<span id="s1657_n2" from="1438" to="1449">
+<rel label="nsubj">
+<span from="1450" to="1456"/>
+</rel>
+</span>
+<span id="s1657_n3" from="1450" to="1456">
+<rel label="root">
+<span from="1434" to="1584"/>
+</rel>
+</span>
+<span id="s1657_n4" from="1457" to="1460">
+<rel label="case">
+<span from="1461" to="1479"/>
+</rel>
+</span>
+<span id="s1657_n5" from="1461" to="1479">
+<rel label="obl">
+<span from="1450" to="1456"/>
+</rel>
+</span>
+<span id="s1657_n6" from="1480" to="1483">
+<rel label="det">
+<span from="1484" to="1497"/>
+</rel>
+</span>
+<span id="s1657_n7" from="1484" to="1497">
+<rel label="obj">
+<span from="1450" to="1456"/>
+</rel>
+</span>
+<span id="s1657_n8" from="1498" to="1501">
+<rel label="det">
+<span from="1502" to="1509"/>
+</rel>
+</span>
+<span id="s1657_n9" from="1502" to="1509">
+<rel label="nmod">
+<span from="1484" to="1497"/>
+</rel>
+</span>
+<span id="s1657_n10" from="1510" to="1513">
+<rel label="cc">
+<span from="1556" to="1583"/>
+</rel>
+</span>
+<span id="s1657_n11" from="1514" to="1517">
+<rel label="cop">
+<span from="1556" to="1583"/>
+</rel>
+</span>
+<span id="s1657_n12" from="1518" to="1521">
+<rel label="case">
+<span from="1556" to="1583"/>
+</rel>
+</span>
+<span id="s1657_n13" from="1522" to="1526">
+<rel label="det">
+<span from="1556" to="1583"/>
+</rel>
+</span>
+<span id="s1657_n14" from="1527" to="1537">
+<rel label="amod">
+<span from="1556" to="1583"/>
+</rel>
+</span>
+<span id="s1657_n15" from="1538" to="1555">
+<rel label="amod">
+<span from="1556" to="1583"/>
+</rel>
+</span>
+<span id="s1657_n16" from="1556" to="1583">
+<rel label="conj">
+<span from="1450" to="1456"/>
+</rel>
+</span>
+<span id="s1657_n17" from="1583" to="1584">
+<rel label="punct">
+<span from="1450" to="1456"/>
+</rel>
+</span>
+<span id="s1658_n1" from="1585" to="1597">
+<rel label="advmod">
+<span from="1598" to="1603"/>
+</rel>
+</span>
+<span id="s1658_n2" from="1598" to="1603">
+<rel label="root">
+<span from="1585" to="1648"/>
+</rel>
+</span>
+<span id="s1658_n3" from="1604" to="1609">
+<rel label="det">
+<span from="1610" to="1623"/>
+</rel>
+</span>
+<span id="s1658_n4" from="1610" to="1623">
+<rel label="nsubj">
+<span from="1598" to="1603"/>
+</rel>
+</span>
+<span id="s1658_n5" from="1624" to="1627">
+<rel label="case">
+<span from="1628" to="1647"/>
+</rel>
+</span>
+<span id="s1658_n6" from="1628" to="1647">
+<rel label="obl">
+<span from="1598" to="1603"/>
+</rel>
+</span>
+<span id="s1658_n7" from="1647" to="1648">
+<rel label="punct">
+<span from="1598" to="1603"/>
+</rel>
+</span>
+<span id="s1659_n1" from="1649" to="1657">
+<rel label="nsubj">
+<span from="1678" to="1683"/>
+</rel>
+</span>
+<span id="s1659_n2" from="1658" to="1661">
+<rel label="case">
+<span from="1666" to="1677"/>
+</rel>
+</span>
+<span id="s1659_n3" from="1662" to="1665">
+<rel label="det">
+<span from="1666" to="1677"/>
+</rel>
+</span>
+<span id="s1659_n4" from="1666" to="1677">
+<rel label="obl">
+<span from="1649" to="1657"/>
+</rel>
+</span>
+<span id="s1659_n5" from="1678" to="1683">
+<rel label="root">
+<span from="1649" to="1829"/>
+</rel>
+</span>
+<span id="s1659_n6" from="1684" to="1688">
+<rel label="det">
+<span from="1700" to="1714"/>
+</rel>
+</span>
+<span id="s1659_n7" from="1689" to="1699">
+<rel label="amod">
+<span from="1700" to="1714"/>
+</rel>
+</span>
+<span id="s1659_n8" from="1700" to="1714">
+<rel label="obj">
+<span from="1678" to="1683"/>
+</rel>
+</span>
+<span id="s1659_n9" from="1715" to="1718">
+<rel label="case">
+<span from="1719" to="1729"/>
+</rel>
+</span>
+<span id="s1659_n10" from="1719" to="1729">
+<rel label="nmod">
+<span from="1700" to="1714"/>
+</rel>
+</span>
+<span id="s1659_n11" from="1730" to="1733">
+<rel label="compound:prt">
+<span from="1678" to="1683"/>
+</rel>
+</span>
+<span id="s1659_n12" from="1734" to="1737">
+<rel label="cc">
+<span from="1738" to="1749"/>
+</rel>
+</span>
+<span id="s1659_n13" from="1738" to="1749">
+<rel label="conj">
+<span from="1678" to="1683"/>
+</rel>
+</span>
+<span id="s1659_n14" from="1749" to="1750">
+<rel label="punct">
+<span from="1761" to="1776"/>
+</rel>
+</span>
+<span id="s1659_n15" from="1751" to="1754">
+<rel label="case">
+<span from="1761" to="1776"/>
+</rel>
+</span>
+<span id="s1659_n16" from="1755" to="1760">
+<rel label="amod">
+<span from="1761" to="1776"/>
+</rel>
+</span>
+<span id="s1659_n17" from="1761" to="1776">
+<rel label="obl">
+<span from="1738" to="1749"/>
+</rel>
+</span>
+<span id="s1659_n18" from="1777" to="1779">
+<rel label="case">
+<span from="1784" to="1794"/>
+</rel>
+</span>
+<span id="s1659_n19" from="1780" to="1783">
+<rel label="det">
+<span from="1784" to="1794"/>
+</rel>
+</span>
+<span id="s1659_n20" from="1784" to="1794">
+<rel label="nmod">
+<span from="1761" to="1776"/>
+</rel>
+</span>
+<span id="s1659_n21" from="1794" to="1795">
+<rel label="punct">
+<span from="1761" to="1776"/>
+</rel>
+</span>
+<span id="s1659_n22" from="1795" to="1798">
+<rel label="det">
+<span from="1818" to="1828"/>
+</rel>
+</span>
+<span id="s1659_n23" from="1799" to="1808">
+<rel label="advmod">
+<span from="1809" to="1817"/>
+</rel>
+</span>
+<span id="s1659_n24" from="1809" to="1817">
+<rel label="amod">
+<span from="1818" to="1828"/>
+</rel>
+</span>
+<span id="s1659_n25" from="1818" to="1828">
+<rel label="obj">
+<span from="1738" to="1749"/>
+</rel>
+</span>
+<span id="s1659_n26" from="1828" to="1829">
+<rel label="punct">
+<span from="1678" to="1683"/>
+</rel>
+</span>
+<span id="s1660_n1" from="1830" to="1837">
+<rel label="advmod">
+<span from="1889" to="1897"/>
+</rel>
+</span>
+<span id="s1660_n2" from="1838" to="1844">
+<rel label="case">
+<span from="1830" to="1837"/>
+</rel>
+</span>
+<span id="s1660_n3" from="1845" to="1849">
+<rel label="aux:pass">
+<span from="1889" to="1897"/>
+</rel>
+</span>
+<span id="s1660_n4" from="1850" to="1853">
+<rel label="advmod">
+<span from="1889" to="1897"/>
+</rel>
+</span>
+<span id="s1660_n5" from="1854" to="1857">
+<rel label="cc">
+<span from="1872" to="1879"/>
+</rel>
+</span>
+<span id="s1660_n6" from="1858" to="1867">
+<rel label="case">
+<span from="1872" to="1879"/>
+</rel>
+</span>
+<span id="s1660_n7" from="1868" to="1871">
+<rel label="det">
+<span from="1872" to="1879"/>
+</rel>
+</span>
+<span id="s1660_n8" from="1872" to="1879">
+<rel label="conj">
+<span from="1850" to="1853"/>
+</rel>
+</span>
+<span id="s1660_n9" from="1880" to="1888">
+<rel label="nsubj:pass">
+<span from="1889" to="1897"/>
+</rel>
+</span>
+<span id="s1660_n10" from="1889" to="1897">
+<rel label="root">
+<span from="1830" to="1951"/>
+</rel>
+</span>
+<span id="s1660_n11" from="1897" to="1898">
+<rel label="punct">
+<span from="1918" to="1928"/>
+</rel>
+</span>
+<span id="s1660_n12" from="1899" to="1905">
+<rel label="det">
+<span from="1918" to="1928"/>
+</rel>
+</span>
+<span id="s1660_n13" from="1906" to="1909">
+<rel label="det">
+<span from="1918" to="1928"/>
+</rel>
+</span>
+<span id="s1660_n14" from="1910" to="1917">
+<rel label="amod">
+<span from="1918" to="1928"/>
+</rel>
+</span>
+<span id="s1660_n15" from="1918" to="1928">
+<rel label="obj">
+<span from="1889" to="1897"/>
+</rel>
+</span>
+<span id="s1660_n16" from="1929" to="1932">
+<rel label="det">
+<span from="1933" to="1950"/>
+</rel>
+</span>
+<span id="s1660_n17" from="1933" to="1950">
+<rel label="nmod">
+<span from="1918" to="1928"/>
+</rel>
+</span>
+<span id="s1660_n18" from="1950" to="1951">
+<rel label="punct">
+<span from="1889" to="1897"/>
+</rel>
+</span>
+<span id="s1661_n1" from="1952" to="1955">
+<rel label="det">
+<span from="1956" to="1964"/>
+</rel>
+</span>
+<span id="s1661_n2" from="1956" to="1964">
+<rel label="nsubj">
+<span from="1965" to="1970"/>
+</rel>
+</span>
+<span id="s1661_n3" from="1965" to="1970">
+<rel label="root">
+<span from="1952" to="2064"/>
+</rel>
+</span>
+<span id="s1661_n4" from="1971" to="1974">
+<rel label="advmod">
+<span from="1993" to="2006"/>
+</rel>
+</span>
+<span id="s1661_n5" from="1975" to="1979">
+<rel label="det">
+<span from="1993" to="2006"/>
+</rel>
+</span>
+<span id="s1661_n6" from="1980" to="1984">
+<rel label="advmod">
+<span from="1985" to="1992"/>
+</rel>
+</span>
+<span id="s1661_n7" from="1985" to="1992">
+<rel label="amod">
+<span from="1993" to="2006"/>
+</rel>
+</span>
+<span id="s1661_n8" from="1993" to="2006">
+<rel label="obj">
+<span from="1965" to="1970"/>
+</rel>
+</span>
+<span id="s1661_n9" from="2007" to="2020">
+<rel label="flat:name">
+<span from="1993" to="2006"/>
+</rel>
+</span>
+<span id="s1661_n10" from="2020" to="2021">
+<rel label="punct">
+<span from="2054" to="2063"/>
+</rel>
+</span>
+<span id="s1661_n11" from="2022" to="2024">
+<rel label="mark">
+<span from="2054" to="2063"/>
+</rel>
+</span>
+<span id="s1661_n12" from="2025" to="2028">
+<rel label="nsubj">
+<span from="2054" to="2063"/>
+</rel>
+</span>
+<span id="s1661_n13" from="2029" to="2034">
+<rel label="case">
+<span from="2039" to="2053"/>
+</rel>
+</span>
+<span id="s1661_n14" from="2035" to="2038">
+<rel label="det">
+<span from="2039" to="2053"/>
+</rel>
+</span>
+<span id="s1661_n15" from="2039" to="2053">
+<rel label="obl">
+<span from="2054" to="2063"/>
+</rel>
+</span>
+<span id="s1661_n16" from="2054" to="2063">
+<rel label="advcl">
+<span from="1965" to="1970"/>
+</rel>
+</span>
+<span id="s1661_n17" from="2063" to="2064">
+<rel label="punct">
+<span from="1965" to="1970"/>
+</rel>
+</span>
+<span id="s1662_n1" from="2065" to="2077">
+<rel label="nsubj:pass">
+<span from="2105" to="2120"/>
+</rel>
+</span>
+<span id="s1662_n2" from="2078" to="2084">
+<rel label="aux">
+<span from="2105" to="2120"/>
+</rel>
+</span>
+<span id="s1662_n3" from="2085" to="2091">
+<rel label="case">
+<span from="2098" to="2104"/>
+</rel>
+</span>
+<span id="s1662_n4" from="2092" to="2097">
+<rel label="det">
+<span from="2098" to="2104"/>
+</rel>
+</span>
+<span id="s1662_n5" from="2098" to="2104">
+<rel label="obl">
+<span from="2105" to="2120"/>
+</rel>
+</span>
+<span id="s1662_n6" from="2105" to="2120">
+<rel label="root">
+<span from="2065" to="2546"/>
+</rel>
+</span>
+<span id="s1662_n7" from="2121" to="2127">
+<rel label="aux:pass">
+<span from="2105" to="2120"/>
+</rel>
+</span>
+<span id="s1662_n8" from="2127" to="2128">
+<rel label="punct">
+<span from="2105" to="2120"/>
+</rel>
+</span>
+<span id="s1662_n9" from="2129" to="2132">
+<rel label="nsubj">
+<span from="2133" to="2138"/>
+</rel>
+</span>
+<span id="s1662_n10" from="2133" to="2138">
+<rel label="parataxis">
+<span from="2105" to="2120"/>
+</rel>
+</span>
+<span id="s1662_n11" from="2139" to="2144">
+<rel label="advmod">
+<span from="2133" to="2138"/>
+</rel>
+</span>
+<span id="s1662_n12" from="2145" to="2153">
+<rel label="case">
+<span from="2154" to="2158"/>
+</rel>
+</span>
+<span id="s1662_n13" from="2154" to="2158">
+<rel label="obl">
+<span from="2133" to="2138"/>
+</rel>
+</span>
+<span id="s1662_n14" from="2159" to="2162">
+<rel label="cc">
+<span from="2168" to="2169"/>
+</rel>
+</span>
+<span id="s1662_n15" from="2163" to="2167">
+<rel label="nummod">
+<span from="2168" to="2169"/>
+</rel>
+</span>
+<span id="s1662_n16" from="2168" to="2169">
+<rel label="conj">
+<span from="2154" to="2158"/>
+</rel>
+</span>
+<span id="s1662_n17" from="2169" to="2170">
+<rel label="case">
+<span from="2170" to="2172"/>
+</rel>
+</span>
+<span id="s1662_n18" from="2170" to="2172">
+<rel label="appos">
+<span from="2168" to="2169"/>
+</rel>
+</span>
+<span id="s1662_n19" from="2172" to="2173">
+<rel label="case">
+<span from="2170" to="2172"/>
+</rel>
+</span>
+<span id="s1662_n20" from="2173" to="2175">
+<rel label="nmod">
+<span from="2170" to="2172"/>
+</rel>
+</span>
+<span id="s1662_n21" from="2176" to="2179">
+<rel label="det">
+<span from="2180" to="2186"/>
+</rel>
+</span>
+<span id="s1662_n22" from="2180" to="2186">
+<rel label="nsubj">
+<span from="2133" to="2138"/>
+</rel>
+</span>
+<span id="s1662_n23" from="2187" to="2190">
+<rel label="cop">
+<span from="2241" to="2249"/>
+</rel>
+</span>
+<span id="s1662_n24" from="2191" to="2194">
+<rel label="case">
+<span from="2195" to="2213"/>
+</rel>
+</span>
+<span id="s1662_n25" from="2195" to="2213">
+<rel label="obj">
+<span from="2241" to="2249"/>
+</rel>
+</span>
+<span id="s1662_n26" from="2214" to="2217">
+<rel label="det">
+<span from="2218" to="2226"/>
+</rel>
+</span>
+<span id="s1662_n27" from="2218" to="2226">
+<rel label="nmod">
+<span from="2195" to="2213"/>
+</rel>
+</span>
+<span id="s1662_n28" from="2227" to="2229">
+<rel label="case">
+<span from="2230" to="2240"/>
+</rel>
+</span>
+<span id="s1662_n29" from="2230" to="2240">
+<rel label="nmod">
+<span from="2195" to="2213"/>
+</rel>
+</span>
+<span id="s1662_n30" from="2241" to="2249">
+<rel label="parataxis">
+<span from="2105" to="2120"/>
+</rel>
+</span>
+<span id="s1662_n31" from="2249" to="2250">
+<rel label="punct">
+<span from="2105" to="2120"/>
+</rel>
+</span>
+<span id="s1662_n32" from="2251" to="2253">
+<rel label="advmod">
+<span from="2259" to="2267"/>
+</rel>
+</span>
+<span id="s1662_n33" from="2254" to="2258">
+<rel label="case">
+<span from="2259" to="2267"/>
+</rel>
+</span>
+<span id="s1662_n34" from="2259" to="2267">
+<rel label="obl">
+<span from="2537" to="2545"/>
+</rel>
+</span>
+<span id="s1662_n35" from="2268" to="2271">
+<rel label="det">
+<span from="2272" to="2279"/>
+</rel>
+</span>
+<span id="s1662_n36" from="2272" to="2279">
+<rel label="nmod">
+<span from="2259" to="2267"/>
+</rel>
+</span>
+<span id="s1662_n37" from="2280" to="2286">
+<rel label="aux:pass">
+<span from="2537" to="2545"/>
+</rel>
+</span>
+<span id="s1662_n38" from="2287" to="2292">
+<rel label="nsubj:pass">
+<span from="2537" to="2545"/>
+</rel>
+</span>
+<span id="s1662_n39" from="2293" to="2296">
+<rel label="case">
+<span from="2297" to="2301"/>
+</rel>
+</span>
+<span id="s1662_n40" from="2297" to="2301">
+<rel label="nmod">
+<span from="2287" to="2292"/>
+</rel>
+</span>
+<span id="s1662_n41" from="2302" to="2303">
+<rel label="punct">
+<span from="2303" to="2316"/>
+</rel>
+</span>
+<span id="s1662_n42" from="2303" to="2316">
+<rel label="appos">
+<span from="2297" to="2301"/>
+</rel>
+</span>
+<span id="s1662_n43" from="2316" to="2317">
+<rel label="punct">
+<span from="2327" to="2340"/>
+</rel>
+</span>
+<span id="s1662_n44" from="2318" to="2326">
+<rel label="amod">
+<span from="2327" to="2340"/>
+</rel>
+</span>
+<span id="s1662_n45" from="2327" to="2340">
+<rel label="conj">
+<span from="2303" to="2316"/>
+</rel>
+</span>
+<span id="s1662_n46" from="2340" to="2341">
+<rel label="punct">
+<span from="2303" to="2316"/>
+</rel>
+</span>
+<span id="s1662_n47" from="2341" to="2342">
+<rel label="punct">
+<span from="2343" to="2346"/>
+</rel>
+</span>
+<span id="s1662_n48" from="2343" to="2346">
+<rel label="conj">
+<span from="2303" to="2316"/>
+</rel>
+</span>
+<span id="s1662_n49" from="2347" to="2348">
+<rel label="punct">
+<span from="2348" to="2361"/>
+</rel>
+</span>
+<span id="s1662_n50" from="2348" to="2361">
+<rel label="appos">
+<span from="2343" to="2346"/>
+</rel>
+</span>
+<span id="s1662_n51" from="2362" to="2365">
+<rel label="case">
+<span from="2366" to="2378"/>
+</rel>
+</span>
+<span id="s1662_n52" from="2366" to="2378">
+<rel label="nmod">
+<span from="2348" to="2361"/>
+</rel>
+</span>
+<span id="s1662_n53" from="2378" to="2379">
+<rel label="punct">
+<span from="2348" to="2361"/>
+</rel>
+</span>
+<span id="s1662_n54" from="2379" to="2380">
+<rel label="punct">
+<span from="2381" to="2384"/>
+</rel>
+</span>
+<span id="s1662_n55" from="2381" to="2384">
+<rel label="conj">
+<span from="2303" to="2316"/>
+</rel>
+</span>
+<span id="s1662_n56" from="2385" to="2386">
+<rel label="punct">
+<span from="2386" to="2399"/>
+</rel>
+</span>
+<span id="s1662_n57" from="2386" to="2399">
+<rel label="appos">
+<span from="2381" to="2384"/>
+</rel>
+</span>
+<span id="s1662_n58" from="2400" to="2403">
+<rel label="case">
+<span from="2404" to="2406"/>
+</rel>
+</span>
+<span id="s1662_n59" from="2404" to="2406">
+<rel label="nmod">
+<span from="2386" to="2399"/>
+</rel>
+</span>
+<span id="s1662_n60" from="2407" to="2411">
+<rel label="flat:name">
+<span from="2404" to="2406"/>
+</rel>
+</span>
+<span id="s1662_n61" from="2411" to="2412">
+<rel label="punct">
+<span from="2386" to="2399"/>
+</rel>
+</span>
+<span id="s1662_n62" from="2412" to="2413">
+<rel label="punct">
+<span from="2414" to="2417"/>
+</rel>
+</span>
+<span id="s1662_n63" from="2414" to="2417">
+<rel label="conj">
+<span from="2303" to="2316"/>
+</rel>
+</span>
+<span id="s1662_n64" from="2418" to="2419">
+<rel label="punct">
+<span from="2426" to="2446"/>
+</rel>
+</span>
+<span id="s1662_n65" from="2419" to="2425">
+<rel label="amod">
+<span from="2426" to="2446"/>
+</rel>
+</span>
+<span id="s1662_n66" from="2426" to="2446">
+<rel label="appos">
+<span from="2414" to="2417"/>
+</rel>
+</span>
+<span id="s1662_n67" from="2446" to="2447">
+<rel label="punct">
+<span from="2426" to="2446"/>
+</rel>
+</span>
+<span id="s1662_n68" from="2448" to="2451">
+<rel label="case">
+<span from="2465" to="2469"/>
+</rel>
+</span>
+<span id="s1662_n69" from="2452" to="2455">
+<rel label="advmod">
+<span from="2465" to="2469"/>
+</rel>
+</span>
+<span id="s1662_n70" from="2456" to="2458">
+<rel label="case">
+<span from="2465" to="2469"/>
+</rel>
+</span>
+<span id="s1662_n71" from="2459" to="2464">
+<rel label="det">
+<span from="2465" to="2469"/>
+</rel>
+</span>
+<span id="s1662_n72" from="2465" to="2469">
+<rel label="obl">
+<span from="2537" to="2545"/>
+</rel>
+</span>
+<span id="s1662_n73" from="2470" to="2473">
+<rel label="case">
+<span from="2474" to="2475"/>
+</rel>
+</span>
+<span id="s1662_n74" from="2474" to="2475">
+<rel label="nmod">
+<span from="2465" to="2469"/>
+</rel>
+</span>
+<span id="s1662_n75" from="2476" to="2478">
+<rel label="case">
+<span from="2483" to="2496"/>
+</rel>
+</span>
+<span id="s1662_n76" from="2479" to="2482">
+<rel label="det">
+<span from="2483" to="2496"/>
+</rel>
+</span>
+<span id="s1662_n77" from="2483" to="2496">
+<rel label="nmod">
+<span from="2465" to="2469"/>
+</rel>
+</span>
+<span id="s1662_n78" from="2497" to="2500">
+<rel label="case">
+<span from="2501" to="2514"/>
+</rel>
+</span>
+<span id="s1662_n79" from="2501" to="2514">
+<rel label="nmod">
+<span from="2483" to="2496"/>
+</rel>
+</span>
+<span id="s1662_n80" from="2515" to="2516">
+<rel label="punct">
+<span from="2522" to="2535"/>
+</rel>
+</span>
+<span id="s1662_n81" from="2516" to="2521">
+<rel label="amod">
+<span from="2522" to="2535"/>
+</rel>
+</span>
+<span id="s1662_n82" from="2522" to="2535">
+<rel label="appos">
+<span from="2501" to="2514"/>
+</rel>
+</span>
+<span id="s1662_n83" from="2535" to="2536">
+<rel label="punct">
+<span from="2522" to="2535"/>
+</rel>
+</span>
+<span id="s1662_n84" from="2537" to="2545">
+<rel label="parataxis">
+<span from="2105" to="2120"/>
+</rel>
+</span>
+<span id="s1662_n85" from="2545" to="2546">
+<rel label="punct">
+<span from="2105" to="2120"/>
+</rel>
+</span>
+<span id="s1663_n1" from="2547" to="2549">
+<rel label="case">
+<span from="2561" to="2566"/>
+</rel>
+</span>
+<span id="s1663_n2" from="2550" to="2560">
+<rel label="amod">
+<span from="2561" to="2566"/>
+</rel>
+</span>
+<span id="s1663_n3" from="2561" to="2566">
+<rel label="obl">
+<span from="2621" to="2627"/>
+</rel>
+</span>
+<span id="s1663_n4" from="2567" to="2570">
+<rel label="case">
+<span from="2571" to="2585"/>
+</rel>
+</span>
+<span id="s1663_n5" from="2571" to="2585">
+<rel label="nmod">
+<span from="2561" to="2566"/>
+</rel>
+</span>
+<span id="s1663_n6" from="2586" to="2587">
+<rel label="punct">
+<span from="2587" to="2595"/>
+</rel>
+</span>
+<span id="s1663_n7" from="2587" to="2595">
+<rel label="appos">
+<span from="2571" to="2585"/>
+</rel>
+</span>
+<span id="s1663_n8" from="2595" to="2596">
+<rel label="punct">
+<span from="2597" to="2610"/>
+</rel>
+</span>
+<span id="s1663_n9" from="2597" to="2610">
+<rel label="conj">
+<span from="2587" to="2595"/>
+</rel>
+</span>
+<span id="s1663_n10" from="2610" to="2611">
+<rel label="punct">
+<span from="2612" to="2619"/>
+</rel>
+</span>
+<span id="s1663_n11" from="2612" to="2619">
+<rel label="conj">
+<span from="2587" to="2595"/>
+</rel>
+</span>
+<span id="s1663_n12" from="2619" to="2620">
+<rel label="punct">
+<span from="2587" to="2595"/>
+</rel>
+</span>
+<span id="s1663_n13" from="2621" to="2627">
+<rel label="root">
+<span from="2547" to="2663"/>
+</rel>
+</span>
+<span id="s1663_n14" from="2628" to="2640">
+<rel label="nsubj">
+<span from="2621" to="2627"/>
+</rel>
+</span>
+<span id="s1663_n15" from="2641" to="2644">
+<rel label="case">
+<span from="2645" to="2658"/>
+</rel>
+</span>
+<span id="s1663_n16" from="2645" to="2658">
+<rel label="obl">
+<span from="2621" to="2627"/>
+</rel>
+</span>
+<span id="s1663_n17" from="2659" to="2662">
+<rel label="compound:prt">
+<span from="2621" to="2627"/>
+</rel>
+</span>
+<span id="s1663_n18" from="2662" to="2663">
+<rel label="punct">
+<span from="2621" to="2627"/>
+</rel>
+</span>
+<span id="s1664_n1" from="2665" to="2683">
+<rel label="nsubj">
+<span from="2709" to="2716"/>
+</rel>
+</span>
+<span id="s1664_n2" from="2686" to="2689">
+<rel label="det">
+<span from="2690" to="2708"/>
+</rel>
+</span>
+<span id="s1664_n3" from="2690" to="2708">
+<rel label="appos">
+<span from="2665" to="2683"/>
+</rel>
+</span>
+<span id="s1664_n4" from="2709" to="2716">
+<rel label="root">
+<span from="2665" to="2871"/>
+</rel>
+</span>
+<span id="s1664_n5" from="2717" to="2729">
+<rel label="advmod">
+<span from="2709" to="2716"/>
+</rel>
+</span>
+<span id="s1664_n6" from="2730" to="2733">
+<rel label="case">
+<span from="2746" to="2760"/>
+</rel>
+</span>
+<span id="s1664_n7" from="2734" to="2745">
+<rel label="amod">
+<span from="2746" to="2760"/>
+</rel>
+</span>
+<span id="s1664_n8" from="2746" to="2760">
+<rel label="obj">
+<span from="2709" to="2716"/>
+</rel>
+</span>
+<span id="s1664_n9" from="2760" to="2761">
+<rel label="punct">
+<span from="2862" to="2870"/>
+</rel>
+</span>
+<span id="s1664_n10" from="2762" to="2765">
+<rel label="nsubj">
+<span from="2862" to="2870"/>
+</rel>
+</span>
+<span id="s1664_n11" from="2766" to="2770">
+<rel label="det">
+<span from="2782" to="2792"/>
+</rel>
+</span>
+<span id="s1664_n12" from="2771" to="2781">
+<rel label="amod">
+<span from="2782" to="2792"/>
+</rel>
+</span>
+<span id="s1664_n13" from="2782" to="2792">
+<rel label="obj">
+<span from="2862" to="2870"/>
+</rel>
+</span>
+<span id="s1664_n14" from="2793" to="2796">
+<rel label="cc">
+<span from="2813" to="2826"/>
+</rel>
+</span>
+<span id="s1664_n15" from="2797" to="2801">
+<rel label="det">
+<span from="2813" to="2826"/>
+</rel>
+</span>
+<span id="s1664_n16" from="2802" to="2812">
+<rel label="amod">
+<span from="2813" to="2826"/>
+</rel>
+</span>
+<span id="s1664_n17" from="2813" to="2826">
+<rel label="conj">
+<span from="2782" to="2792"/>
+</rel>
+</span>
+<span id="s1664_n18" from="2827" to="2828">
+<rel label="punct">
+<span from="2837" to="2860"/>
+</rel>
+</span>
+<span id="s1664_n19" from="2828" to="2836">
+<rel label="advmod">
+<span from="2837" to="2860"/>
+</rel>
+</span>
+<span id="s1664_n20" from="2837" to="2860">
+<rel label="appos">
+<span from="2813" to="2826"/>
+</rel>
+</span>
+<span id="s1664_n21" from="2860" to="2861">
+<rel label="punct">
+<span from="2837" to="2860"/>
+</rel>
+</span>
+<span id="s1664_n22" from="2862" to="2870">
+<rel label="acl">
+<span from="2746" to="2760"/>
+</rel>
+</span>
+<span id="s1664_n23" from="2870" to="2871">
+<rel label="punct">
+<span from="2709" to="2716"/>
+</rel>
+</span>
+<span id="s1665_n1" from="2872" to="2874">
+<rel label="case">
+<span from="2875" to="2881"/>
+</rel>
+</span>
+<span id="s1665_n2" from="2875" to="2881">
+<rel label="obl">
+<span from="2882" to="2888"/>
+</rel>
+</span>
+<span id="s1665_n3" from="2882" to="2888">
+<rel label="root">
+<span from="2872" to="3042"/>
+</rel>
+</span>
+<span id="s1665_n4" from="2889" to="2893">
+<rel label="obj">
+<span from="2882" to="2888"/>
+</rel>
+</span>
+<span id="s1665_n5" from="2893" to="2894">
+<rel label="punct">
+<span from="2904" to="2909"/>
+</rel>
+</span>
+<span id="s1665_n6" from="2895" to="2898">
+<rel label="case">
+<span from="2904" to="2909"/>
+</rel>
+</span>
+<span id="s1665_n7" from="2899" to="2903">
+<rel label="det">
+<span from="2904" to="2909"/>
+</rel>
+</span>
+<span id="s1665_n8" from="2904" to="2909">
+<rel label="obl">
+<span from="2882" to="2888"/>
+</rel>
+</span>
+<span id="s1665_n9" from="2910" to="2913">
+<rel label="det">
+<span from="2926" to="2934"/>
+</rel>
+</span>
+<span id="s1665_n10" from="2914" to="2925">
+<rel label="amod">
+<span from="2926" to="2934"/>
+</rel>
+</span>
+<span id="s1665_n11" from="2926" to="2934">
+<rel label="nmod">
+<span from="2904" to="2909"/>
+</rel>
+</span>
+<span id="s1665_n12" from="2934" to="2935">
+<rel label="punct">
+<span from="2904" to="2909"/>
+</rel>
+</span>
+<span id="s1665_n13" from="2936" to="2940">
+<rel label="det">
+<span from="2941" to="2954"/>
+</rel>
+</span>
+<span id="s1665_n14" from="2941" to="2954">
+<rel label="nsubj">
+<span from="2882" to="2888"/>
+</rel>
+</span>
+<span id="s1665_n15" from="2954" to="2955">
+<rel label="punct">
+<span from="3035" to="3041"/>
+</rel>
+</span>
+<span id="s1665_n16" from="2956" to="2962">
+<rel label="obj">
+<span from="3035" to="3041"/>
+</rel>
+</span>
+<span id="s1665_n17" from="2963" to="2966">
+<rel label="det">
+<span from="2979" to="2987"/>
+</rel>
+</span>
+<span id="s1665_n18" from="2967" to="2978">
+<rel label="amod">
+<span from="2979" to="2987"/>
+</rel>
+</span>
+<span id="s1665_n19" from="2979" to="2987">
+<rel label="nsubj">
+<span from="3035" to="3041"/>
+</rel>
+</span>
+<span id="s1665_n20" from="2988" to="2992">
+<rel label="case">
+<span from="2993" to="2998"/>
+</rel>
+</span>
+<span id="s1665_n21" from="2993" to="2998">
+<rel label="obl">
+<span from="3035" to="3041"/>
+</rel>
+</span>
+<span id="s1665_n22" from="2999" to="3002">
+<rel label="cc">
+<span from="3019" to="3024"/>
+</rel>
+</span>
+<span id="s1665_n23" from="3003" to="3006">
+<rel label="det">
+<span from="3019" to="3024"/>
+</rel>
+</span>
+<span id="s1665_n24" from="3007" to="3018">
+<rel label="amod">
+<span from="3019" to="3024"/>
+</rel>
+</span>
+<span id="s1665_n25" from="3019" to="3024">
+<rel label="conj">
+<span from="2993" to="2998"/>
+</rel>
+</span>
+<span id="s1665_n26" from="3025" to="3034">
+<rel label="advmod">
+<span from="3035" to="3041"/>
+</rel>
+</span>
+<span id="s1665_n27" from="3035" to="3041">
+<rel label="acl">
+<span from="2941" to="2954"/>
+</rel>
+</span>
+<span id="s1665_n28" from="3041" to="3042">
+<rel label="punct">
+<span from="2882" to="2888"/>
+</rel>
+</span>
+<span id="s1666_n1" from="3043" to="3048">
+<rel label="case">
+<span from="3065" to="3070"/>
+</rel>
+</span>
+<span id="s1666_n2" from="3049" to="3052">
+<rel label="det">
+<span from="3065" to="3070"/>
+</rel>
+</span>
+<span id="s1666_n3" from="3053" to="3064">
+<rel label="amod">
+<span from="3065" to="3070"/>
+</rel>
+</span>
+<span id="s1666_n4" from="3065" to="3070">
+<rel label="obl">
+<span from="3112" to="3125"/>
+</rel>
+</span>
+<span id="s1666_n5" from="3071" to="3074">
+<rel label="cop">
+<span from="3112" to="3125"/>
+</rel>
+</span>
+<span id="s1666_n6" from="3075" to="3079">
+<rel label="det">
+<span from="3080" to="3104"/>
+</rel>
+</span>
+<span id="s1666_n7" from="3080" to="3104">
+<rel label="nsubj">
+<span from="3112" to="3125"/>
+</rel>
+</span>
+<span id="s1666_n8" from="3105" to="3111">
+<rel label="advmod">
+<span from="3112" to="3125"/>
+</rel>
+</span>
+<span id="s1666_n9" from="3112" to="3125">
+<rel label="root">
+<span from="3043" to="3231"/>
+</rel>
+</span>
+<span id="s1666_n10" from="3126" to="3129">
+<rel label="case">
+<span from="3130" to="3136"/>
+</rel>
+</span>
+<span id="s1666_n11" from="3130" to="3136">
+<rel label="obl">
+<span from="3112" to="3125"/>
+</rel>
+</span>
+<span id="s1666_n12" from="3137" to="3140">
+<rel label="cc">
+<span from="3141" to="3163"/>
+</rel>
+</span>
+<span id="s1666_n13" from="3141" to="3163">
+<rel label="conj">
+<span from="3130" to="3136"/>
+</rel>
+</span>
+<span id="s1666_n14" from="3163" to="3164">
+<rel label="punct">
+<span from="3188" to="3196"/>
+</rel>
+</span>
+<span id="s1666_n15" from="3165" to="3177">
+<rel label="advmod">
+<span from="3188" to="3196"/>
+</rel>
+</span>
+<span id="s1666_n16" from="3178" to="3182">
+<rel label="advmod">
+<span from="3188" to="3196"/>
+</rel>
+</span>
+<span id="s1666_n17" from="3183" to="3187">
+<rel label="advmod">
+<span from="3188" to="3196"/>
+</rel>
+</span>
+<span id="s1666_n18" from="3188" to="3196">
+<rel label="conj">
+<span from="3112" to="3125"/>
+</rel>
+</span>
+<span id="s1666_n19" from="3197" to="3200">
+<rel label="cc">
+<span from="3219" to="3230"/>
+</rel>
+</span>
+<span id="s1666_n20" from="3201" to="3211">
+<rel label="advmod">
+<span from="3212" to="3218"/>
+</rel>
+</span>
+<span id="s1666_n21" from="3212" to="3218">
+<rel label="advmod">
+<span from="3219" to="3230"/>
+</rel>
+</span>
+<span id="s1666_n22" from="3219" to="3230">
+<rel label="conj">
+<span from="3112" to="3125"/>
+</rel>
+</span>
+<span id="s1666_n23" from="3230" to="3231">
+<rel label="punct">
+<span from="3112" to="3125"/>
+</rel>
+</span>
+<span id="s1667_n1" from="3232" to="3235">
+<rel label="case">
+<span from="3243" to="3248"/>
+</rel>
+</span>
+<span id="s1667_n2" from="3236" to="3242">
+<rel label="det">
+<span from="3243" to="3248"/>
+</rel>
+</span>
+<span id="s1667_n3" from="3243" to="3248">
+<rel label="obl">
+<span from="3249" to="3260"/>
+</rel>
+</span>
+<span id="s1667_n4" from="3249" to="3260">
+<rel label="root">
+<span from="3232" to="3323"/>
+</rel>
+</span>
+<span id="s1667_n5" from="3261" to="3267">
+<rel label="advmod">
+<span from="3272" to="3280"/>
+</rel>
+</span>
+<span id="s1667_n6" from="3268" to="3271">
+<rel label="det">
+<span from="3272" to="3280"/>
+</rel>
+</span>
+<span id="s1667_n7" from="3272" to="3280">
+<rel label="nsubj">
+<span from="3249" to="3260"/>
+</rel>
+</span>
+<span id="s1667_n8" from="3281" to="3284">
+<rel label="case">
+<span from="3285" to="3297"/>
+</rel>
+</span>
+<span id="s1667_n9" from="3285" to="3297">
+<rel label="nmod">
+<span from="3272" to="3280"/>
+</rel>
+</span>
+<span id="s1667_n10" from="3298" to="3302">
+<rel label="det">
+<span from="3303" to="3307"/>
+</rel>
+</span>
+<span id="s1667_n11" from="3303" to="3307">
+<rel label="obj">
+<span from="3249" to="3260"/>
+</rel>
+</span>
+<span id="s1667_n12" from="3308" to="3310">
+<rel label="case">
+<span from="3315" to="3322"/>
+</rel>
+</span>
+<span id="s1667_n13" from="3311" to="3314">
+<rel label="det">
+<span from="3315" to="3322"/>
+</rel>
+</span>
+<span id="s1667_n14" from="3315" to="3322">
+<rel label="nmod">
+<span from="3303" to="3307"/>
+</rel>
+</span>
+<span id="s1667_n15" from="3322" to="3323">
+<rel label="punct">
+<span from="3249" to="3260"/>
+</rel>
+</span>
+<span id="s1668_n1" from="3324" to="3329">
+<rel label="advmod">
+<span from="3376" to="3384"/>
+</rel>
+</span>
+<span id="s1668_n2" from="3330" to="3334">
+<rel label="aux">
+<span from="3376" to="3384"/>
+</rel>
+</span>
+<span id="s1668_n3" from="3335" to="3338">
+<rel label="nsubj:pass">
+<span from="3376" to="3384"/>
+</rel>
+</span>
+<span id="s1668_n4" from="3339" to="3344">
+<rel label="case">
+<span from="3345" to="3363"/>
+</rel>
+</span>
+<span id="s1668_n5" from="3345" to="3363">
+<rel label="obl">
+<span from="3376" to="3384"/>
+</rel>
+</span>
+<span id="s1668_n6" from="3364" to="3367">
+<rel label="cc">
+<span from="3368" to="3375"/>
+</rel>
+</span>
+<span id="s1668_n7" from="3368" to="3375">
+<rel label="conj">
+<span from="3345" to="3363"/>
+</rel>
+</span>
+<span id="s1668_n8" from="3376" to="3384">
+<rel label="root">
+<span from="3324" to="3392"/>
+</rel>
+</span>
+<span id="s1668_n9" from="3385" to="3391">
+<rel label="aux:pass">
+<span from="3376" to="3384"/>
+</rel>
+</span>
+<span id="s1668_n10" from="3391" to="3392">
+<rel label="punct">
+<span from="3376" to="3384"/>
+</rel>
+</span>
+<span id="s1669_n1" from="3393" to="3402">
+<rel label="nsubj">
+<span from="3417" to="3427"/>
+</rel>
+</span>
+<span id="s1669_n2" from="3403" to="3407">
+<rel label="cop">
+<span from="3417" to="3427"/>
+</rel>
+</span>
+<span id="s1669_n3" from="3408" to="3411">
+<rel label="case">
+<span from="3417" to="3427"/>
+</rel>
+</span>
+<span id="s1669_n4" from="3412" to="3416">
+<rel label="nummod">
+<span from="3417" to="3427"/>
+</rel>
+</span>
+<span id="s1669_n5" from="3417" to="3427">
+<rel label="root">
+<span from="3393" to="3498"/>
+</rel>
+</span>
+<span id="s1669_n6" from="3428" to="3431">
+<rel label="case">
+<span from="3432" to="3448"/>
+</rel>
+</span>
+<span id="s1669_n7" from="3432" to="3448">
+<rel label="nmod">
+<span from="3417" to="3427"/>
+</rel>
+</span>
+<span id="s1669_n8" from="3448" to="3449">
+<rel label="punct">
+<span from="3417" to="3427"/>
+</rel>
+</span>
+<span id="s1669_n9" from="3450" to="3466">
+<rel label="appos">
+<span from="3417" to="3427"/>
+</rel>
+</span>
+<span id="s1669_n10" from="3466" to="3467">
+<rel label="punct">
+<span from="3468" to="3481"/>
+</rel>
+</span>
+<span id="s1669_n11" from="3468" to="3481">
+<rel label="conj">
+<span from="3450" to="3466"/>
+</rel>
+</span>
+<span id="s1669_n12" from="3482" to="3485">
+<rel label="cc">
+<span from="3486" to="3497"/>
+</rel>
+</span>
+<span id="s1669_n13" from="3486" to="3497">
+<rel label="conj">
+<span from="3450" to="3466"/>
+</rel>
+</span>
+<span id="s1669_n14" from="3497" to="3498">
+<rel label="punct">
+<span from="3417" to="3427"/>
+</rel>
+</span>
+<span id="s1670_n1" from="3499" to="3503">
+<rel label="root">
+<span from="3499" to="3703"/>
+</rel>
+</span>
+<span id="s1670_n2" from="3503" to="3504">
+<rel label="flat">
+<span from="3499" to="3503"/>
+</rel>
+</span>
+<span id="s1670_n3" from="3504" to="3510">
+<rel label="appos">
+<span from="3499" to="3503"/>
+</rel>
+</span>
+<span id="s1670_n4" from="3511" to="3514">
+<rel label="det">
+<span from="3527" to="3545"/>
+</rel>
+</span>
+<span id="s1670_n5" from="3515" to="3516">
+<rel label="punct">
+<span from="3516" to="3525"/>
+</rel>
+</span>
+<span id="s1670_n6" from="3516" to="3525">
+<rel label="amod">
+<span from="3527" to="3545"/>
+</rel>
+</span>
+<span id="s1670_n7" from="3525" to="3526">
+<rel label="punct">
+<span from="3516" to="3525"/>
+</rel>
+</span>
+<span id="s1670_n8" from="3527" to="3545">
+<rel label="nmod">
+<span from="3504" to="3510"/>
+</rel>
+</span>
+<span id="s1670_n9" from="3546" to="3561">
+<rel label="flat:name">
+<span from="3527" to="3545"/>
+</rel>
+</span>
+<span id="s1670_n10" from="3562" to="3565">
+<rel label="det">
+<span from="3566" to="3584"/>
+</rel>
+</span>
+<span id="s1670_n11" from="3566" to="3584">
+<rel label="appos">
+<span from="3527" to="3545"/>
+</rel>
+</span>
+<span id="s1670_n12" from="3585" to="3590">
+<rel label="det">
+<span from="3591" to="3601"/>
+</rel>
+</span>
+<span id="s1670_n13" from="3591" to="3601">
+<rel label="nmod">
+<span from="3566" to="3584"/>
+</rel>
+</span>
+<span id="s1670_n14" from="3602" to="3618">
+<rel label="advmod">
+<span from="3619" to="3626"/>
+</rel>
+</span>
+<span id="s1670_n15" from="3619" to="3626">
+<rel label="advmod">
+<span from="3499" to="3503"/>
+</rel>
+</span>
+<span id="s1670_n16" from="3626" to="3627">
+<rel label="punct">
+<span from="3631" to="3633"/>
+</rel>
+</span>
+<span id="s1670_n17" from="3628" to="3630">
+<rel label="nsubj">
+<span from="3631" to="3633"/>
+</rel>
+</span>
+<span id="s1670_n18" from="3631" to="3633">
+<rel label="conj">
+<span from="3499" to="3503"/>
+</rel>
+</span>
+<span id="s1670_n19" from="3634" to="3637">
+<rel label="det">
+<span from="3638" to="3644"/>
+</rel>
+</span>
+<span id="s1670_n20" from="3638" to="3644">
+<rel label="nsubj">
+<span from="3631" to="3633"/>
+</rel>
+</span>
+<span id="s1670_n21" from="3645" to="3648">
+<rel label="cc">
+<span from="3649" to="3657"/>
+</rel>
+</span>
+<span id="s1670_n22" from="3649" to="3657">
+<rel label="conj">
+<span from="3638" to="3644"/>
+</rel>
+</span>
+<span id="s1670_n23" from="3658" to="3662">
+<rel label="cop">
+<span from="3688" to="3702"/>
+</rel>
+</span>
+<span id="s1670_n24" from="3663" to="3665">
+<rel label="case">
+<span from="3670" to="3675"/>
+</rel>
+</span>
+<span id="s1670_n25" from="3666" to="3669">
+<rel label="det">
+<span from="3670" to="3675"/>
+</rel>
+</span>
+<span id="s1670_n26" from="3670" to="3675">
+<rel label="obl">
+<span from="3688" to="3702"/>
+</rel>
+</span>
+<span id="s1670_n27" from="3676" to="3679">
+<rel label="det">
+<span from="3680" to="3687"/>
+</rel>
+</span>
+<span id="s1670_n28" from="3680" to="3687">
+<rel label="nmod">
+<span from="3670" to="3675"/>
+</rel>
+</span>
+<span id="s1670_n29" from="3688" to="3702">
+<rel label="conj">
+<span from="3631" to="3633"/>
+</rel>
+</span>
+<span id="s1670_n30" from="3702" to="3703">
+<rel label="punct">
+<span from="3499" to="3503"/>
+</rel>
+</span>
+<span id="s1671_n1" from="3704" to="3707">
+<rel label="det">
+<span from="3708" to="3717"/>
+</rel>
+</span>
+<span id="s1671_n2" from="3708" to="3717">
+<rel label="nsubj">
+<span from="3823" to="3829"/>
+</rel>
+</span>
+<span id="s1671_n3" from="3718" to="3721">
+<rel label="case">
+<span from="3722" to="3729"/>
+</rel>
+</span>
+<span id="s1671_n4" from="3722" to="3729">
+<rel label="nmod">
+<span from="3708" to="3717"/>
+</rel>
+</span>
+<span id="s1671_n5" from="3730" to="3738">
+<rel label="case">
+<span from="3750" to="3759"/>
+</rel>
+</span>
+<span id="s1671_n6" from="3739" to="3742">
+<rel label="det">
+<span from="3750" to="3759"/>
+</rel>
+</span>
+<span id="s1671_n7" from="3743" to="3749">
+<rel label="amod">
+<span from="3750" to="3759"/>
+</rel>
+</span>
+<span id="s1671_n8" from="3750" to="3759">
+<rel label="nmod">
+<span from="3708" to="3717"/>
+</rel>
+</span>
+<span id="s1671_n9" from="3760" to="3767">
+<rel label="advmod">
+<span from="3772" to="3777"/>
+</rel>
+</span>
+<span id="s1671_n10" from="3768" to="3771">
+<rel label="det">
+<span from="3772" to="3777"/>
+</rel>
+</span>
+<span id="s1671_n11" from="3772" to="3777">
+<rel label="conj">
+<span from="3708" to="3717"/>
+</rel>
+</span>
+<span id="s1671_n12" from="3778" to="3783">
+<rel label="det">
+<span from="3784" to="3790"/>
+</rel>
+</span>
+<span id="s1671_n13" from="3784" to="3790">
+<rel label="nmod">
+<span from="3772" to="3777"/>
+</rel>
+</span>
+<span id="s1671_n14" from="3791" to="3794">
+<rel label="case">
+<span from="3799" to="3806"/>
+</rel>
+</span>
+<span id="s1671_n15" from="3795" to="3798">
+<rel label="det">
+<span from="3799" to="3806"/>
+</rel>
+</span>
+<span id="s1671_n16" from="3799" to="3806">
+<rel label="nmod">
+<span from="3772" to="3777"/>
+</rel>
+</span>
+<span id="s1671_n17" from="3807" to="3810">
+<rel label="cop">
+<span from="3823" to="3829"/>
+</rel>
+</span>
+<span id="s1671_n18" from="3811" to="3817">
+<rel label="advmod">
+<span from="3823" to="3829"/>
+</rel>
+</span>
+<span id="s1671_n19" from="3818" to="3822">
+<rel label="advmod">
+<span from="3823" to="3829"/>
+</rel>
+</span>
+<span id="s1671_n20" from="3823" to="3829">
+<rel label="root">
+<span from="3704" to="3830"/>
+</rel>
+</span>
+<span id="s1671_n21" from="3829" to="3830">
+<rel label="punct">
+<span from="3823" to="3829"/>
+</rel>
+</span>
+<span id="s1672_n1" from="3831" to="3835">
+<rel label="det">
+<span from="3845" to="3853"/>
+</rel>
+</span>
+<span id="s1672_n2" from="3836" to="3844">
+<rel label="amod">
+<span from="3845" to="3853"/>
+</rel>
+</span>
+<span id="s1672_n3" from="3845" to="3853">
+<rel label="nsubj">
+<span from="4059" to="4066"/>
+</rel>
+</span>
+<span id="s1672_n4" from="3854" to="3857">
+<rel label="case">
+<span from="3864" to="3876"/>
+</rel>
+</span>
+<span id="s1672_n5" from="3858" to="3863">
+<rel label="det">
+<span from="3864" to="3876"/>
+</rel>
+</span>
+<span id="s1672_n6" from="3864" to="3876">
+<rel label="nmod">
+<span from="3845" to="3853"/>
+</rel>
+</span>
+<span id="s1672_n7" from="3877" to="3880">
+<rel label="case">
+<span from="3881" to="3888"/>
+</rel>
+</span>
+<span id="s1672_n8" from="3881" to="3888">
+<rel label="nmod">
+<span from="3845" to="3853"/>
+</rel>
+</span>
+<span id="s1672_n9" from="3888" to="3889">
+<rel label="punct">
+<span from="3890" to="3898"/>
+</rel>
+</span>
+<span id="s1672_n10" from="3890" to="3898">
+<rel label="appos">
+<span from="3881" to="3888"/>
+</rel>
+</span>
+<span id="s1672_n11" from="3899" to="3900">
+<rel label="punct">
+<span from="3890" to="3898"/>
+</rel>
+</span>
+<span id="s1672_n12" from="3901" to="3904">
+<rel label="cop">
+<span from="4059" to="4066"/>
+</rel>
+</span>
+<span id="s1672_n13" from="3905" to="3918">
+<rel label="advmod">
+<span from="4059" to="4066"/>
+</rel>
+</span>
+<span id="s1672_n14" from="3919" to="3922">
+<rel label="advmod">
+<span from="3941" to="3950"/>
+</rel>
+</span>
+<span id="s1672_n15" from="3923" to="3928">
+<rel label="case">
+<span from="3941" to="3950"/>
+</rel>
+</span>
+<span id="s1672_n16" from="3929" to="3932">
+<rel label="det">
+<span from="3941" to="3950"/>
+</rel>
+</span>
+<span id="s1672_n17" from="3933" to="3940">
+<rel label="amod">
+<span from="3941" to="3950"/>
+</rel>
+</span>
+<span id="s1672_n18" from="3941" to="3950">
+<rel label="obl">
+<span from="4059" to="4066"/>
+</rel>
+</span>
+<span id="s1672_n19" from="3951" to="3954">
+<rel label="case">
+<span from="3966" to="3975"/>
+</rel>
+</span>
+<span id="s1672_n20" from="3955" to="3965">
+<rel label="amod">
+<span from="3966" to="3975"/>
+</rel>
+</span>
+<span id="s1672_n21" from="3966" to="3975">
+<rel label="nmod">
+<span from="3941" to="3950"/>
+</rel>
+</span>
+<span id="s1672_n22" from="3976" to="3977">
+<rel label="punct">
+<span from="3988" to="3997"/>
+</rel>
+</span>
+<span id="s1672_n23" from="3977" to="3987">
+<rel label="amod">
+<span from="3988" to="3997"/>
+</rel>
+</span>
+<span id="s1672_n24" from="3988" to="3997">
+<rel label="appos">
+<span from="3966" to="3975"/>
+</rel>
+</span>
+<span id="s1672_n25" from="3998" to="4001">
+<rel label="cc">
+<span from="4002" to="4011"/>
+</rel>
+</span>
+<span id="s1672_n26" from="4002" to="4011">
+<rel label="conj">
+<span from="3988" to="3997"/>
+</rel>
+</span>
+<span id="s1672_n27" from="4011" to="4012">
+<rel label="punct">
+<span from="3988" to="3997"/>
+</rel>
+</span>
+<span id="s1672_n28" from="4013" to="4018">
+<rel label="case">
+<span from="4019" to="4028"/>
+</rel>
+</span>
+<span id="s1672_n29" from="4019" to="4028">
+<rel label="nmod">
+<span from="3941" to="3950"/>
+</rel>
+</span>
+<span id="s1672_n30" from="4029" to="4032">
+<rel label="case">
+<span from="4033" to="4052"/>
+</rel>
+</span>
+<span id="s1672_n31" from="4033" to="4052">
+<rel label="nmod">
+<span from="4019" to="4028"/>
+</rel>
+</span>
+<span id="s1672_n32" from="4053" to="4054">
+<rel label="punct">
+<span from="4054" to="4057"/>
+</rel>
+</span>
+<span id="s1672_n33" from="4054" to="4057">
+<rel label="appos">
+<span from="4033" to="4052"/>
+</rel>
+</span>
+<span id="s1672_n34" from="4057" to="4058">
+<rel label="punct">
+<span from="4054" to="4057"/>
+</rel>
+</span>
+<span id="s1672_n35" from="4059" to="4066">
+<rel label="root">
+<span from="3831" to="4067"/>
+</rel>
+</span>
+<span id="s1672_n36" from="4066" to="4067">
+<rel label="punct">
+<span from="4059" to="4066"/>
+</rel>
+</span>
+<span id="s1673_n1" from="4068" to="4073">
+<rel label="advmod">
+<span from="4074" to="4088"/>
+</rel>
+</span>
+<span id="s1673_n2" from="4074" to="4088">
+<rel label="root">
+<span from="4068" to="4166"/>
+</rel>
+</span>
+<span id="s1673_n3" from="4089" to="4098">
+<rel label="nsubj">
+<span from="4074" to="4088"/>
+</rel>
+</span>
+<span id="s1673_n4" from="4099" to="4105">
+<rel label="obj">
+<span from="4074" to="4088"/>
+</rel>
+</span>
+<span id="s1673_n5" from="4106" to="4109">
+<rel label="case">
+<span from="4114" to="4124"/>
+</rel>
+</span>
+<span id="s1673_n6" from="4110" to="4113">
+<rel label="det">
+<span from="4114" to="4124"/>
+</rel>
+</span>
+<span id="s1673_n7" from="4114" to="4124">
+<rel label="obl">
+<span from="4074" to="4088"/>
+</rel>
+</span>
+<span id="s1673_n8" from="4125" to="4141">
+<rel label="flat:name">
+<span from="4114" to="4124"/>
+</rel>
+</span>
+<span id="s1673_n9" from="4142" to="4145">
+<rel label="case">
+<span from="4160" to="4165"/>
+</rel>
+</span>
+<span id="s1673_n10" from="4146" to="4159">
+<rel label="amod">
+<span from="4160" to="4165"/>
+</rel>
+</span>
+<span id="s1673_n11" from="4160" to="4165">
+<rel label="obl">
+<span from="4074" to="4088"/>
+</rel>
+</span>
+<span id="s1673_n12" from="4165" to="4166">
+<rel label="punct">
+<span from="4074" to="4088"/>
+</rel>
+</span>
+<span id="s1674_n1" from="4167" to="4176">
+<rel label="nsubj">
+<span from="4193" to="4208"/>
+</rel>
+</span>
+<span id="s1674_n2" from="4177" to="4181">
+<rel label="cop">
+<span from="4193" to="4208"/>
+</rel>
+</span>
+<span id="s1674_n3" from="4182" to="4192">
+<rel label="amod">
+<span from="4193" to="4208"/>
+</rel>
+</span>
+<span id="s1674_n4" from="4193" to="4208">
+<rel label="root">
+<span from="4167" to="4292"/>
+</rel>
+</span>
+<span id="s1674_n5" from="4209" to="4212">
+<rel label="cc">
+<span from="4282" to="4291"/>
+</rel>
+</span>
+<span id="s1674_n6" from="4213" to="4235">
+<rel label="obj">
+<span from="4282" to="4291"/>
+</rel>
+</span>
+<span id="s1674_n7" from="4236" to="4239">
+<rel label="case">
+<span from="4258" to="4263"/>
+</rel>
+</span>
+<span id="s1674_n8" from="4240" to="4243">
+<rel label="det">
+<span from="4258" to="4263"/>
+</rel>
+</span>
+<span id="s1674_n9" from="4244" to="4257">
+<rel label="amod">
+<span from="4258" to="4263"/>
+</rel>
+</span>
+<span id="s1674_n10" from="4258" to="4263">
+<rel label="obl">
+<span from="4282" to="4291"/>
+</rel>
+</span>
+<span id="s1674_n11" from="4264" to="4267">
+<rel label="det">
+<span from="4268" to="4281"/>
+</rel>
+</span>
+<span id="s1674_n12" from="4268" to="4281">
+<rel label="nmod">
+<span from="4258" to="4263"/>
+</rel>
+</span>
+<span id="s1674_n13" from="4282" to="4291">
+<rel label="conj">
+<span from="4193" to="4208"/>
+</rel>
+</span>
+<span id="s1674_n14" from="4291" to="4292">
+<rel label="punct">
+<span from="4193" to="4208"/>
+</rel>
+</span>
+<span id="s1675_n1" from="4293" to="4300">
+<rel label="amod">
+<span from="4301" to="4312"/>
+</rel>
+</span>
+<span id="s1675_n2" from="4301" to="4312">
+<rel label="root">
+<span from="4293" to="4494"/>
+</rel>
+</span>
+<span id="s1675_n3" from="4313" to="4316">
+<rel label="case">
+<span from="4317" to="4330"/>
+</rel>
+</span>
+<span id="s1675_n4" from="4317" to="4330">
+<rel label="nmod">
+<span from="4301" to="4312"/>
+</rel>
+</span>
+<span id="s1675_n5" from="4331" to="4335">
+<rel label="cop">
+<span from="4301" to="4312"/>
+</rel>
+</span>
+<span id="s1675_n6" from="4336" to="4347">
+<rel label="nsubj">
+<span from="4301" to="4312"/>
+</rel>
+</span>
+<span id="s1675_n7" from="4347" to="4348">
+<rel label="punct">
+<span from="4439" to="4450"/>
+</rel>
+</span>
+<span id="s1675_n8" from="4349" to="4352">
+<rel label="nsubj">
+<span from="4439" to="4450"/>
+</rel>
+</span>
+<span id="s1675_n9" from="4353" to="4363">
+<rel label="advmod">
+<span from="4439" to="4450"/>
+</rel>
+</span>
+<span id="s1675_n10" from="4364" to="4369">
+<rel label="advmod">
+<span from="4439" to="4450"/>
+</rel>
+</span>
+<span id="s1675_n11" from="4370" to="4382">
+<rel label="advmod">
+<span from="4439" to="4450"/>
+</rel>
+</span>
+<span id="s1675_n12" from="4383" to="4398">
+<rel label="obj">
+<span from="4439" to="4450"/>
+</rel>
+</span>
+<span id="s1675_n13" from="4399" to="4407">
+<rel label="appos">
+<span from="4383" to="4398"/>
+</rel>
+</span>
+<span id="s1675_n14" from="4408" to="4413">
+<rel label="det">
+<span from="4414" to="4438"/>
+</rel>
+</span>
+<span id="s1675_n15" from="4414" to="4438">
+<rel label="nmod">
+<span from="4399" to="4407"/>
+</rel>
+</span>
+<span id="s1675_n16" from="4439" to="4450">
+<rel label="acl">
+<span from="4336" to="4347"/>
+</rel>
+</span>
+<span id="s1675_n17" from="4450" to="4451">
+<rel label="punct">
+<span from="4478" to="4489"/>
+</rel>
+</span>
+<span id="s1675_n18" from="4452" to="4455">
+<rel label="mark">
+<span from="4478" to="4489"/>
+</rel>
+</span>
+<span id="s1675_n19" from="4456" to="4460">
+<rel label="expl:pv">
+<span from="4478" to="4489"/>
+</rel>
+</span>
+<span id="s1675_n20" from="4461" to="4477">
+<rel label="nsubj">
+<span from="4478" to="4489"/>
+</rel>
+</span>
+<span id="s1675_n21" from="4478" to="4489">
+<rel label="advcl">
+<span from="4439" to="4450"/>
+</rel>
+</span>
+<span id="s1675_n22" from="4490" to="4493">
+<rel label="aux">
+<span from="4478" to="4489"/>
+</rel>
+</span>
+<span id="s1675_n23" from="4493" to="4494">
+<rel label="punct">
+<span from="4336" to="4347"/>
+</rel>
+</span>
+<span id="s1676_n1" from="4496" to="4499">
+<rel label="advmod">
+<span from="4500" to="4507"/>
+</rel>
+</span>
+<span id="s1676_n2" from="4500" to="4507">
+<rel label="csubj">
+<span from="4536" to="4544"/>
+</rel>
+</span>
+<span id="s1676_n3" from="4508" to="4511">
+<rel label="det">
+<span from="4512" to="4530"/>
+</rel>
+</span>
+<span id="s1676_n4" from="4512" to="4530">
+<rel label="nsubj">
+<span from="4500" to="4507"/>
+</rel>
+</span>
+<span id="s1676_n5" from="4531" to="4534">
+<rel label="cop">
+<span from="4500" to="4507"/>
+</rel>
+</span>
+<span id="s1676_n6" from="4534" to="4535">
+<rel label="punct">
+<span from="4500" to="4507"/>
+</rel>
+</span>
+<span id="s1676_n7" from="4536" to="4544">
+<rel label="root">
+<span from="4496" to="4694"/>
+</rel>
+</span>
+<span id="s1676_n8" from="4545" to="4550">
+<rel label="nsubj">
+<span from="4536" to="4544"/>
+</rel>
+</span>
+<span id="s1676_n9" from="4551" to="4554">
+<rel label="case">
+<span from="4559" to="4565"/>
+</rel>
+</span>
+<span id="s1676_n10" from="4555" to="4558">
+<rel label="det">
+<span from="4559" to="4565"/>
+</rel>
+</span>
+<span id="s1676_n11" from="4559" to="4565">
+<rel label="obj">
+<span from="4536" to="4544"/>
+</rel>
+</span>
+<span id="s1676_n12" from="4566" to="4569">
+<rel label="det">
+<span from="4570" to="4585"/>
+</rel>
+</span>
+<span id="s1676_n13" from="4570" to="4585">
+<rel label="nmod">
+<span from="4559" to="4565"/>
+</rel>
+</span>
+<span id="s1676_n14" from="4586" to="4588">
+<rel label="case">
+<span from="4605" to="4628"/>
+</rel>
+</span>
+<span id="s1676_n15" from="4589" to="4592">
+<rel label="det">
+<span from="4605" to="4628"/>
+</rel>
+</span>
+<span id="s1676_n16" from="4593" to="4604">
+<rel label="amod">
+<span from="4605" to="4628"/>
+</rel>
+</span>
+<span id="s1676_n17" from="4605" to="4628">
+<rel label="nmod">
+<span from="4570" to="4585"/>
+</rel>
+</span>
+<span id="s1676_n18" from="4629" to="4632">
+<rel label="det">
+<span from="4633" to="4639"/>
+</rel>
+</span>
+<span id="s1676_n19" from="4633" to="4639">
+<rel label="nmod">
+<span from="4605" to="4628"/>
+</rel>
+</span>
+<span id="s1676_n20" from="4640" to="4642">
+<rel label="compound:prt">
+<span from="4536" to="4544"/>
+</rel>
+</span>
+<span id="s1676_n21" from="4642" to="4643">
+<rel label="punct">
+<span from="4662" to="4668"/>
+</rel>
+</span>
+<span id="s1676_n22" from="4644" to="4650">
+<rel label="det">
+<span from="4651" to="4660"/>
+</rel>
+</span>
+<span id="s1676_n23" from="4651" to="4660">
+<rel label="nsubj">
+<span from="4662" to="4668"/>
+</rel>
+</span>
+<span id="s1676_n24" from="4662" to="4668">
+<rel label="conj">
+<span from="4536" to="4544"/>
+</rel>
+</span>
+<span id="s1676_n25" from="4669" to="4673">
+<rel label="advmod">
+<span from="4674" to="4693"/>
+</rel>
+</span>
+<span id="s1676_n26" from="4674" to="4693">
+<rel label="obj">
+<span from="4662" to="4668"/>
+</rel>
+</span>
+<span id="s1676_n27" from="4693" to="4694">
+<rel label="punct">
+<span from="4536" to="4544"/>
+</rel>
+</span>
+<span id="s1677_n1" from="4695" to="4697">
+<rel label="advmod">
+<span from="4698" to="4702"/>
+</rel>
+</span>
+<span id="s1677_n2" from="4698" to="4702">
+<rel label="advmod">
+<span from="4710" to="4719"/>
+</rel>
+</span>
+<span id="s1677_n3" from="4702" to="4703">
+<rel label="punct">
+<span from="4698" to="4702"/>
+</rel>
+</span>
+<span id="s1677_n4" from="4704" to="4709">
+<rel label="advmod">
+<span from="4710" to="4719"/>
+</rel>
+</span>
+<span id="s1677_n5" from="4710" to="4719">
+<rel label="root">
+<span from="4695" to="4736"/>
+</rel>
+</span>
+<span id="s1677_n6" from="4720" to="4723">
+<rel label="cop">
+<span from="4710" to="4719"/>
+</rel>
+</span>
+<span id="s1677_n7" from="4724" to="4727">
+<rel label="det">
+<span from="4728" to="4735"/>
+</rel>
+</span>
+<span id="s1677_n8" from="4728" to="4735">
+<rel label="nsubj">
+<span from="4710" to="4719"/>
+</rel>
+</span>
+<span id="s1677_n9" from="4735" to="4736">
+<rel label="punct">
+<span from="4710" to="4719"/>
+</rel>
+</span>
+<span id="s1678_n1" from="4737" to="4749">
+<rel label="advmod">
+<span from="4814" to="4822"/>
+</rel>
+</span>
+<span id="s1678_n2" from="4750" to="4754">
+<rel label="aux:pass">
+<span from="4814" to="4822"/>
+</rel>
+</span>
+<span id="s1678_n3" from="4755" to="4758">
+<rel label="det">
+<span from="4759" to="4763"/>
+</rel>
+</span>
+<span id="s1678_n4" from="4759" to="4763">
+<rel label="nsubj:pass">
+<span from="4814" to="4822"/>
+</rel>
+</span>
+<span id="s1678_n5" from="4764" to="4767">
+<rel label="det">
+<span from="4768" to="4779"/>
+</rel>
+</span>
+<span id="s1678_n6" from="4768" to="4779">
+<rel label="nmod">
+<span from="4759" to="4763"/>
+</rel>
+</span>
+<span id="s1678_n7" from="4780" to="4785">
+<rel label="case">
+<span from="4805" to="4813"/>
+</rel>
+</span>
+<span id="s1678_n8" from="4786" to="4804">
+<rel label="amod">
+<span from="4805" to="4813"/>
+</rel>
+</span>
+<span id="s1678_n9" from="4805" to="4813">
+<rel label="obl">
+<span from="4814" to="4822"/>
+</rel>
+</span>
+<span id="s1678_n10" from="4814" to="4822">
+<rel label="root">
+<span from="4737" to="4823"/>
+</rel>
+</span>
+<span id="s1678_n11" from="4822" to="4823">
+<rel label="punct">
+<span from="4814" to="4822"/>
+</rel>
+</span>
+<span id="s1679_n1" from="4824" to="4835">
+<rel label="nsubj">
+<span from="4849" to="4859"/>
+</rel>
+</span>
+<span id="s1679_n2" from="4836" to="4839">
+<rel label="case">
+<span from="4840" to="4848"/>
+</rel>
+</span>
+<span id="s1679_n3" from="4840" to="4848">
+<rel label="nmod">
+<span from="4824" to="4835"/>
+</rel>
+</span>
+<span id="s1679_n4" from="4849" to="4859">
+<rel label="root">
+<span from="4824" to="4972"/>
+</rel>
+</span>
+<span id="s1679_n5" from="4860" to="4870">
+<rel label="advmod">
+<span from="4849" to="4859"/>
+</rel>
+</span>
+<span id="s1679_n6" from="4871" to="4874">
+<rel label="det">
+<span from="4875" to="4884"/>
+</rel>
+</span>
+<span id="s1679_n7" from="4875" to="4884">
+<rel label="obj">
+<span from="4849" to="4859"/>
+</rel>
+</span>
+<span id="s1679_n8" from="4884" to="4885">
+<rel label="punct">
+<span from="4886" to="4896"/>
+</rel>
+</span>
+<span id="s1679_n9" from="4886" to="4896">
+<rel label="conj">
+<span from="4849" to="4859"/>
+</rel>
+</span>
+<span id="s1679_n10" from="4897" to="4901">
+<rel label="advmod">
+<span from="4886" to="4896"/>
+</rel>
+</span>
+<span id="s1679_n11" from="4902" to="4905">
+<rel label="case">
+<span from="4916" to="4928"/>
+</rel>
+</span>
+<span id="s1679_n12" from="4906" to="4915">
+<rel label="amod">
+<span from="4916" to="4928"/>
+</rel>
+</span>
+<span id="s1679_n13" from="4916" to="4928">
+<rel label="obl">
+<span from="4886" to="4896"/>
+</rel>
+</span>
+<span id="s1679_n14" from="4928" to="4929">
+<rel label="punct">
+<span from="4961" to="4971"/>
+</rel>
+</span>
+<span id="s1679_n15" from="4930" to="4934">
+<rel label="mark">
+<span from="4961" to="4971"/>
+</rel>
+</span>
+<span id="s1679_n16" from="4935" to="4939">
+<rel label="expl:pv">
+<span from="4961" to="4971"/>
+</rel>
+</span>
+<span id="s1679_n17" from="4940" to="4943">
+<rel label="det">
+<span from="4944" to="4951"/>
+</rel>
+</span>
+<span id="s1679_n18" from="4944" to="4951">
+<rel label="nsubj">
+<span from="4961" to="4971"/>
+</rel>
+</span>
+<span id="s1679_n19" from="4952" to="4960">
+<rel label="advmod">
+<span from="4961" to="4971"/>
+</rel>
+</span>
+<span id="s1679_n20" from="4961" to="4971">
+<rel label="ccomp">
+<span from="4886" to="4896"/>
+</rel>
+</span>
+<span id="s1679_n21" from="4971" to="4972">
+<rel label="punct">
+<span from="4849" to="4859"/>
+</rel>
+</span>
+<span id="s1680_n1" from="4973" to="4980">
+<rel label="nsubj">
+<span from="4991" to="5002"/>
+</rel>
+</span>
+<span id="s1680_n2" from="4981" to="4982">
+<rel label="appos">
+<span from="4973" to="4980"/>
+</rel>
+</span>
+<span id="s1680_n3" from="4983" to="4986">
+<rel label="cop">
+<span from="4991" to="5002"/>
+</rel>
+</span>
+<span id="s1680_n4" from="4987" to="4990">
+<rel label="det">
+<span from="4991" to="5002"/>
+</rel>
+</span>
+<span id="s1680_n5" from="4991" to="5002">
+<rel label="root">
+<span from="4973" to="5165"/>
+</rel>
+</span>
+<span id="s1680_n6" from="5003" to="5004">
+<rel label="punct">
+<span from="5008" to="5015"/>
+</rel>
+</span>
+<span id="s1680_n7" from="5004" to="5007">
+<rel label="case">
+<span from="5008" to="5015"/>
+</rel>
+</span>
+<span id="s1680_n8" from="5008" to="5015">
+<rel label="obl">
+<span from="4991" to="5002"/>
+</rel>
+</span>
+<span id="s1680_n9" from="5016" to="5017">
+<rel label="appos">
+<span from="5008" to="5015"/>
+</rel>
+</span>
+<span id="s1680_n10" from="5017" to="5018">
+<rel label="punct">
+<span from="5008" to="5015"/>
+</rel>
+</span>
+<span id="s1680_n11" from="5018" to="5019">
+<rel label="punct">
+<span from="5023" to="5030"/>
+</rel>
+</span>
+<span id="s1680_n12" from="5020" to="5022">
+<rel label="nsubj">
+<span from="5023" to="5030"/>
+</rel>
+</span>
+<span id="s1680_n13" from="5023" to="5030">
+<rel label="conj">
+<span from="4991" to="5002"/>
+</rel>
+</span>
+<span id="s1680_n14" from="5031" to="5034">
+<rel label="det">
+<span from="5035" to="5071"/>
+</rel>
+</span>
+<span id="s1680_n15" from="5035" to="5071">
+<rel label="obj">
+<span from="5023" to="5030"/>
+</rel>
+</span>
+<span id="s1680_n16" from="5072" to="5075">
+<rel label="det">
+<span from="5076" to="5089"/>
+</rel>
+</span>
+<span id="s1680_n17" from="5076" to="5089">
+<rel label="nmod">
+<span from="5035" to="5071"/>
+</rel>
+</span>
+<span id="s1680_n18" from="5090" to="5093">
+<rel label="det">
+<span from="5094" to="5104"/>
+</rel>
+</span>
+<span id="s1680_n19" from="5094" to="5104">
+<rel label="nmod">
+<span from="5076" to="5089"/>
+</rel>
+</span>
+<span id="s1680_n20" from="5105" to="5108">
+<rel label="case">
+<span from="5113" to="5123"/>
+</rel>
+</span>
+<span id="s1680_n21" from="5109" to="5112">
+<rel label="det">
+<span from="5113" to="5123"/>
+</rel>
+</span>
+<span id="s1680_n22" from="5113" to="5123">
+<rel label="obl">
+<span from="5023" to="5030"/>
+</rel>
+</span>
+<span id="s1680_n23" from="5124" to="5129">
+<rel label="case">
+<span from="5136" to="5144"/>
+</rel>
+</span>
+<span id="s1680_n24" from="5130" to="5135">
+<rel label="amod">
+<span from="5136" to="5144"/>
+</rel>
+</span>
+<span id="s1680_n25" from="5136" to="5144">
+<rel label="nmod">
+<span from="5113" to="5123"/>
+</rel>
+</span>
+<span id="s1680_n26" from="5145" to="5146">
+<rel label="punct">
+<span from="5146" to="5163"/>
+</rel>
+</span>
+<span id="s1680_n27" from="5146" to="5163">
+<rel label="appos">
+<span from="5113" to="5123"/>
+</rel>
+</span>
+<span id="s1680_n28" from="5163" to="5164">
+<rel label="punct">
+<span from="5146" to="5163"/>
+</rel>
+</span>
+<span id="s1680_n29" from="5164" to="5165">
+<rel label="punct">
+<span from="4991" to="5002"/>
+</rel>
+</span>
+<span id="s1681_n1" from="5167" to="5182">
+<rel label="nsubj">
+<span from="5337" to="5343"/>
+</rel>
+</span>
+<span id="s1681_n2" from="5184" to="5188">
+<rel label="appos">
+<span from="5167" to="5182"/>
+</rel>
+</span>
+<span id="s1681_n3" from="5188" to="5189">
+<rel label="appos">
+<span from="5189" to="5194"/>
+</rel>
+</span>
+<span id="s1681_n4" from="5189" to="5194">
+<rel label="appos">
+<span from="5167" to="5182"/>
+</rel>
+</span>
+<span id="s1681_n5" from="5194" to="5195">
+<rel label="appos">
+<span from="5189" to="5194"/>
+</rel>
+</span>
+<span id="s1681_n6" from="5195" to="5201">
+<rel label="appos">
+<span from="5189" to="5194"/>
+</rel>
+</span>
+<span id="s1681_n7" from="5202" to="5205">
+<rel label="det">
+<span from="5206" to="5217"/>
+</rel>
+</span>
+<span id="s1681_n8" from="5206" to="5217">
+<rel label="nmod">
+<span from="5195" to="5201"/>
+</rel>
+</span>
+<span id="s1681_n9" from="5218" to="5222">
+<rel label="case">
+<span from="5223" to="5247"/>
+</rel>
+</span>
+<span id="s1681_n10" from="5223" to="5247">
+<rel label="nmod">
+<span from="5206" to="5217"/>
+</rel>
+</span>
+<span id="s1681_n11" from="5248" to="5260">
+<rel label="amod">
+<span from="5261" to="5266"/>
+</rel>
+</span>
+<span id="s1681_n12" from="5261" to="5266">
+<rel label="appos">
+<span from="5167" to="5182"/>
+</rel>
+</span>
+<span id="s1681_n13" from="5267" to="5270">
+<rel label="case">
+<span from="5271" to="5287"/>
+</rel>
+</span>
+<span id="s1681_n14" from="5271" to="5287">
+<rel label="nmod">
+<span from="5261" to="5266"/>
+</rel>
+</span>
+<span id="s1681_n15" from="5287" to="5288">
+<rel label="punct">
+<span from="5319" to="5330"/>
+</rel>
+</span>
+<span id="s1681_n16" from="5289" to="5292">
+<rel label="nsubj:pass">
+<span from="5319" to="5330"/>
+</rel>
+</span>
+<span id="s1681_n17" from="5293" to="5295">
+<rel label="case">
+<span from="5300" to="5318"/>
+</rel>
+</span>
+<span id="s1681_n18" from="5296" to="5299">
+<rel label="det">
+<span from="5300" to="5318"/>
+</rel>
+</span>
+<span id="s1681_n19" from="5300" to="5318">
+<rel label="obl">
+<span from="5319" to="5330"/>
+</rel>
+</span>
+<span id="s1681_n20" from="5319" to="5330">
+<rel label="acl">
+<span from="5271" to="5287"/>
+</rel>
+</span>
+<span id="s1681_n21" from="5331" to="5335">
+<rel label="aux:pass">
+<span from="5319" to="5330"/>
+</rel>
+</span>
+<span id="s1681_n22" from="5335" to="5336">
+<rel label="punct">
+<span from="5319" to="5330"/>
+</rel>
+</span>
+<span id="s1681_n23" from="5337" to="5343">
+<rel label="root">
+<span from="5167" to="5428"/>
+</rel>
+</span>
+<span id="s1681_n24" from="5344" to="5348">
+<rel label="case">
+<span from="5349" to="5376"/>
+</rel>
+</span>
+<span id="s1681_n25" from="5349" to="5376">
+<rel label="obl">
+<span from="5337" to="5343"/>
+</rel>
+</span>
+<span id="s1681_n26" from="5377" to="5396">
+<rel label="amod">
+<span from="5397" to="5410"/>
+</rel>
+</span>
+<span id="s1681_n27" from="5397" to="5410">
+<rel label="obj">
+<span from="5337" to="5343"/>
+</rel>
+</span>
+<span id="s1681_n28" from="5411" to="5414">
+<rel label="det">
+<span from="5415" to="5427"/>
+</rel>
+</span>
+<span id="s1681_n29" from="5415" to="5427">
+<rel label="nmod">
+<span from="5397" to="5410"/>
+</rel>
+</span>
+<span id="s1681_n30" from="5427" to="5428">
+<rel label="punct">
+<span from="5337" to="5343"/>
+</rel>
+</span>
+<span id="s1682_n1" from="5429" to="5433">
+<rel label="advmod">
+<span from="5445" to="5451"/>
+</rel>
+</span>
+<span id="s1682_n2" from="5434" to="5437">
+<rel label="det">
+<span from="5445" to="5451"/>
+</rel>
+</span>
+<span id="s1682_n3" from="5438" to="5444">
+<rel label="amod">
+<span from="5445" to="5451"/>
+</rel>
+</span>
+<span id="s1682_n4" from="5445" to="5451">
+<rel label="nsubj">
+<span from="5526" to="5539"/>
+</rel>
+</span>
+<span id="s1682_n5" from="5452" to="5457">
+<rel label="det">
+<span from="5458" to="5468"/>
+</rel>
+</span>
+<span id="s1682_n6" from="5458" to="5468">
+<rel label="nmod">
+<span from="5445" to="5451"/>
+</rel>
+</span>
+<span id="s1682_n7" from="5469" to="5475">
+<rel label="aux">
+<span from="5526" to="5539"/>
+</rel>
+</span>
+<span id="s1682_n8" from="5476" to="5480">
+<rel label="expl:pv">
+<span from="5526" to="5539"/>
+</rel>
+</span>
+<span id="s1682_n9" from="5481" to="5486">
+<rel label="case">
+<span from="5487" to="5499"/>
+</rel>
+</span>
+<span id="s1682_n10" from="5487" to="5499">
+<rel label="obl">
+<span from="5526" to="5539"/>
+</rel>
+</span>
+<span id="s1682_n11" from="5500" to="5503">
+<rel label="det">
+<span from="5504" to="5519"/>
+</rel>
+</span>
+<span id="s1682_n12" from="5504" to="5519">
+<rel label="nmod">
+<span from="5487" to="5499"/>
+</rel>
+</span>
+<span id="s1682_n13" from="5520" to="5525">
+<rel label="advmod">
+<span from="5526" to="5539"/>
+</rel>
+</span>
+<span id="s1682_n14" from="5526" to="5539">
+<rel label="root">
+<span from="5429" to="5540"/>
+</rel>
+</span>
+<span id="s1682_n15" from="5539" to="5540">
+<rel label="punct">
+<span from="5526" to="5539"/>
+</rel>
+</span>
+<span id="s1683_n1" from="5541" to="5548">
+<rel label="mark">
+<span from="5657" to="5666"/>
+</rel>
+</span>
+<span id="s1683_n2" from="5549" to="5563">
+<rel label="advmod">
+<span from="5564" to="5574"/>
+</rel>
+</span>
+<span id="s1683_n3" from="5564" to="5574">
+<rel label="nsubj:pass">
+<span from="5657" to="5666"/>
+</rel>
+</span>
+<span id="s1683_n4" from="5575" to="5578">
+<rel label="case">
+<span from="5579" to="5602"/>
+</rel>
+</span>
+<span id="s1683_n5" from="5579" to="5602">
+<rel label="nmod">
+<span from="5564" to="5574"/>
+</rel>
+</span>
+<span id="s1683_n6" from="5603" to="5606">
+<rel label="cc">
+<span from="5607" to="5619"/>
+</rel>
+</span>
+<span id="s1683_n7" from="5607" to="5619">
+<rel label="conj">
+<span from="5579" to="5602"/>
+</rel>
+</span>
+<span id="s1683_n8" from="5620" to="5623">
+<rel label="case">
+<span from="5624" to="5641"/>
+</rel>
+</span>
+<span id="s1683_n9" from="5624" to="5641">
+<rel label="nmod">
+<span from="5607" to="5619"/>
+</rel>
+</span>
+<span id="s1683_n10" from="5642" to="5646">
+<rel label="case">
+<span from="5647" to="5652"/>
+</rel>
+</span>
+<span id="s1683_n11" from="5647" to="5652">
+<rel label="obl">
+<span from="5657" to="5666"/>
+</rel>
+</span>
+<span id="s1683_n12" from="5653" to="5656">
+<rel label="case">
+<span from="5647" to="5652"/>
+</rel>
+</span>
+<span id="s1683_n13" from="5657" to="5666">
+<rel label="advcl">
+<span from="5673" to="5681"/>
+</rel>
+</span>
+<span id="s1683_n14" from="5667" to="5671">
+<rel label="aux:pass">
+<span from="5657" to="5666"/>
+</rel>
+</span>
+<span id="s1683_n15" from="5671" to="5672">
+<rel label="punct">
+<span from="5657" to="5666"/>
+</rel>
+</span>
+<span id="s1683_n16" from="5673" to="5681">
+<rel label="root">
+<span from="5541" to="5753"/>
+</rel>
+</span>
+<span id="s1683_n17" from="5682" to="5692">
+<rel label="nsubj">
+<span from="5673" to="5681"/>
+</rel>
+</span>
+<span id="s1683_n18" from="5693" to="5703">
+<rel label="amod">
+<span from="5704" to="5710"/>
+</rel>
+</span>
+<span id="s1683_n19" from="5704" to="5710">
+<rel label="obj">
+<span from="5673" to="5681"/>
+</rel>
+</span>
+<span id="s1683_n20" from="5711" to="5715">
+<rel label="case">
+<span from="5716" to="5721"/>
+</rel>
+</span>
+<span id="s1683_n21" from="5716" to="5721">
+<rel label="obl">
+<span from="5673" to="5681"/>
+</rel>
+</span>
+<span id="s1683_n22" from="5722" to="5723">
+<rel label="punct">
+<span from="5727" to="5733"/>
+</rel>
+</span>
+<span id="s1683_n23" from="5723" to="5726">
+<rel label="nsubj">
+<span from="5727" to="5733"/>
+</rel>
+</span>
+<span id="s1683_n24" from="5727" to="5733">
+<rel label="parataxis">
+<span from="5673" to="5681"/>
+</rel>
+</span>
+<span id="s1683_n25" from="5734" to="5738">
+<rel label="advmod">
+<span from="5727" to="5733"/>
+</rel>
+</span>
+<span id="s1683_n26" from="5739" to="5751">
+<rel label="obj">
+<span from="5727" to="5733"/>
+</rel>
+</span>
+<span id="s1683_n27" from="5751" to="5752">
+<rel label="punct">
+<span from="5727" to="5733"/>
+</rel>
+</span>
+<span id="s1683_n28" from="5752" to="5753">
+<rel label="punct">
+<span from="5673" to="5681"/>
+</rel>
+</span>
+<span id="s1684_n1" from="5754" to="5759">
+<rel label="amod">
+<span from="5760" to="5768"/>
+</rel>
+</span>
+<span id="s1684_n2" from="5760" to="5768">
+<rel label="nsubj:pass">
+<span from="5794" to="5803"/>
+</rel>
+</span>
+<span id="s1684_n3" from="5769" to="5773">
+<rel label="aux:pass">
+<span from="5794" to="5803"/>
+</rel>
+</span>
+<span id="s1684_n4" from="5774" to="5776">
+<rel label="case">
+<span from="5777" to="5793"/>
+</rel>
+</span>
+<span id="s1684_n5" from="5777" to="5793">
+<rel label="obl">
+<span from="5794" to="5803"/>
+</rel>
+</span>
+<span id="s1684_n6" from="5794" to="5803">
+<rel label="root">
+<span from="5754" to="5882"/>
+</rel>
+</span>
+<span id="s1684_n7" from="5803" to="5804">
+<rel label="punct">
+<span from="5808" to="5810"/>
+</rel>
+</span>
+<span id="s1684_n8" from="5805" to="5807">
+<rel label="nsubj">
+<span from="5808" to="5810"/>
+</rel>
+</span>
+<span id="s1684_n9" from="5808" to="5810">
+<rel label="conj">
+<span from="5794" to="5803"/>
+</rel>
+</span>
+<span id="s1684_n10" from="5811" to="5813">
+<rel label="case">
+<span from="5814" to="5828"/>
+</rel>
+</span>
+<span id="s1684_n11" from="5814" to="5828">
+<rel label="obj">
+<span from="5808" to="5810"/>
+</rel>
+</span>
+<span id="s1684_n12" from="5829" to="5832">
+<rel label="cc">
+<span from="5837" to="5854"/>
+</rel>
+</span>
+<span id="s1684_n13" from="5833" to="5836">
+<rel label="det">
+<span from="5837" to="5854"/>
+</rel>
+</span>
+<span id="s1684_n14" from="5837" to="5854">
+<rel label="conj">
+<span from="5814" to="5828"/>
+</rel>
+</span>
+<span id="s1684_n15" from="5855" to="5859">
+<rel label="case">
+<span from="5860" to="5881"/>
+</rel>
+</span>
+<span id="s1684_n16" from="5860" to="5881">
+<rel label="nmod">
+<span from="5837" to="5854"/>
+</rel>
+</span>
+<span id="s1684_n17" from="5881" to="5882">
+<rel label="punct">
+<span from="5794" to="5803"/>
+</rel>
+</span>
+<span id="s1685_n1" from="5883" to="5886">
+<rel label="advmod">
+<span from="5887" to="5897"/>
+</rel>
+</span>
+<span id="s1685_n2" from="5887" to="5897">
+<rel label="root">
+<span from="5883" to="6105"/>
+</rel>
+</span>
+<span id="s1685_n3" from="5898" to="5901">
+<rel label="aux:pass">
+<span from="5887" to="5897"/>
+</rel>
+</span>
+<span id="s1685_n4" from="5902" to="5906">
+<rel label="det">
+<span from="5907" to="5915"/>
+</rel>
+</span>
+<span id="s1685_n5" from="5907" to="5915">
+<rel label="nsubj:pass">
+<span from="5887" to="5897"/>
+</rel>
+</span>
+<span id="s1685_n6" from="5916" to="5919">
+<rel label="case">
+<span from="5920" to="5936"/>
+</rel>
+</span>
+<span id="s1685_n7" from="5920" to="5936">
+<rel label="nmod">
+<span from="5907" to="5915"/>
+</rel>
+</span>
+<span id="s1685_n8" from="5936" to="5937">
+<rel label="punct">
+<span from="5991" to="6007"/>
+</rel>
+</span>
+<span id="s1685_n9" from="5938" to="5957">
+<rel label="amod">
+<span from="5958" to="5967"/>
+</rel>
+</span>
+<span id="s1685_n10" from="5958" to="5967">
+<rel label="obj">
+<span from="5991" to="6007"/>
+</rel>
+</span>
+<span id="s1685_n11" from="5968" to="5971">
+<rel label="cc">
+<span from="5978" to="5990"/>
+</rel>
+</span>
+<span id="s1685_n12" from="5972" to="5977">
+<rel label="det">
+<span from="5978" to="5990"/>
+</rel>
+</span>
+<span id="s1685_n13" from="5978" to="5990">
+<rel label="conj">
+<span from="5958" to="5967"/>
+</rel>
+</span>
+<span id="s1685_n14" from="5991" to="6007">
+<rel label="acl">
+<span from="5920" to="5936"/>
+</rel>
+</span>
+<span id="s1685_n15" from="6008" to="6015">
+<rel label="obj">
+<span from="6045" to="6058"/>
+</rel>
+</span>
+<span id="s1685_n16" from="6016" to="6019">
+<rel label="case">
+<span from="6020" to="6030"/>
+</rel>
+</span>
+<span id="s1685_n17" from="6020" to="6030">
+<rel label="obl">
+<span from="6045" to="6058"/>
+</rel>
+</span>
+<span id="s1685_n18" from="6031" to="6033">
+<rel label="case">
+<span from="6034" to="6044"/>
+</rel>
+</span>
+<span id="s1685_n19" from="6034" to="6044">
+<rel label="obl">
+<span from="6045" to="6058"/>
+</rel>
+</span>
+<span id="s1685_n20" from="6045" to="6058">
+<rel label="conj">
+<span from="5991" to="6007"/>
+</rel>
+</span>
+<span id="s1685_n21" from="6059" to="6065">
+<rel label="aux">
+<span from="6045" to="6058"/>
+</rel>
+</span>
+<span id="s1685_n22" from="6066" to="6067">
+<rel label="punct">
+<span from="6080" to="6085"/>
+</rel>
+</span>
+<span id="s1685_n23" from="6067" to="6070">
+<rel label="case">
+<span from="6071" to="6079"/>
+</rel>
+</span>
+<span id="s1685_n24" from="6071" to="6079">
+<rel label="nmod">
+<span from="6080" to="6085"/>
+</rel>
+</span>
+<span id="s1685_n25" from="6080" to="6085">
+<rel label="appos">
+<span from="5920" to="5936"/>
+</rel>
+</span>
+<span id="s1685_n26" from="6086" to="6089">
+<rel label="cc">
+<span from="6090" to="6103"/>
+</rel>
+</span>
+<span id="s1685_n27" from="6090" to="6103">
+<rel label="conj">
+<span from="6080" to="6085"/>
+</rel>
+</span>
+<span id="s1685_n28" from="6103" to="6104">
+<rel label="punct">
+<span from="6080" to="6085"/>
+</rel>
+</span>
+<span id="s1685_n29" from="6104" to="6105">
+<rel label="punct">
+<span from="5887" to="5897"/>
+</rel>
+</span>
+<span id="s1686_n1" from="6106" to="6110">
+<rel label="obj">
+<span from="6111" to="6118"/>
+</rel>
+</span>
+<span id="s1686_n2" from="6111" to="6118">
+<rel label="root">
+<span from="6106" to="6235"/>
+</rel>
+</span>
+<span id="s1686_n3" from="6119" to="6123">
+<rel label="advmod">
+<span from="6124" to="6132"/>
+</rel>
+</span>
+<span id="s1686_n4" from="6124" to="6132">
+<rel label="nsubj">
+<span from="6111" to="6118"/>
+</rel>
+</span>
+<span id="s1686_n5" from="6133" to="6134">
+<rel label="punct">
+<span from="6140" to="6153"/>
+</rel>
+</span>
+<span id="s1686_n6" from="6134" to="6139">
+<rel label="advmod">
+<span from="6140" to="6153"/>
+</rel>
+</span>
+<span id="s1686_n7" from="6140" to="6153">
+<rel label="appos">
+<span from="6124" to="6132"/>
+</rel>
+</span>
+<span id="s1686_n8" from="6153" to="6154">
+<rel label="punct">
+<span from="6140" to="6153"/>
+</rel>
+</span>
+<span id="s1686_n9" from="6154" to="6155">
+<rel label="punct">
+<span from="6225" to="6234"/>
+</rel>
+</span>
+<span id="s1686_n10" from="6156" to="6159">
+<rel label="nsubj">
+<span from="6225" to="6234"/>
+</rel>
+</span>
+<span id="s1686_n11" from="6160" to="6164">
+<rel label="case">
+<span from="6169" to="6194"/>
+</rel>
+</span>
+<span id="s1686_n12" from="6165" to="6168">
+<rel label="det">
+<span from="6169" to="6194"/>
+</rel>
+</span>
+<span id="s1686_n13" from="6169" to="6194">
+<rel label="obl">
+<span from="6225" to="6234"/>
+</rel>
+</span>
+<span id="s1686_n14" from="6195" to="6224">
+<rel label="obj">
+<span from="6225" to="6234"/>
+</rel>
+</span>
+<span id="s1686_n15" from="6225" to="6234">
+<rel label="acl">
+<span from="6140" to="6153"/>
+</rel>
+</span>
+<span id="s1686_n16" from="6234" to="6235">
+<rel label="punct">
+<span from="6111" to="6118"/>
+</rel>
+</span>
+<span id="s1687_n1" from="6236" to="6240">
+<rel label="case">
+<span from="6245" to="6266"/>
+</rel>
+</span>
+<span id="s1687_n2" from="6241" to="6244">
+<rel label="det">
+<span from="6245" to="6266"/>
+</rel>
+</span>
+<span id="s1687_n3" from="6245" to="6266">
+<rel label="obl">
+<span from="6318" to="6325"/>
+</rel>
+</span>
+<span id="s1687_n4" from="6267" to="6271">
+<rel label="aux:pass">
+<span from="6318" to="6325"/>
+</rel>
+</span>
+<span id="s1687_n5" from="6272" to="6275">
+<rel label="det">
+<span from="6276" to="6296"/>
+</rel>
+</span>
+<span id="s1687_n6" from="6276" to="6296">
+<rel label="nsubj:pass">
+<span from="6318" to="6325"/>
+</rel>
+</span>
+<span id="s1687_n7" from="6297" to="6302">
+<rel label="advmod">
+<span from="6318" to="6325"/>
+</rel>
+</span>
+<span id="s1687_n8" from="6303" to="6305">
+<rel label="case">
+<span from="6310" to="6317"/>
+</rel>
+</span>
+<span id="s1687_n9" from="6306" to="6309">
+<rel label="det">
+<span from="6310" to="6317"/>
+</rel>
+</span>
+<span id="s1687_n10" from="6310" to="6317">
+<rel label="obl">
+<span from="6318" to="6325"/>
+</rel>
+</span>
+<span id="s1687_n11" from="6318" to="6325">
+<rel label="root">
+<span from="6236" to="6399"/>
+</rel>
+</span>
+<span id="s1687_n12" from="6325" to="6326">
+<rel label="punct">
+<span from="6393" to="6398"/>
+</rel>
+</span>
+<span id="s1687_n13" from="6327" to="6334">
+<rel label="cc">
+<span from="6393" to="6398"/>
+</rel>
+</span>
+<span id="s1687_n14" from="6335" to="6337">
+<rel label="case">
+<span from="6338" to="6370"/>
+</rel>
+</span>
+<span id="s1687_n15" from="6338" to="6370">
+<rel label="obj">
+<span from="6393" to="6398"/>
+</rel>
+</span>
+<span id="s1687_n16" from="6371" to="6380">
+<rel label="case">
+<span from="6385" to="6392"/>
+</rel>
+</span>
+<span id="s1687_n17" from="6381" to="6384">
+<rel label="det">
+<span from="6385" to="6392"/>
+</rel>
+</span>
+<span id="s1687_n18" from="6385" to="6392">
+<rel label="nmod">
+<span from="6338" to="6370"/>
+</rel>
+</span>
+<span id="s1687_n19" from="6393" to="6398">
+<rel label="conj">
+<span from="6318" to="6325"/>
+</rel>
+</span>
+<span id="s1687_n20" from="6398" to="6399">
+<rel label="punct">
+<span from="6318" to="6325"/>
+</rel>
+</span>
+<span id="s1688_n1" from="6400" to="6405">
+<rel label="det">
+<span from="6406" to="6413"/>
+</rel>
+</span>
+<span id="s1688_n2" from="6406" to="6413">
+<rel label="nsubj">
+<span from="6414" to="6420"/>
+</rel>
+</span>
+<span id="s1688_n3" from="6414" to="6420">
+<rel label="root">
+<span from="6400" to="6556"/>
+</rel>
+</span>
+<span id="s1688_n4" from="6421" to="6424">
+<rel label="det">
+<span from="6425" to="6438"/>
+</rel>
+</span>
+<span id="s1688_n5" from="6425" to="6438">
+<rel label="obj">
+<span from="6414" to="6420"/>
+</rel>
+</span>
+<span id="s1688_n6" from="6439" to="6442">
+<rel label="case">
+<span from="6469" to="6481"/>
+</rel>
+</span>
+<span id="s1688_n7" from="6443" to="6446">
+<rel label="det">
+<span from="6469" to="6481"/>
+</rel>
+</span>
+<span id="s1688_n8" from="6447" to="6468">
+<rel label="amod">
+<span from="6469" to="6481"/>
+</rel>
+</span>
+<span id="s1688_n9" from="6469" to="6481">
+<rel label="nmod">
+<span from="6425" to="6438"/>
+</rel>
+</span>
+<span id="s1688_n10" from="6482" to="6485">
+<rel label="case">
+<span from="6486" to="6495"/>
+</rel>
+</span>
+<span id="s1688_n11" from="6486" to="6495">
+<rel label="nmod">
+<span from="6469" to="6481"/>
+</rel>
+</span>
+<span id="s1688_n12" from="6496" to="6502">
+<rel label="cc">
+<span from="6549" to="6555"/>
+</rel>
+</span>
+<span id="s1688_n13" from="6503" to="6516">
+<rel label="advmod">
+<span from="6549" to="6555"/>
+</rel>
+</span>
+<span id="s1688_n14" from="6517" to="6520">
+<rel label="case">
+<span from="6549" to="6555"/>
+</rel>
+</span>
+<span id="s1688_n15" from="6521" to="6533">
+<rel label="advmod">
+<span from="6534" to="6548"/>
+</rel>
+</span>
+<span id="s1688_n16" from="6534" to="6548">
+<rel label="amod">
+<span from="6549" to="6555"/>
+</rel>
+</span>
+<span id="s1688_n17" from="6549" to="6555">
+<rel label="conj">
+<span from="6486" to="6495"/>
+</rel>
+</span>
+<span id="s1688_n18" from="6555" to="6556">
+<rel label="punct">
+<span from="6414" to="6420"/>
+</rel>
+</span>
+<span id="s1689_n1" from="6557" to="6561">
+<rel label="det">
+<span from="6562" to="6572"/>
+</rel>
+</span>
+<span id="s1689_n2" from="6562" to="6572">
+<rel label="nsubj">
+<span from="6645" to="6652"/>
+</rel>
+</span>
+<span id="s1689_n3" from="6573" to="6576">
+<rel label="det">
+<span from="6577" to="6592"/>
+</rel>
+</span>
+<span id="s1689_n4" from="6577" to="6592">
+<rel label="nmod">
+<span from="6562" to="6572"/>
+</rel>
+</span>
+<span id="s1689_n5" from="6593" to="6596">
+<rel label="cop">
+<span from="6645" to="6652"/>
+</rel>
+</span>
+<span id="s1689_n6" from="6597" to="6606">
+<rel label="amod">
+<span from="6607" to="6618"/>
+</rel>
+</span>
+<span id="s1689_n7" from="6607" to="6618">
+<rel label="obj">
+<span from="6645" to="6652"/>
+</rel>
+</span>
+<span id="s1689_n8" from="6619" to="6621">
+<rel label="case">
+<span from="6626" to="6644"/>
+</rel>
+</span>
+<span id="s1689_n9" from="6622" to="6625">
+<rel label="det">
+<span from="6626" to="6644"/>
+</rel>
+</span>
+<span id="s1689_n10" from="6626" to="6644">
+<rel label="nmod">
+<span from="6607" to="6618"/>
+</rel>
+</span>
+<span id="s1689_n11" from="6645" to="6652">
+<rel label="root">
+<span from="6557" to="6752"/>
+</rel>
+</span>
+<span id="s1689_n12" from="6652" to="6653">
+<rel label="punct">
+<span from="6645" to="6652"/>
+</rel>
+</span>
+<span id="s1689_n13" from="6656" to="6664">
+<rel label="nsubj:pass">
+<span from="6741" to="6751"/>
+</rel>
+</span>
+<span id="s1689_n14" from="6666" to="6669">
+<rel label="det">
+<span from="6670" to="6680"/>
+</rel>
+</span>
+<span id="s1689_n15" from="6670" to="6680">
+<rel label="nsubj:pass">
+<span from="6741" to="6751"/>
+</rel>
+</span>
+<span id="s1689_n16" from="6681" to="6683">
+<rel label="case">
+<span from="6684" to="6691"/>
+</rel>
+</span>
+<span id="s1689_n17" from="6684" to="6691">
+<rel label="nmod">
+<span from="6670" to="6680"/>
+</rel>
+</span>
+<span id="s1689_n18" from="6692" to="6697">
+<rel label="det">
+<span from="6698" to="6703"/>
+</rel>
+</span>
+<span id="s1689_n19" from="6698" to="6703">
+<rel label="nmod">
+<span from="6684" to="6691"/>
+</rel>
+</span>
+<span id="s1689_n20" from="6704" to="6708">
+<rel label="aux:pass">
+<span from="6741" to="6751"/>
+</rel>
+</span>
+<span id="s1689_n21" from="6709" to="6714">
+<rel label="case">
+<span from="6715" to="6729"/>
+</rel>
+</span>
+<span id="s1689_n22" from="6715" to="6729">
+<rel label="obl">
+<span from="6741" to="6751"/>
+</rel>
+</span>
+<span id="s1689_n23" from="6730" to="6734">
+<rel label="case">
+<span from="6735" to="6740"/>
+</rel>
+</span>
+<span id="s1689_n24" from="6735" to="6740">
+<rel label="obl">
+<span from="6741" to="6751"/>
+</rel>
+</span>
+<span id="s1689_n25" from="6741" to="6751">
+<rel label="parataxis">
+<span from="6645" to="6652"/>
+</rel>
+</span>
+<span id="s1689_n26" from="6751" to="6752">
+<rel label="punct">
+<span from="6645" to="6652"/>
+</rel>
+</span>
+<span id="s1690_n1" from="6753" to="6758">
+<rel label="obj">
+<span from="6759" to="6764"/>
+</rel>
+</span>
+<span id="s1690_n2" from="6759" to="6764">
+<rel label="root">
+<span from="6753" to="6834"/>
+</rel>
+</span>
+<span id="s1690_n3" from="6765" to="6768">
+<rel label="nsubj">
+<span from="6759" to="6764"/>
+</rel>
+</span>
+<span id="s1690_n4" from="6769" to="6780">
+<rel label="obj">
+<span from="6759" to="6764"/>
+</rel>
+</span>
+<span id="s1690_n5" from="6780" to="6781">
+<rel label="punct">
+<span from="6782" to="6795"/>
+</rel>
+</span>
+<span id="s1690_n6" from="6782" to="6795">
+<rel label="conj">
+<span from="6769" to="6780"/>
+</rel>
+</span>
+<span id="s1690_n7" from="6795" to="6796">
+<rel label="punct">
+<span from="6797" to="6808"/>
+</rel>
+</span>
+<span id="s1690_n8" from="6797" to="6808">
+<rel label="conj">
+<span from="6769" to="6780"/>
+</rel>
+</span>
+<span id="s1690_n9" from="6809" to="6813">
+<rel label="cc">
+<span from="6814" to="6822"/>
+</rel>
+</span>
+<span id="s1690_n10" from="6814" to="6822">
+<rel label="conj">
+<span from="6769" to="6780"/>
+</rel>
+</span>
+<span id="s1690_n11" from="6823" to="6833">
+<rel label="flat:name">
+<span from="6814" to="6822"/>
+</rel>
+</span>
+<span id="s1690_n12" from="6833" to="6834">
+<rel label="punct">
+<span from="6759" to="6764"/>
+</rel>
+</span>
+<span id="s1691_n1" from="6835" to="6847">
+<rel label="nsubj">
+<span from="6848" to="6856"/>
+</rel>
+</span>
+<span id="s1691_n2" from="6848" to="6856">
+<rel label="root">
+<span from="6835" to="7015"/>
+</rel>
+</span>
+<span id="s1691_n3" from="6857" to="6860">
+<rel label="det">
+<span from="6871" to="6879"/>
+</rel>
+</span>
+<span id="s1691_n4" from="6861" to="6870">
+<rel label="amod">
+<span from="6871" to="6879"/>
+</rel>
+</span>
+<span id="s1691_n5" from="6871" to="6879">
+<rel label="obj">
+<span from="6848" to="6856"/>
+</rel>
+</span>
+<span id="s1691_n6" from="6879" to="6880">
+<rel label="punct">
+<span from="6848" to="6856"/>
+</rel>
+</span>
+<span id="s1691_n7" from="6883" to="6892">
+<rel label="nsubj">
+<span from="6987" to="6992"/>
+</rel>
+</span>
+<span id="s1691_n8" from="6894" to="6898">
+<rel label="appos">
+<span from="6883" to="6892"/>
+</rel>
+</span>
+<span id="s1691_n9" from="6898" to="6899">
+<rel label="appos">
+<span from="6883" to="6892"/>
+</rel>
+</span>
+<span id="s1691_n10" from="6899" to="6907">
+<rel label="appos">
+<span from="6883" to="6892"/>
+</rel>
+</span>
+<span id="s1691_n11" from="6908" to="6921">
+<rel label="amod">
+<span from="6922" to="6932"/>
+</rel>
+</span>
+<span id="s1691_n12" from="6922" to="6932">
+<rel label="nmod">
+<span from="6899" to="6907"/>
+</rel>
+</span>
+<span id="s1691_n13" from="6933" to="6936">
+<rel label="case">
+<span from="6937" to="6955"/>
+</rel>
+</span>
+<span id="s1691_n14" from="6937" to="6955">
+<rel label="nmod">
+<span from="6899" to="6907"/>
+</rel>
+</span>
+<span id="s1691_n15" from="6956" to="6959">
+<rel label="det">
+<span from="6960" to="6969"/>
+</rel>
+</span>
+<span id="s1691_n16" from="6960" to="6969">
+<rel label="appos">
+<span from="6899" to="6907"/>
+</rel>
+</span>
+<span id="s1691_n17" from="6970" to="6975">
+<rel label="det">
+<span from="6976" to="6986"/>
+</rel>
+</span>
+<span id="s1691_n18" from="6976" to="6986">
+<rel label="nmod">
+<span from="6960" to="6969"/>
+</rel>
+</span>
+<span id="s1691_n19" from="6987" to="6992">
+<rel label="parataxis">
+<span from="6848" to="6856"/>
+</rel>
+</span>
+<span id="s1691_n20" from="6993" to="6996">
+<rel label="case">
+<span from="7001" to="7011"/>
+</rel>
+</span>
+<span id="s1691_n21" from="6997" to="7000">
+<rel label="det">
+<span from="7001" to="7011"/>
+</rel>
+</span>
+<span id="s1691_n22" from="7001" to="7011">
+<rel label="obl">
+<span from="6987" to="6992"/>
+</rel>
+</span>
+<span id="s1691_n23" from="7012" to="7014">
+<rel label="compound:prt">
+<span from="6987" to="6992"/>
+</rel>
+</span>
+<span id="s1691_n24" from="7014" to="7015">
+<rel label="punct">
+<span from="6848" to="6856"/>
+</rel>
+</span>
+<span id="s1692_n1" from="7016" to="7020">
+<rel label="det">
+<span from="7021" to="7028"/>
+</rel>
+</span>
+<span id="s1692_n2" from="7021" to="7028">
+<rel label="nsubj">
+<span from="7138" to="7143"/>
+</rel>
+</span>
+<span id="s1692_n3" from="7029" to="7032">
+<rel label="case">
+<span from="7033" to="7051"/>
+</rel>
+</span>
+<span id="s1692_n4" from="7033" to="7051">
+<rel label="nmod">
+<span from="7021" to="7028"/>
+</rel>
+</span>
+<span id="s1692_n5" from="7052" to="7055">
+<rel label="cc">
+<span from="7056" to="7079"/>
+</rel>
+</span>
+<span id="s1692_n6" from="7056" to="7079">
+<rel label="conj">
+<span from="7033" to="7051"/>
+</rel>
+</span>
+<span id="s1692_n7" from="7079" to="7080">
+<rel label="punct">
+<span from="7101" to="7110"/>
+</rel>
+</span>
+<span id="s1692_n8" from="7080" to="7085">
+<rel label="det">
+<span from="7086" to="7100"/>
+</rel>
+</span>
+<span id="s1692_n9" from="7086" to="7100">
+<rel label="nsubj:pass">
+<span from="7101" to="7110"/>
+</rel>
+</span>
+<span id="s1692_n10" from="7101" to="7110">
+<rel label="acl">
+<span from="7021" to="7028"/>
+</rel>
+</span>
+<span id="s1692_n11" from="7111" to="7115">
+<rel label="aux:pass">
+<span from="7101" to="7110"/>
+</rel>
+</span>
+<span id="s1692_n12" from="7115" to="7116">
+<rel label="punct">
+<span from="7101" to="7110"/>
+</rel>
+</span>
+<span id="s1692_n13" from="7117" to="7121">
+<rel label="cop">
+<span from="7138" to="7143"/>
+</rel>
+</span>
+<span id="s1692_n14" from="7122" to="7125">
+<rel label="case">
+<span from="7129" to="7130"/>
+</rel>
+</span>
+<span id="s1692_n15" from="7126" to="7128">
+<rel label="nummod">
+<span from="7129" to="7130"/>
+</rel>
+</span>
+<span id="s1692_n16" from="7129" to="7130">
+<rel label="obl">
+<span from="7138" to="7143"/>
+</rel>
+</span>
+<span id="s1692_n17" from="7130" to="7131">
+<rel label="appos">
+<span from="7129" to="7130"/>
+</rel>
+</span>
+<span id="s1692_n18" from="7132" to="7137">
+<rel label="advmod">
+<span from="7138" to="7143"/>
+</rel>
+</span>
+<span id="s1692_n19" from="7138" to="7143">
+<rel label="root">
+<span from="7016" to="7144"/>
+</rel>
+</span>
+<span id="s1692_n20" from="7143" to="7144">
+<rel label="punct">
+<span from="7138" to="7143"/>
+</rel>
+</span>
+<span id="s1693_n1" from="7145" to="7147">
+<rel label="case">
+<span from="7155" to="7162"/>
+</rel>
+</span>
+<span id="s1693_n2" from="7148" to="7154">
+<rel label="det">
+<span from="7155" to="7162"/>
+</rel>
+</span>
+<span id="s1693_n3" from="7155" to="7162">
+<rel label="obl">
+<span from="7224" to="7234"/>
+</rel>
+</span>
+<span id="s1693_n4" from="7163" to="7169">
+<rel label="aux">
+<span from="7224" to="7234"/>
+</rel>
+</span>
+<span id="s1693_n5" from="7170" to="7173">
+<rel label="nsubj">
+<span from="7224" to="7234"/>
+</rel>
+</span>
+<span id="s1693_n6" from="7174" to="7177">
+<rel label="det">
+<span from="7178" to="7185"/>
+</rel>
+</span>
+<span id="s1693_n7" from="7178" to="7185">
+<rel label="obj">
+<span from="7224" to="7234"/>
+</rel>
+</span>
+<span id="s1693_n8" from="7186" to="7189">
+<rel label="case">
+<span from="7208" to="7223"/>
+</rel>
+</span>
+<span id="s1693_n9" from="7190" to="7207">
+<rel label="amod">
+<span from="7208" to="7223"/>
+</rel>
+</span>
+<span id="s1693_n10" from="7208" to="7223">
+<rel label="obl">
+<span from="7224" to="7234"/>
+</rel>
+</span>
+<span id="s1693_n11" from="7224" to="7234">
+<rel label="root">
+<span from="7145" to="7235"/>
+</rel>
+</span>
+<span id="s1693_n12" from="7234" to="7235">
+<rel label="punct">
+<span from="7224" to="7234"/>
+</rel>
+</span>
+<span id="s1694_n1" from="7236" to="7239">
+<rel label="det">
+<span from="7240" to="7251"/>
+</rel>
+</span>
+<span id="s1694_n2" from="7240" to="7251">
+<rel label="nsubj">
+<span from="7270" to="7277"/>
+</rel>
+</span>
+<span id="s1694_n3" from="7252" to="7255">
+<rel label="det">
+<span from="7256" to="7269"/>
+</rel>
+</span>
+<span id="s1694_n4" from="7256" to="7269">
+<rel label="nmod">
+<span from="7240" to="7251"/>
+</rel>
+</span>
+<span id="s1694_n5" from="7270" to="7277">
+<rel label="root">
+<span from="7236" to="7369"/>
+</rel>
+</span>
+<span id="s1694_n6" from="7278" to="7282">
+<rel label="obj">
+<span from="7270" to="7277"/>
+</rel>
+</span>
+<span id="s1694_n7" from="7283" to="7291">
+<rel label="advmod">
+<span from="7270" to="7277"/>
+</rel>
+</span>
+<span id="s1694_n8" from="7292" to="7295">
+<rel label="compound:prt">
+<span from="7270" to="7277"/>
+</rel>
+</span>
+<span id="s1694_n9" from="7295" to="7296">
+<rel label="punct">
+<span from="7333" to="7339"/>
+</rel>
+</span>
+<span id="s1694_n10" from="7297" to="7313">
+<rel label="nsubj">
+<span from="7333" to="7339"/>
+</rel>
+</span>
+<span id="s1694_n11" from="7314" to="7320">
+<rel label="advmod">
+<span from="7297" to="7313"/>
+</rel>
+</span>
+<span id="s1694_n12" from="7321" to="7327">
+<rel label="aux">
+<span from="7333" to="7339"/>
+</rel>
+</span>
+<span id="s1694_n13" from="7328" to="7332">
+<rel label="expl:pv">
+<span from="7333" to="7339"/>
+</rel>
+</span>
+<span id="s1694_n14" from="7333" to="7339">
+<rel label="conj">
+<span from="7270" to="7277"/>
+</rel>
+</span>
+<span id="s1694_n15" from="7340" to="7343">
+<rel label="cc">
+<span from="7357" to="7368"/>
+</rel>
+</span>
+<span id="s1694_n16" from="7344" to="7346">
+<rel label="case">
+<span from="7351" to="7356"/>
+</rel>
+</span>
+<span id="s1694_n17" from="7347" to="7350">
+<rel label="det">
+<span from="7351" to="7356"/>
+</rel>
+</span>
+<span id="s1694_n18" from="7351" to="7356">
+<rel label="obl">
+<span from="7357" to="7368"/>
+</rel>
+</span>
+<span id="s1694_n19" from="7357" to="7368">
+<rel label="conj">
+<span from="7333" to="7339"/>
+</rel>
+</span>
+<span id="s1694_n20" from="7368" to="7369">
+<rel label="punct">
+<span from="7270" to="7277"/>
+</rel>
+</span>
+<span id="s1695_n1" from="7370" to="7373">
+<rel label="case">
+<span from="7392" to="7402"/>
+</rel>
+</span>
+<span id="s1695_n2" from="7374" to="7376">
+<rel label="nmod">
+<span from="7392" to="7402"/>
+</rel>
+</span>
+<span id="s1695_n3" from="7377" to="7382">
+<rel label="det">
+<span from="7392" to="7402"/>
+</rel>
+</span>
+<span id="s1695_n4" from="7383" to="7391">
+<rel label="amod">
+<span from="7392" to="7402"/>
+</rel>
+</span>
+<span id="s1695_n5" from="7392" to="7402">
+<rel label="obl">
+<span from="7469" to="7482"/>
+</rel>
+</span>
+<span id="s1695_n6" from="7402" to="7403">
+<rel label="punct">
+<span from="7408" to="7427"/>
+</rel>
+</span>
+<span id="s1695_n7" from="7404" to="7407">
+<rel label="det">
+<span from="7408" to="7427"/>
+</rel>
+</span>
+<span id="s1695_n8" from="7408" to="7427">
+<rel label="appos">
+<span from="7392" to="7402"/>
+</rel>
+</span>
+<span id="s1695_n9" from="7427" to="7428">
+<rel label="punct">
+<span from="7408" to="7427"/>
+</rel>
+</span>
+<span id="s1695_n10" from="7429" to="7435">
+<rel label="aux:pass">
+<span from="7469" to="7482"/>
+</rel>
+</span>
+<span id="s1695_n11" from="7436" to="7444">
+<rel label="nsubj:pass">
+<span from="7469" to="7482"/>
+</rel>
+</span>
+<span id="s1695_n12" from="7445" to="7448">
+<rel label="det">
+<span from="7449" to="7462"/>
+</rel>
+</span>
+<span id="s1695_n13" from="7449" to="7462">
+<rel label="nmod">
+<span from="7436" to="7444"/>
+</rel>
+</span>
+<span id="s1695_n14" from="7463" to="7468">
+<rel label="advmod">
+<span from="7469" to="7482"/>
+</rel>
+</span>
+<span id="s1695_n15" from="7469" to="7482">
+<rel label="root">
+<span from="7370" to="7580"/>
+</rel>
+</span>
+<span id="s1695_n16" from="7483" to="7486">
+<rel label="cc">
+<span from="7511" to="7517"/>
+</rel>
+</span>
+<span id="s1695_n17" from="7487" to="7510">
+<rel label="nsubj">
+<span from="7511" to="7517"/>
+</rel>
+</span>
+<span id="s1695_n18" from="7511" to="7517">
+<rel label="conj">
+<span from="7469" to="7482"/>
+</rel>
+</span>
+<span id="s1695_n19" from="7518" to="7522">
+<rel label="expl:pv">
+<span from="7511" to="7517"/>
+</rel>
+</span>
+<span id="s1695_n20" from="7522" to="7523">
+<rel label="punct">
+<span from="7536" to="7542"/>
+</rel>
+</span>
+<span id="s1695_n21" from="7524" to="7527">
+<rel label="det">
+<span from="7528" to="7535"/>
+</rel>
+</span>
+<span id="s1695_n22" from="7528" to="7535">
+<rel label="nsubj">
+<span from="7536" to="7542"/>
+</rel>
+</span>
+<span id="s1695_n23" from="7536" to="7542">
+<rel label="conj">
+<span from="7511" to="7517"/>
+</rel>
+</span>
+<span id="s1695_n24" from="7543" to="7548">
+<rel label="advmod">
+<span from="7536" to="7542"/>
+</rel>
+</span>
+<span id="s1695_n25" from="7549" to="7553">
+<rel label="advmod">
+<span from="7536" to="7542"/>
+</rel>
+</span>
+<span id="s1695_n26" from="7554" to="7557">
+<rel label="obj">
+<span from="7536" to="7542"/>
+</rel>
+</span>
+<span id="s1695_n27" from="7558" to="7563">
+<rel label="det">
+<span from="7575" to="7579"/>
+</rel>
+</span>
+<span id="s1695_n28" from="7564" to="7574">
+<rel label="amod">
+<span from="7575" to="7579"/>
+</rel>
+</span>
+<span id="s1695_n29" from="7575" to="7579">
+<rel label="nmod">
+<span from="7554" to="7557"/>
+</rel>
+</span>
+<span id="s1695_n30" from="7579" to="7580">
+<rel label="punct">
+<span from="7469" to="7482"/>
+</rel>
+</span>
+<span id="s1696_n1" from="7581" to="7584">
+<rel label="det">
+<span from="7585" to="7604"/>
+</rel>
+</span>
+<span id="s1696_n2" from="7585" to="7604">
+<rel label="nsubj">
+<span from="7605" to="7610"/>
+</rel>
+</span>
+<span id="s1696_n3" from="7605" to="7610">
+<rel label="root">
+<span from="7581" to="7723"/>
+</rel>
+</span>
+<span id="s1696_n4" from="7611" to="7614">
+<rel label="case">
+<span from="7619" to="7622"/>
+</rel>
+</span>
+<span id="s1696_n5" from="7615" to="7618">
+<rel label="det">
+<span from="7619" to="7622"/>
+</rel>
+</span>
+<span id="s1696_n6" from="7619" to="7622">
+<rel label="obl">
+<span from="7605" to="7610"/>
+</rel>
+</span>
+<span id="s1696_n7" from="7623" to="7626">
+<rel label="det">
+<span from="7627" to="7633"/>
+</rel>
+</span>
+<span id="s1696_n8" from="7627" to="7633">
+<rel label="nmod">
+<span from="7619" to="7622"/>
+</rel>
+</span>
+<span id="s1696_n9" from="7634" to="7636">
+<rel label="compound:prt">
+<span from="7605" to="7610"/>
+</rel>
+</span>
+<span id="s1696_n10" from="7636" to="7637">
+<rel label="punct">
+<span from="7605" to="7610"/>
+</rel>
+</span>
+<span id="s1696_n11" from="7638" to="7640">
+<rel label="advmod">
+<span from="7641" to="7647"/>
+</rel>
+</span>
+<span id="s1696_n12" from="7641" to="7647">
+<rel label="xcomp">
+<span from="7706" to="7714"/>
+</rel>
+</span>
+<span id="s1696_n13" from="7648" to="7651">
+<rel label="nsubj">
+<span from="7641" to="7647"/>
+</rel>
+</span>
+<span id="s1696_n14" from="7652" to="7656">
+<rel label="cop">
+<span from="7641" to="7647"/>
+</rel>
+</span>
+<span id="s1696_n15" from="7657" to="7660">
+<rel label="cc">
+<span from="7689" to="7698"/>
+</rel>
+</span>
+<span id="s1696_n16" from="7661" to="7663">
+<rel label="advmod">
+<span from="7664" to="7668"/>
+</rel>
+</span>
+<span id="s1696_n17" from="7664" to="7668">
+<rel label="det">
+<span from="7669" to="7684"/>
+</rel>
+</span>
+<span id="s1696_n18" from="7669" to="7684">
+<rel label="nsubj">
+<span from="7689" to="7698"/>
+</rel>
+</span>
+<span id="s1696_n19" from="7685" to="7688">
+<rel label="obj">
+<span from="7689" to="7698"/>
+</rel>
+</span>
+<span id="s1696_n20" from="7689" to="7698">
+<rel label="conj">
+<span from="7641" to="7647"/>
+</rel>
+</span>
+<span id="s1696_n21" from="7698" to="7699">
+<rel label="punct">
+<span from="7689" to="7698"/>
+</rel>
+</span>
+<span id="s1696_n22" from="7700" to="7705">
+<rel label="advmod">
+<span from="7706" to="7714"/>
+</rel>
+</span>
+<span id="s1696_n23" from="7706" to="7714">
+<rel label="conj">
+<span from="7605" to="7610"/>
+</rel>
+</span>
+<span id="s1696_n24" from="7715" to="7718">
+<rel label="cop">
+<span from="7706" to="7714"/>
+</rel>
+</span>
+<span id="s1696_n25" from="7719" to="7722">
+<rel label="nsubj">
+<span from="7706" to="7714"/>
+</rel>
+</span>
+<span id="s1696_n26" from="7722" to="7723">
+<rel label="punct">
+<span from="7605" to="7610"/>
+</rel>
+</span>
+<span id="s1697_n1" from="7724" to="7735">
+<rel label="nsubj">
+<span from="7736" to="7741"/>
+</rel>
+</span>
+<span id="s1697_n2" from="7736" to="7741">
+<rel label="root">
+<span from="7724" to="7825"/>
+</rel>
+</span>
+<span id="s1697_n3" from="7742" to="7745">
+<rel label="det">
+<span from="7758" to="7766"/>
+</rel>
+</span>
+<span id="s1697_n4" from="7746" to="7757">
+<rel label="amod">
+<span from="7758" to="7766"/>
+</rel>
+</span>
+<span id="s1697_n5" from="7758" to="7766">
+<rel label="obj">
+<span from="7736" to="7741"/>
+</rel>
+</span>
+<span id="s1697_n6" from="7767" to="7770">
+<rel label="det">
+<span from="7771" to="7778"/>
+</rel>
+</span>
+<span id="s1697_n7" from="7771" to="7778">
+<rel label="nmod">
+<span from="7758" to="7766"/>
+</rel>
+</span>
+<span id="s1697_n8" from="7779" to="7792">
+<rel label="advcl">
+<span from="7736" to="7741"/>
+</rel>
+</span>
+<span id="s1697_n9" from="7793" to="7796">
+<rel label="det">
+<span from="7797" to="7806"/>
+</rel>
+</span>
+<span id="s1697_n10" from="7797" to="7806">
+<rel label="obj">
+<span from="7779" to="7792"/>
+</rel>
+</span>
+<span id="s1697_n11" from="7807" to="7810">
+<rel label="det">
+<span from="7811" to="7824"/>
+</rel>
+</span>
+<span id="s1697_n12" from="7811" to="7824">
+<rel label="nmod">
+<span from="7797" to="7806"/>
+</rel>
+</span>
+<span id="s1697_n13" from="7824" to="7825">
+<rel label="punct">
+<span from="7736" to="7741"/>
+</rel>
+</span>
+<span id="s1698_n1" from="7826" to="7829">
+<rel label="det">
+<span from="7830" to="7849"/>
+</rel>
+</span>
+<span id="s1698_n2" from="7830" to="7849">
+<rel label="nsubj">
+<span from="7880" to="7891"/>
+</rel>
+</span>
+<span id="s1698_n3" from="7850" to="7853">
+<rel label="aux">
+<span from="7880" to="7891"/>
+</rel>
+</span>
+<span id="s1698_n4" from="7854" to="7858">
+<rel label="advmod">
+<span from="7880" to="7891"/>
+</rel>
+</span>
+<span id="s1698_n5" from="7859" to="7864">
+<rel label="advmod">
+<span from="7880" to="7891"/>
+</rel>
+</span>
+<span id="s1698_n6" from="7865" to="7869">
+<rel label="advmod">
+<span from="7859" to="7864"/>
+</rel>
+</span>
+<span id="s1698_n7" from="7870" to="7879">
+<rel label="advmod">
+<span from="7880" to="7891"/>
+</rel>
+</span>
+<span id="s1698_n8" from="7880" to="7891">
+<rel label="root">
+<span from="7826" to="7892"/>
+</rel>
+</span>
+<span id="s1698_n9" from="7891" to="7892">
+<rel label="punct">
+<span from="7880" to="7891"/>
+</rel>
+</span>
+<span id="s1699_n1" from="7894" to="7903">
+<rel label="nsubj">
+<span from="7936" to="7941"/>
+</rel>
+</span>
+<span id="s1699_n2" from="7905" to="7908">
+<rel label="det">
+<span from="7909" to="7918"/>
+</rel>
+</span>
+<span id="s1699_n3" from="7909" to="7918">
+<rel label="appos">
+<span from="7894" to="7903"/>
+</rel>
+</span>
+<span id="s1699_n4" from="7919" to="7924">
+<rel label="det">
+<span from="7925" to="7935"/>
+</rel>
+</span>
+<span id="s1699_n5" from="7925" to="7935">
+<rel label="nmod">
+<span from="7909" to="7918"/>
+</rel>
+</span>
+<span id="s1699_n6" from="7936" to="7941">
+<rel label="root">
+<span from="7894" to="8005"/>
+</rel>
+</span>
+<span id="s1699_n7" from="7942" to="7950">
+<rel label="case">
+<span from="7951" to="7956"/>
+</rel>
+</span>
+<span id="s1699_n8" from="7951" to="7956">
+<rel label="obl">
+<span from="7936" to="7941"/>
+</rel>
+</span>
+<span id="s1699_n9" from="7957" to="7967">
+<rel label="advmod">
+<span from="7936" to="7941"/>
+</rel>
+</span>
+<span id="s1699_n10" from="7968" to="7971">
+<rel label="cc">
+<span from="7972" to="7979"/>
+</rel>
+</span>
+<span id="s1699_n11" from="7972" to="7979">
+<rel label="conj">
+<span from="7936" to="7941"/>
+</rel>
+</span>
+<span id="s1699_n12" from="7980" to="7982">
+<rel label="advmod">
+<span from="7972" to="7979"/>
+</rel>
+</span>
+<span id="s1699_n13" from="7983" to="7987">
+<rel label="det">
+<span from="7996" to="8004"/>
+</rel>
+</span>
+<span id="s1699_n14" from="7988" to="7995">
+<rel label="amod">
+<span from="7996" to="8004"/>
+</rel>
+</span>
+<span id="s1699_n15" from="7996" to="8004">
+<rel label="obj">
+<span from="7972" to="7979"/>
+</rel>
+</span>
+<span id="s1699_n16" from="8004" to="8005">
+<rel label="punct">
+<span from="7936" to="7941"/>
+</rel>
+</span>
+<span id="s1700_n1" from="8006" to="8021">
+<rel label="nsubj">
+<span from="8093" to="8100"/>
+</rel>
+</span>
+<span id="s1700_n2" from="8022" to="8028">
+<rel label="aux">
+<span from="8093" to="8100"/>
+</rel>
+</span>
+<span id="s1700_n3" from="8029" to="8033">
+<rel label="expl:pv">
+<span from="8093" to="8100"/>
+</rel>
+</span>
+<span id="s1700_n4" from="8034" to="8036">
+<rel label="case">
+<span from="8050" to="8074"/>
+</rel>
+</span>
+<span id="s1700_n5" from="8037" to="8049">
+<rel label="amod">
+<span from="8050" to="8074"/>
+</rel>
+</span>
+<span id="s1700_n6" from="8050" to="8074">
+<rel label="obl">
+<span from="8093" to="8100"/>
+</rel>
+</span>
+<span id="s1700_n7" from="8075" to="8078">
+<rel label="cc">
+<span from="8093" to="8100"/>
+</rel>
+</span>
+<span id="s1700_n8" from="8079" to="8085">
+<rel label="advmod">
+<span from="8093" to="8100"/>
+</rel>
+</span>
+<span id="s1700_n9" from="8086" to="8092">
+<rel label="advmod">
+<span from="8093" to="8100"/>
+</rel>
+</span>
+<span id="s1700_n10" from="8093" to="8100">
+<rel label="root">
+<span from="8006" to="8101"/>
+</rel>
+</span>
+<span id="s1700_n11" from="8100" to="8101">
+<rel label="punct">
+<span from="8093" to="8100"/>
+</rel>
+</span>
+<span id="s1701_n1" from="8102" to="8106">
+<rel label="nsubj">
+<span from="8124" to="8131"/>
+</rel>
+</span>
+<span id="s1701_n2" from="8107" to="8110">
+<rel label="cop">
+<span from="8124" to="8131"/>
+</rel>
+</span>
+<span id="s1701_n3" from="8111" to="8114">
+<rel label="case">
+<span from="8115" to="8123"/>
+</rel>
+</span>
+<span id="s1701_n4" from="8115" to="8123">
+<rel label="obl">
+<span from="8124" to="8131"/>
+</rel>
+</span>
+<span id="s1701_n5" from="8124" to="8131">
+<rel label="root">
+<span from="8102" to="8154"/>
+</rel>
+</span>
+<span id="s1701_n6" from="8132" to="8135">
+<rel label="case">
+<span from="8140" to="8153"/>
+</rel>
+</span>
+<span id="s1701_n7" from="8136" to="8139">
+<rel label="det">
+<span from="8140" to="8153"/>
+</rel>
+</span>
+<span id="s1701_n8" from="8140" to="8153">
+<rel label="obl">
+<span from="8124" to="8131"/>
+</rel>
+</span>
+<span id="s1701_n9" from="8153" to="8154">
+<rel label="punct">
+<span from="8124" to="8131"/>
+</rel>
+</span>
+<span id="s1702_n1" from="8155" to="8164">
+<rel label="nsubj">
+<span from="8165" to="8171"/>
+</rel>
+</span>
+<span id="s1702_n2" from="8165" to="8171">
+<rel label="root">
+<span from="8155" to="8396"/>
+</rel>
+</span>
+<span id="s1702_n3" from="8172" to="8176">
+<rel label="advmod">
+<span from="8188" to="8193"/>
+</rel>
+</span>
+<span id="s1702_n4" from="8177" to="8181">
+<rel label="det">
+<span from="8188" to="8193"/>
+</rel>
+</span>
+<span id="s1702_n5" from="8182" to="8187">
+<rel label="amod">
+<span from="8188" to="8193"/>
+</rel>
+</span>
+<span id="s1702_n6" from="8188" to="8193">
+<rel label="obj">
+<span from="8165" to="8171"/>
+</rel>
+</span>
+<span id="s1702_n7" from="8194" to="8197">
+<rel label="case">
+<span from="8202" to="8215"/>
+</rel>
+</span>
+<span id="s1702_n8" from="8198" to="8201">
+<rel label="det">
+<span from="8202" to="8215"/>
+</rel>
+</span>
+<span id="s1702_n9" from="8202" to="8215">
+<rel label="nmod">
+<span from="8188" to="8193"/>
+</rel>
+</span>
+<span id="s1702_n10" from="8216" to="8219">
+<rel label="cc">
+<span from="8224" to="8231"/>
+</rel>
+</span>
+<span id="s1702_n11" from="8220" to="8223">
+<rel label="cop">
+<span from="8224" to="8231"/>
+</rel>
+</span>
+<span id="s1702_n12" from="8224" to="8231">
+<rel label="conj">
+<span from="8165" to="8171"/>
+</rel>
+</span>
+<span id="s1702_n13" from="8232" to="8235">
+<rel label="case">
+<span from="8255" to="8263"/>
+</rel>
+</span>
+<span id="s1702_n14" from="8236" to="8241">
+<rel label="amod">
+<span from="8255" to="8263"/>
+</rel>
+</span>
+<span id="s1702_n15" from="8242" to="8254">
+<rel label="amod">
+<span from="8255" to="8263"/>
+</rel>
+</span>
+<span id="s1702_n16" from="8255" to="8263">
+<rel label="obl">
+<span from="8224" to="8231"/>
+</rel>
+</span>
+<span id="s1702_n17" from="8264" to="8267">
+<rel label="case">
+<span from="8268" to="8279"/>
+</rel>
+</span>
+<span id="s1702_n18" from="8268" to="8279">
+<rel label="obl">
+<span from="8255" to="8263"/>
+</rel>
+</span>
+<span id="s1702_n19" from="8279" to="8280">
+<rel label="punct">
+<span from="8281" to="8293"/>
+</rel>
+</span>
+<span id="s1702_n20" from="8281" to="8293">
+<rel label="conj">
+<span from="8268" to="8279"/>
+</rel>
+</span>
+<span id="s1702_n21" from="8293" to="8294">
+<rel label="punct">
+<span from="8295" to="8304"/>
+</rel>
+</span>
+<span id="s1702_n22" from="8295" to="8304">
+<rel label="conj">
+<span from="8268" to="8279"/>
+</rel>
+</span>
+<span id="s1702_n23" from="8304" to="8305">
+<rel label="punct">
+<span from="8338" to="8346"/>
+</rel>
+</span>
+<span id="s1702_n24" from="8306" to="8310">
+<rel label="advmod">
+<span from="8311" to="8318"/>
+</rel>
+</span>
+<span id="s1702_n25" from="8311" to="8318">
+<rel label="mark">
+<span from="8338" to="8346"/>
+</rel>
+</span>
+<span id="s1702_n26" from="8319" to="8322">
+<rel label="det">
+<span from="8323" to="8333"/>
+</rel>
+</span>
+<span id="s1702_n27" from="8323" to="8333">
+<rel label="nsubj">
+<span from="8338" to="8346"/>
+</rel>
+</span>
+<span id="s1702_n28" from="8334" to="8337">
+<rel label="advmod">
+<span from="8338" to="8346"/>
+</rel>
+</span>
+<span id="s1702_n29" from="8338" to="8346">
+<rel label="advcl">
+<span from="8388" to="8395"/>
+</rel>
+</span>
+<span id="s1702_n30" from="8346" to="8347">
+<rel label="punct">
+<span from="8338" to="8346"/>
+</rel>
+</span>
+<span id="s1702_n31" from="8348" to="8355">
+<rel label="aux">
+<span from="8388" to="8395"/>
+</rel>
+</span>
+<span id="s1702_n32" from="8356" to="8372">
+<rel label="nsubj">
+<span from="8388" to="8395"/>
+</rel>
+</span>
+<span id="s1702_n33" from="8373" to="8378">
+<rel label="advmod">
+<span from="8388" to="8395"/>
+</rel>
+</span>
+<span id="s1702_n34" from="8379" to="8387">
+<rel label="xcomp">
+<span from="8388" to="8395"/>
+</rel>
+</span>
+<span id="s1702_n35" from="8388" to="8395">
+<rel label="conj">
+<span from="8165" to="8171"/>
+</rel>
+</span>
+<span id="s1702_n36" from="8395" to="8396">
+<rel label="punct">
+<span from="8165" to="8171"/>
+</rel>
+</span>
+<span id="s1703_n1" from="8397" to="8399">
+<rel label="mark">
+<span from="8408" to="8417"/>
+</rel>
+</span>
+<span id="s1703_n2" from="8400" to="8404">
+<rel label="obj">
+<span from="8408" to="8417"/>
+</rel>
+</span>
+<span id="s1703_n3" from="8405" to="8407">
+<rel label="mark">
+<span from="8408" to="8417"/>
+</rel>
+</span>
+<span id="s1703_n4" from="8408" to="8417">
+<rel label="advcl">
+<span from="8444" to="8455"/>
+</rel>
+</span>
+<span id="s1703_n5" from="8417" to="8418">
+<rel label="punct">
+<span from="8408" to="8417"/>
+</rel>
+</span>
+<span id="s1703_n6" from="8419" to="8425">
+<rel label="aux">
+<span from="8444" to="8455"/>
+</rel>
+</span>
+<span id="s1703_n7" from="8426" to="8429">
+<rel label="det">
+<span from="8430" to="8443"/>
+</rel>
+</span>
+<span id="s1703_n8" from="8430" to="8443">
+<rel label="nsubj:pass">
+<span from="8444" to="8455"/>
+</rel>
+</span>
+<span id="s1703_n9" from="8444" to="8455">
+<rel label="root">
+<span from="8397" to="8736"/>
+</rel>
+</span>
+<span id="s1703_n10" from="8456" to="8462">
+<rel label="aux:pass">
+<span from="8444" to="8455"/>
+</rel>
+</span>
+<span id="s1703_n11" from="8462" to="8463">
+<rel label="punct">
+<span from="8444" to="8455"/>
+</rel>
+</span>
+<span id="s1703_n12" from="8464" to="8471">
+<rel label="parataxis">
+<span from="8444" to="8455"/>
+</rel>
+</span>
+<span id="s1703_n13" from="8472" to="8475">
+<rel label="cop">
+<span from="8464" to="8471"/>
+</rel>
+</span>
+<span id="s1703_n14" from="8476" to="8479">
+<rel label="det">
+<span from="8480" to="8489"/>
+</rel>
+</span>
+<span id="s1703_n15" from="8480" to="8489">
+<rel label="nsubj">
+<span from="8464" to="8471"/>
+</rel>
+</span>
+<span id="s1703_n16" from="8490" to="8493">
+<rel label="case">
+<span from="8494" to="8508"/>
+</rel>
+</span>
+<span id="s1703_n17" from="8494" to="8508">
+<rel label="nmod">
+<span from="8480" to="8489"/>
+</rel>
+</span>
+<span id="s1703_n18" from="8508" to="8509">
+<rel label="punct">
+<span from="8444" to="8455"/>
+</rel>
+</span>
+<span id="s1703_n19" from="8510" to="8521">
+<rel label="nsubj:pass">
+<span from="8626" to="8642"/>
+</rel>
+</span>
+<span id="s1703_n20" from="8522" to="8528">
+<rel label="aux">
+<span from="8626" to="8642"/>
+</rel>
+</span>
+<span id="s1703_n21" from="8529" to="8532">
+<rel label="case">
+<span from="8533" to="8549"/>
+</rel>
+</span>
+<span id="s1703_n22" from="8533" to="8549">
+<rel label="obl">
+<span from="8626" to="8642"/>
+</rel>
+</span>
+<span id="s1703_n23" from="8550" to="8571">
+<rel label="obj">
+<span from="8626" to="8642"/>
+</rel>
+</span>
+<span id="s1703_n24" from="8571" to="8572">
+<rel label="punct">
+<span from="8626" to="8642"/>
+</rel>
+</span>
+<span id="s1703_n25" from="8573" to="8589">
+<rel label="conj">
+<span from="8550" to="8571"/>
+</rel>
+</span>
+<span id="s1703_n26" from="8590" to="8593">
+<rel label="cc">
+<span from="8594" to="8607"/>
+</rel>
+</span>
+<span id="s1703_n27" from="8594" to="8607">
+<rel label="conj">
+<span from="8550" to="8571"/>
+</rel>
+</span>
+<span id="s1703_n28" from="8608" to="8611">
+<rel label="det">
+<span from="8612" to="8625"/>
+</rel>
+</span>
+<span id="s1703_n29" from="8612" to="8625">
+<rel label="nmod">
+<span from="8594" to="8607"/>
+</rel>
+</span>
+<span id="s1703_n30" from="8626" to="8642">
+<rel label="conj">
+<span from="8444" to="8455"/>
+</rel>
+</span>
+<span id="s1703_n31" from="8643" to="8649">
+<rel label="aux:pass">
+<span from="8626" to="8642"/>
+</rel>
+</span>
+<span id="s1703_n32" from="8650" to="8653">
+<rel label="cc">
+<span from="8707" to="8717"/>
+</rel>
+</span>
+<span id="s1703_n33" from="8654" to="8656">
+<rel label="expl">
+<span from="8707" to="8717"/>
+</rel>
+</span>
+<span id="s1703_n34" from="8657" to="8661">
+<rel label="aux">
+<span from="8707" to="8717"/>
+</rel>
+</span>
+<span id="s1703_n35" from="8662" to="8665">
+<rel label="det">
+<span from="8674" to="8680"/>
+</rel>
+</span>
+<span id="s1703_n36" from="8666" to="8673">
+<rel label="amod">
+<span from="8674" to="8680"/>
+</rel>
+</span>
+<span id="s1703_n37" from="8674" to="8680">
+<rel label="nsubj:pass">
+<span from="8707" to="8717"/>
+</rel>
+</span>
+<span id="s1703_n38" from="8681" to="8683">
+<rel label="case">
+<span from="8684" to="8706"/>
+</rel>
+</span>
+<span id="s1703_n39" from="8684" to="8706">
+<rel label="nmod">
+<span from="8674" to="8680"/>
+</rel>
+</span>
+<span id="s1703_n40" from="8707" to="8717">
+<rel label="conj">
+<span from="8444" to="8455"/>
+</rel>
+</span>
+<span id="s1703_n41" from="8718" to="8724">
+<rel label="aux:pass">
+<span from="8707" to="8717"/>
+</rel>
+</span>
+<span id="s1703_n42" from="8725" to="8728">
+<rel label="mark">
+<span from="8729" to="8735"/>
+</rel>
+</span>
+<span id="s1703_n43" from="8729" to="8735">
+<rel label="advcl">
+<span from="8707" to="8717"/>
+</rel>
+</span>
+<span id="s1703_n44" from="8735" to="8736">
+<rel label="punct">
+<span from="8444" to="8455"/>
+</rel>
+</span>
+<span id="s1704_n1" from="8737" to="8739">
+<rel label="advmod">
+<span from="8798" to="8805"/>
+</rel>
+</span>
+<span id="s1704_n2" from="8740" to="8743">
+<rel label="cop">
+<span from="8798" to="8805"/>
+</rel>
+</span>
+<span id="s1704_n3" from="8744" to="8752">
+<rel label="advmod">
+<span from="8798" to="8805"/>
+</rel>
+</span>
+<span id="s1704_n4" from="8753" to="8766">
+<rel label="amod">
+<span from="8767" to="8776"/>
+</rel>
+</span>
+<span id="s1704_n5" from="8767" to="8776">
+<rel label="obj">
+<span from="8798" to="8805"/>
+</rel>
+</span>
+<span id="s1704_n6" from="8777" to="8781">
+<rel label="det">
+<span from="8782" to="8797"/>
+</rel>
+</span>
+<span id="s1704_n7" from="8782" to="8797">
+<rel label="nsubj">
+<span from="8798" to="8805"/>
+</rel>
+</span>
+<span id="s1704_n8" from="8798" to="8805">
+<rel label="root">
+<span from="8737" to="8806"/>
+</rel>
+</span>
+<span id="s1704_n9" from="8805" to="8806">
+<rel label="punct">
+<span from="8798" to="8805"/>
+</rel>
+</span>
+<span id="s1705_n1" from="8808" to="8818">
+<rel label="nsubj:pass">
+<span from="8874" to="8882"/>
+</rel>
+</span>
+<span id="s1705_n2" from="8820" to="8822">
+<rel label="case">
+<span from="8827" to="8837"/>
+</rel>
+</span>
+<span id="s1705_n3" from="8823" to="8826">
+<rel label="det">
+<span from="8827" to="8837"/>
+</rel>
+</span>
+<span id="s1705_n4" from="8827" to="8837">
+<rel label="nmod">
+<span from="8808" to="8818"/>
+</rel>
+</span>
+<span id="s1705_n5" from="8838" to="8842">
+<rel label="aux:pass">
+<span from="8874" to="8882"/>
+</rel>
+</span>
+<span id="s1705_n6" from="8843" to="8856">
+<rel label="nsubj:pass">
+<span from="8874" to="8882"/>
+</rel>
+</span>
+<span id="s1705_n7" from="8857" to="8873">
+<rel label="advmod">
+<span from="8874" to="8882"/>
+</rel>
+</span>
+<span id="s1705_n8" from="8874" to="8882">
+<rel label="root">
+<span from="8808" to="8954"/>
+</rel>
+</span>
+<span id="s1705_n9" from="8882" to="8883">
+<rel label="punct">
+<span from="8895" to="8905"/>
+</rel>
+</span>
+<span id="s1705_n10" from="8884" to="8891">
+<rel label="cc">
+<span from="8895" to="8905"/>
+</rel>
+</span>
+<span id="s1705_n11" from="8892" to="8894">
+<rel label="expl">
+<span from="8895" to="8905"/>
+</rel>
+</span>
+<span id="s1705_n12" from="8895" to="8905">
+<rel label="conj">
+<span from="8874" to="8882"/>
+</rel>
+</span>
+<span id="s1705_n13" from="8906" to="8918">
+<rel label="nsubj">
+<span from="8895" to="8905"/>
+</rel>
+</span>
+<span id="s1705_n14" from="8919" to="8932">
+<rel label="amod">
+<span from="8933" to="8953"/>
+</rel>
+</span>
+<span id="s1705_n15" from="8933" to="8953">
+<rel label="nmod">
+<span from="8906" to="8918"/>
+</rel>
+</span>
+<span id="s1705_n16" from="8953" to="8954">
+<rel label="punct">
+<span from="8874" to="8882"/>
+</rel>
+</span>
+<span id="s1706_n1" from="8955" to="8963">
+<rel label="advmod">
+<span from="8964" to="8975"/>
+</rel>
+</span>
+<span id="s1706_n2" from="8964" to="8975">
+<rel label="nsubj">
+<span from="8994" to="9000"/>
+</rel>
+</span>
+<span id="s1706_n3" from="8976" to="8979">
+<rel label="cc">
+<span from="8980" to="8993"/>
+</rel>
+</span>
+<span id="s1706_n4" from="8980" to="8993">
+<rel label="conj">
+<span from="8964" to="8975"/>
+</rel>
+</span>
+<span id="s1706_n5" from="8994" to="9000">
+<rel label="root">
+<span from="8955" to="9031"/>
+</rel>
+</span>
+<span id="s1706_n6" from="9001" to="9003">
+<rel label="case">
+<span from="9010" to="9030"/>
+</rel>
+</span>
+<span id="s1706_n7" from="9004" to="9009">
+<rel label="amod">
+<span from="9010" to="9030"/>
+</rel>
+</span>
+<span id="s1706_n8" from="9010" to="9030">
+<rel label="obl">
+<span from="8994" to="9000"/>
+</rel>
+</span>
+<span id="s1706_n9" from="9030" to="9031">
+<rel label="punct">
+<span from="8994" to="9000"/>
+</rel>
+</span>
+<span id="s1707_n1" from="9032" to="9038">
+<rel label="det">
+<span from="9039" to="9047"/>
+</rel>
+</span>
+<span id="s1707_n2" from="9039" to="9047">
+<rel label="nsubj">
+<span from="9075" to="9082"/>
+</rel>
+</span>
+<span id="s1707_n3" from="9047" to="9048">
+<rel label="punct">
+<span from="9053" to="9059"/>
+</rel>
+</span>
+<span id="s1707_n4" from="9049" to="9052">
+<rel label="case">
+<span from="9053" to="9059"/>
+</rel>
+</span>
+<span id="s1707_n5" from="9053" to="9059">
+<rel label="obl">
+<span from="9039" to="9047"/>
+</rel>
+</span>
+<span id="s1707_n6" from="9060" to="9063">
+<rel label="case">
+<span from="9064" to="9073"/>
+</rel>
+</span>
+<span id="s1707_n7" from="9064" to="9073">
+<rel label="nmod">
+<span from="9053" to="9059"/>
+</rel>
+</span>
+<span id="s1707_n8" from="9073" to="9074">
+<rel label="punct">
+<span from="9053" to="9059"/>
+</rel>
+</span>
+<span id="s1707_n9" from="9075" to="9082">
+<rel label="root">
+<span from="9032" to="9163"/>
+</rel>
+</span>
+<span id="s1707_n10" from="9083" to="9087">
+<rel label="expl:pv">
+<span from="9075" to="9082"/>
+</rel>
+</span>
+<span id="s1707_n11" from="9088" to="9097">
+<rel label="amod">
+<span from="9098" to="9107"/>
+</rel>
+</span>
+<span id="s1707_n12" from="9098" to="9107">
+<rel label="iobj">
+<span from="9075" to="9082"/>
+</rel>
+</span>
+<span id="s1707_n13" from="9108" to="9110">
+<rel label="compound:prt">
+<span from="9075" to="9082"/>
+</rel>
+</span>
+<span id="s1707_n14" from="9110" to="9111">
+<rel label="punct">
+<span from="9152" to="9162"/>
+</rel>
+</span>
+<span id="s1707_n15" from="9112" to="9119">
+<rel label="mark">
+<span from="9152" to="9162"/>
+</rel>
+</span>
+<span id="s1707_n16" from="9120" to="9126">
+<rel label="nsubj">
+<span from="9152" to="9162"/>
+</rel>
+</span>
+<span id="s1707_n17" from="9127" to="9131">
+<rel label="advmod">
+<span from="9152" to="9162"/>
+</rel>
+</span>
+<span id="s1707_n18" from="9132" to="9141">
+<rel label="advmod">
+<span from="9142" to="9148"/>
+</rel>
+</span>
+<span id="s1707_n19" from="9142" to="9148">
+<rel label="advmod">
+<span from="9152" to="9162"/>
+</rel>
+</span>
+<span id="s1707_n20" from="9149" to="9151">
+<rel label="mark">
+<span from="9152" to="9162"/>
+</rel>
+</span>
+<span id="s1707_n21" from="9152" to="9162">
+<rel label="advcl">
+<span from="9075" to="9082"/>
+</rel>
+</span>
+<span id="s1707_n22" from="9162" to="9163">
+<rel label="punct">
+<span from="9075" to="9082"/>
+</rel>
+</span>
+<span id="s1708_n1" from="9164" to="9174">
+<rel label="advmod">
+<span from="9196" to="9201"/>
+</rel>
+</span>
+<span id="s1708_n2" from="9175" to="9179">
+<rel label="cop">
+<span from="9196" to="9201"/>
+</rel>
+</span>
+<span id="s1708_n3" from="9180" to="9190">
+<rel label="nsubj">
+<span from="9196" to="9201"/>
+</rel>
+</span>
+<span id="s1708_n4" from="9191" to="9195">
+<rel label="advmod">
+<span from="9196" to="9201"/>
+</rel>
+</span>
+<span id="s1708_n5" from="9196" to="9201">
+<rel label="root">
+<span from="9164" to="9271"/>
+</rel>
+</span>
+<span id="s1708_n6" from="9202" to="9205">
+<rel label="cc">
+<span from="9261" to="9270"/>
+</rel>
+</span>
+<span id="s1708_n7" from="9206" to="9208">
+<rel label="case">
+<span from="9215" to="9231"/>
+</rel>
+</span>
+<span id="s1708_n8" from="9209" to="9214">
+<rel label="det">
+<span from="9215" to="9231"/>
+</rel>
+</span>
+<span id="s1708_n9" from="9215" to="9231">
+<rel label="obl">
+<span from="9261" to="9270"/>
+</rel>
+</span>
+<span id="s1708_n10" from="9232" to="9235">
+<rel label="det">
+<span from="9236" to="9245"/>
+</rel>
+</span>
+<span id="s1708_n11" from="9236" to="9245">
+<rel label="nmod">
+<span from="9215" to="9231"/>
+</rel>
+</span>
+<span id="s1708_n12" from="9246" to="9249">
+<rel label="cc">
+<span from="9250" to="9260"/>
+</rel>
+</span>
+<span id="s1708_n13" from="9250" to="9260">
+<rel label="conj">
+<span from="9236" to="9245"/>
+</rel>
+</span>
+<span id="s1708_n14" from="9261" to="9270">
+<rel label="conj">
+<span from="9196" to="9201"/>
+</rel>
+</span>
+<span id="s1708_n15" from="9270" to="9271">
+<rel label="punct">
+<span from="9196" to="9201"/>
+</rel>
+</span>
+<span id="s1709_n1" from="9273" to="9283">
+<rel label="root">
+<span from="9273" to="9447"/>
+</rel>
+</span>
+<span id="s1709_n2" from="9285" to="9289">
+<rel label="flat:name">
+<span from="9273" to="9283"/>
+</rel>
+</span>
+<span id="s1709_n3" from="9289" to="9290">
+<rel label="appos">
+<span from="9273" to="9283"/>
+</rel>
+</span>
+<span id="s1709_n4" from="9290" to="9296">
+<rel label="appos">
+<span from="9273" to="9283"/>
+</rel>
+</span>
+<span id="s1709_n5" from="9297" to="9302">
+<rel label="det">
+<span from="9303" to="9322"/>
+</rel>
+</span>
+<span id="s1709_n6" from="9303" to="9322">
+<rel label="nmod">
+<span from="9290" to="9296"/>
+</rel>
+</span>
+<span id="s1709_n7" from="9323" to="9326">
+<rel label="case">
+<span from="9327" to="9346"/>
+</rel>
+</span>
+<span id="s1709_n8" from="9327" to="9346">
+<rel label="nmod">
+<span from="9303" to="9322"/>
+</rel>
+</span>
+<span id="s1709_n9" from="9347" to="9348">
+<rel label="punct">
+<span from="9348" to="9363"/>
+</rel>
+</span>
+<span id="s1709_n10" from="9348" to="9363">
+<rel label="appos">
+<span from="9327" to="9346"/>
+</rel>
+</span>
+<span id="s1709_n11" from="9363" to="9364">
+<rel label="punct">
+<span from="9348" to="9363"/>
+</rel>
+</span>
+<span id="s1709_n12" from="9365" to="9369">
+<rel label="appos">
+<span from="9348" to="9363"/>
+</rel>
+</span>
+<span id="s1709_n13" from="9369" to="9370">
+<rel label="flat">
+<span from="9365" to="9369"/>
+</rel>
+</span>
+<span id="s1709_n14" from="9370" to="9375">
+<rel label="flat">
+<span from="9365" to="9369"/>
+</rel>
+</span>
+<span id="s1709_n15" from="9375" to="9376">
+<rel label="flat">
+<span from="9365" to="9369"/>
+</rel>
+</span>
+<span id="s1709_n16" from="9376" to="9390">
+<rel label="appos">
+<span from="9365" to="9369"/>
+</rel>
+</span>
+<span id="s1709_n17" from="9391" to="9394">
+<rel label="det">
+<span from="9395" to="9403"/>
+</rel>
+</span>
+<span id="s1709_n18" from="9395" to="9403">
+<rel label="nmod">
+<span from="9376" to="9390"/>
+</rel>
+</span>
+<span id="s1709_n19" from="9404" to="9407">
+<rel label="case">
+<span from="9421" to="9429"/>
+</rel>
+</span>
+<span id="s1709_n20" from="9408" to="9411">
+<rel label="cc">
+<span from="9412" to="9419"/>
+</rel>
+</span>
+<span id="s1709_n21" from="9412" to="9419">
+<rel label="nmod">
+<span from="9395" to="9403"/>
+</rel>
+</span>
+<span id="s1709_n22" from="9421" to="9429">
+<rel label="nmod">
+<span from="9395" to="9403"/>
+</rel>
+</span>
+<span id="s1709_n23" from="9432" to="9447">
+<rel label="nmod">
+<span from="9395" to="9403"/>
+</rel>
+</span>
+</spanList>
+</layer>
diff --git a/t/real/corpus/ICCGER/DeReKo-WPD17/B00-26993/ud/morpho.xml b/t/real/corpus/ICCGER/DeReKo-WPD17/B00-26993/ud/morpho.xml
new file mode 100644
index 0000000..b59c646
--- /dev/null
+++ b/t/real/corpus/ICCGER/DeReKo-WPD17/B00-26993/ud/morpho.xml
@@ -0,0 +1,14243 @@
+<?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="ICCGER_DeReKo-WPD17.B00-26993" xmlns="http://ids-mannheim.de/ns/KorAP" version="KorAP-0.4">
+<spanList>
+ <span id="s1645_n1" from="0" to="4">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">DET</f>
+ <f name="lemma">Eine</f>
+ <f name="msd">Case=Nom|Gender=Fem|Number=Sing|PronType=Art</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s1645_n2" from="5" to="15">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">NOUN</f>
+ <f name="lemma">Bran</f>
+ <f name="msd">Gender=Fem|Number=Sing|Person=3</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s1645_n3" from="16" to="19">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">AUX</f>
+ <f name="lemma">sein</f>
+ <f name="msd">Mood=Ind|Number=Sing|Person=3|Tense=Pres|VerbForm=Fin</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s1645_n4" from="20" to="24">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">DET</f>
+ <f name="lemma">eine</f>
+ <f name="msd">Case=Nom|Gender=Fem|Number=Sing|PronType=Art</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s1645_n5" from="25" to="37">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">NOUN</f>
+ <f name="lemma">Schicht</f>
+ <f name="msd">Gender=Fem|Number=Sing|Person=3</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s1645_n6" from="38" to="46">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">ADP</f>
+ <f name="lemma">zwischen</f>
+ <f name="msd">AdpType=Prep|Case=Dat</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s1645_n7" from="47" to="65">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">NOUN</f>
+ <f name="lemma">Zellkompartiment</f>
+ <f name="msd">Case=Dat|Gender=Neut|Number=Plur|Person=3</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s1645_n8" from="65" to="66">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">PUNCT</f>
+ <f name="lemma">.</f>
+ <f name="msd">PunctType=Peri</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s1646_n1" from="67" to="76">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">ADP</f>
+ <f name="lemma">Innerhalb</f>
+ <f name="msd">AdpType=Prep</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s1646_n2" from="77" to="80">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">DET</f>
+ <f name="lemma">der</f>
+ <f name="msd">Case=Gen|Gender=Fem|Number=Sing|PronType=Art</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s1646_n3" from="81" to="86">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">NOUN</f>
+ <f name="lemma">Zelle</f>
+ <f name="msd">Gender=Fem|Number=Sing|Person=3</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s1646_n4" from="87" to="94">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">VERB</f>
+ <f name="lemma">trennen</f>
+ <f name="msd">Mood=Ind|Number=Plur|Person=3|Tense=Pres|VerbForm=Fin</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s1646_n5" from="95" to="110">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">ADJ</f>
+ <f name="lemma">unterschiedlich</f>
+ <f name="msd">Degree=Pos|Variant=Short</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s1646_n6" from="111" to="121">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">ADJ</f>
+ <f name="lemma">aufbauen</f>
+ <f name="msd">Degree=Pos|Number=Plur</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s1646_n7" from="122" to="134">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">NOUN</f>
+ <f name="lemma">Bran</f>
+ <f name="msd">Gender=Fem|Number=Plur|Person=3</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s1646_n8" from="135" to="138">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">DET</f>
+ <f name="lemma">das</f>
+ <f name="msd">Case=Acc|Gender=Neut|Number=Sing|PronType=Art</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s1646_n9" from="139" to="145">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">NOUN</f>
+ <f name="lemma">Inner</f>
+ <f name="msd">Gender=Neut|Number=Sing|Person=3</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s1646_n10" from="146" to="149">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">ADP</f>
+ <f name="lemma">von</f>
+ <f name="msd">AdpType=Prep|Case=Dat</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s1646_n11" from="150" to="160">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">NOUN</f>
+ <f name="lemma">Organell</f>
+ <f name="msd">Case=Dat|Gender=Neut|Number=Plur|Person=3</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s1646_n12" from="161" to="165">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">CCONJ</f>
+ <f name="lemma">oder</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s1646_n13" from="166" to="174">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">NOUN</f>
+ <f name="lemma">Vakuole</f>
+ <f name="msd">Gender=Fem|Number=Plur|Person=3</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s1646_n14" from="175" to="178">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">ADP</f>
+ <f name="lemma">vom</f>
+ <f name="msd">AdpType=Prep|Case=Dat</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s1646_n15" from="179" to="189">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">NOUN</f>
+ <f name="lemma">Cytoplasma</f>
+ <f name="msd">Gender=Neut|Number=Sing|Person=3</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s1646_n16" from="189" to="190">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">PUNCT</f>
+ <f name="lemma">.</f>
+ <f name="msd">PunctType=Peri</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s1647_n1" from="191" to="195">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">DET</f>
+ <f name="lemma">Eine</f>
+ <f name="msd">Case=Nom|Gender=Fem|Number=Sing|PronType=Art</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s1647_n2" from="196" to="206">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">NOUN</f>
+ <f name="lemma">Bran</f>
+ <f name="msd">Gender=Fem|Number=Sing|Person=3</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s1647_n3" from="207" to="210">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">AUX</f>
+ <f name="lemma">haben</f>
+ <f name="msd">Mood=Ind|Number=Sing|Person=3|Tense=Pres|VerbForm=Fin</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s1647_n4" from="211" to="216">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">ADP</f>
+ <f name="lemma">durch</f>
+ <f name="msd">AdpType=Prep|Case=Acc</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s1647_n5" from="217" to="235">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">NOUN</f>
+ <f name="lemma">Komponente</f>
+ <f name="msd">Gender=Fem|Number=Plur|Person=3</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s1647_n6" from="236" to="240">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">DET</f>
+ <f name="lemma">eine</f>
+ <f name="msd">Case=Acc|Gender=Fem|Number=Sing|PronType=Art</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s1647_n7" from="241" to="247">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">ADJ</f>
+ <f name="lemma">aktiv</f>
+ <f name="msd">Degree=Pos|Gender=Fem|Number=Sing</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s1647_n8" from="248" to="253">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">NOUN</f>
+ <f name="lemma">Rolle</f>
+ <f name="msd">Gender=Fem|Number=Sing|Person=3</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s1647_n9" from="254" to="258">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">ADP</f>
+ <f name="lemma">beim</f>
+ <f name="msd">AdpType=Prep|Case=Dat</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s1647_n10" from="259" to="269">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">ADJ</f>
+ <f name="lemma">selektiven</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s1647_n11" from="270" to="279">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">NOUN</f>
+ <f name="lemma">Transport</f>
+ <f name="msd">Gender=Masc|Number=Sing|Person=3</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s1647_n12" from="280" to="283">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">ADP</f>
+ <f name="lemma">von</f>
+ <f name="msd">AdpType=Prep|Case=Dat</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s1647_n13" from="284" to="293">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">NOUN</f>
+ <f name="lemma">Molekül</f>
+ <f name="msd">Case=Dat|Gender=Neut|Number=Plur|Person=3</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s1647_n14" from="294" to="297">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">CCONJ</f>
+ <f name="lemma">und</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s1647_n15" from="298" to="301">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">DET</f>
+ <f name="lemma">der</f>
+ <f name="msd">Case=Dat|Gender=Fem|Number=Sing|PronType=Art</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s1647_n16" from="302" to="314">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">NOUN</f>
+ <f name="lemma">Übermittlung</f>
+ <f name="msd">Gender=Fem|Number=Sing|Person=3</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s1647_n17" from="315" to="318">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">ADP</f>
+ <f name="lemma">von</f>
+ <f name="msd">AdpType=Prep|Case=Dat</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s1647_n18" from="319" to="332">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">NOUN</f>
+ <f name="lemma">Information</f>
+ <f name="msd">Gender=Fem|Number=Plur|Person=3</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s1647_n19" from="333" to="341">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">ADP</f>
+ <f name="lemma">zwischen</f>
+ <f name="msd">AdpType=Prep|Case=Dat</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s1647_n20" from="342" to="345">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">DET</f>
+ <f name="lemma">den</f>
+ <f name="msd">Case=Dat|Number=Plur|PronType=Art</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s1647_n21" from="346" to="352">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">ADJ</f>
+ <f name="lemma">beide</f>
+ <f name="msd">Case=Dat|Number=Plur|Person=3</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s1647_n22" from="353" to="367">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">NOUN</f>
+ <f name="lemma">Kompartiment</f>
+ <f name="msd">Case=Dat|Gender=Neut|Number=Plur|Person=3</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s1647_n23" from="367" to="368">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">PUNCT</f>
+ <f name="lemma">,</f>
+ <f name="msd">PunctType=Comm</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s1647_n24" from="369" to="377">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">ADP</f>
+ <f name="lemma">zwischen</f>
+ <f name="msd">AdpType=Prep|Case=Dat</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s1647_n25" from="378" to="383">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">PRON</f>
+ <f name="lemma">denen</f>
+ <f name="msd">Case=Dat|Number=Plur|Person=3|PronType=Rel</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s1647_n26" from="384" to="388">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">PRON</f>
+ <f name="lemma">sich</f>
+ <f name="msd">Case=Acc|Person=3|PronType=Prs|Reflex=Yes</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s1647_n27" from="389" to="394">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">DET</f>
+ <f name="lemma">dies</f>
+ <f name="msd">Case=Nom|Gender=Fem|Number=Sing|PronType=Dem</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s1647_n28" from="395" to="413">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">NOUN</f>
+ <f name="lemma">Anbefindet</f>
+ <f name="msd">Gender=Fem|Number=Sing|Person=3</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s1647_n29" from="413" to="414">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">PUNCT</f>
+ <f name="lemma">.</f>
+ <f name="msd">PunctType=Peri</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s1648_n1" from="416" to="429">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">NOUN</f>
+ <f name="lemma">unknown</f>
+ <f name="msd">Person=3</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s1648_n2" from="431" to="433">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">SCONJ</f>
+ <f name="lemma">Da</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s1648_n3" from="434" to="437">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">DET</f>
+ <f name="lemma">die</f>
+ <f name="msd">Case=Nom|Gender=Fem|Number=Sing|PronType=Art</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s1648_n4" from="438" to="448">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">NOUN</f>
+ <f name="lemma">Bran</f>
+ <f name="msd">Gender=Fem|Number=Sing|Person=3</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s1648_n5" from="449" to="452">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">ADP</f>
+ <f name="lemma">vor</f>
+ <f name="msd">AdpType=Prep|Case=Dat</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s1648_n6" from="453" to="458">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">PRON</f>
+ <f name="lemma">all</f>
+ <f name="msd">Case=Dat|Gender=Neut|Number=Sing|Person=3|PronType=Ind,Neg,Tot</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s1648_n7" from="459" to="463">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">DET</f>
+ <f name="lemma">eine</f>
+ <f name="msd">Case=Acc|Gender=Fem|Number=Sing|PronType=Art</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s1648_n8" from="464" to="484">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">NOUN</f>
+ <f name="lemma">Zwischen</f>
+ <f name="msd">Gender=Fem|Number=Sing|Person=3</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s1648_n9" from="485" to="498">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">ADJ</f>
+ <f name="lemma">verscheiden</f>
+ <f name="msd">Case=Dat|Degree=Pos|Number=Plur</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s1648_n10" from="499" to="508">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">NOUN</f>
+ <f name="lemma">Bereich</f>
+ <f name="msd">Case=Dat|Gender=Masc|Number=Plur|Person=3</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s1648_n11" from="509" to="518">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">VERB</f>
+ <f name="lemma">darstellen</f>
+ <f name="msd">Mood=Ind|Number=Sing|Person=3|Tense=Pres|VerbForm=Fin</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s1648_n12" from="518" to="519">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">PUNCT</f>
+ <f name="lemma">,</f>
+ <f name="msd">PunctType=Comm</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s1648_n13" from="520" to="523">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">AUX</f>
+ <f name="lemma">sein</f>
+ <f name="msd">Mood=Ind|Number=Sing|Person=3|Tense=Pres|VerbForm=Fin</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s1648_n14" from="524" to="527">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">PRON</f>
+ <f name="lemma">sie</f>
+ <f name="msd">Case=Nom|Gender=Fem|Number=Sing|Person=3|PronType=Prs</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s1648_n15" from="528" to="531">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">ADP</f>
+ <f name="lemma">für</f>
+ <f name="msd">AdpType=Prep|Case=Acc</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s1648_n16" from="532" to="535">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">DET</f>
+ <f name="lemma">die</f>
+ <f name="msd">Case=Acc|Number=Plur|PronType=Art</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s1648_n17" from="536" to="551">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">PROPN</f>
+ <f name="lemma">MeistenMOleküle</f>
+ <f name="msd">Person=3</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s1648_n18" from="552" to="565">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">ADJ</f>
+ <f name="lemma">undurchlässig</f>
+ <f name="msd">Degree=Pos|Variant=Short</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s1648_n19" from="565" to="566">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">PUNCT</f>
+ <f name="lemma">.</f>
+ <f name="msd">PunctType=Peri</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s1649_n1" from="567" to="575">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">ADJ</f>
+ <f name="lemma">klein</f>
+ <f name="msd">Degree=Cmp|Number=Plur</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s1649_n2" from="576" to="585">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">ADJ</f>
+ <f name="lemma">lipophile</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s1649_n3" from="586" to="594">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">NOUN</f>
+ <f name="lemma">Molekül</f>
+ <f name="msd">Gender=Neut|Number=Plur|Person=3</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s1649_n4" from="595" to="601">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">AUX</f>
+ <f name="lemma">können</f>
+ <f name="msd">Mood=Ind|Number=Plur|Person=3|Tense=Pres|VerbForm=Fin|VerbType=Mod</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s1649_n5" from="602" to="606">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">ADJ</f>
+ <f name="lemma">frei</f>
+ <f name="msd">Degree=Pos|Variant=Short</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s1649_n6" from="607" to="612">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">ADP</f>
+ <f name="lemma">durch</f>
+ <f name="msd">AdpType=Prep|Case=Acc</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s1649_n7" from="613" to="616">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">DET</f>
+ <f name="lemma">die</f>
+ <f name="msd">Case=Acc|Gender=Fem|Number=Sing|PronType=Art</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s1649_n8" from="617" to="635">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">NOUN</f>
+ <f name="lemma">Schicht</f>
+ <f name="msd">Gender=Fem|Number=Sing|Person=3</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s1649_n9" from="636" to="639">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">DET</f>
+ <f name="lemma">der</f>
+ <f name="msd">Case=Gen|Gender=Fem|Number=Sing|PronType=Art</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s1649_n10" from="640" to="647">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">NOUN</f>
+ <f name="lemma">Membran</f>
+ <f name="msd">Gender=Fem|Number=Sing|Person=3</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s1649_n11" from="648" to="660">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">VERB</f>
+ <f name="lemma">diffundieren</f>
+ <f name="msd">VerbForm=Inf</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s1649_n12" from="660" to="661">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">PUNCT</f>
+ <f name="lemma">,</f>
+ <f name="msd">PunctType=Comm</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s1649_n13" from="662" to="665">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">CCONJ</f>
+ <f name="lemma">wie</f>
+ <f name="msd">ConjType=Comp</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s1649_n14" from="666" to="669">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">ADP</f>
+ <f name="lemma">zum</f>
+ <f name="msd">AdpType=Prep|Case=Dat</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s1649_n15" from="670" to="678">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">NOUN</f>
+ <f name="lemma">Beispiel</f>
+ <f name="msd">Gender=Neut|Number=Sing|Person=3</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s1649_n16" from="679" to="691">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">NOUN</f>
+ <f name="lemma">Oxid</f>
+ <f name="msd">Gender=Neut|Number=Sing|Person=3</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s1649_n17" from="691" to="692">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">PUNCT</f>
+ <f name="lemma">,</f>
+ <f name="msd">PunctType=Comm</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s1649_n18" from="693" to="701">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">NOUN</f>
+ <f name="lemma">Alkohol</f>
+ <f name="msd">Gender=Neut|Number=Plur|Person=3</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s1649_n19" from="702" to="705">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">CCONJ</f>
+ <f name="lemma">und</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s1649_n20" from="706" to="715">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">NOUN</f>
+ <f name="lemma">Stoff</f>
+ <f name="msd">Gender=Masc|Number=Sing|Person=3</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s1649_n21" from="715" to="716">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">PUNCT</f>
+ <f name="lemma">.</f>
+ <f name="msd">PunctType=Peri</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s1650_n1" from="717" to="719">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">SCONJ</f>
+ <f name="lemma">Um</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s1650_n2" from="720" to="723">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">DET</f>
+ <f name="lemma">die</f>
+ <f name="msd">Case=Acc|Gender=Fem|Number=Sing|PronType=Art</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s1650_n3" from="724" to="739">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">NOUN</f>
+ <f name="lemma">Durchlässigkeit</f>
+ <f name="msd">Gender=Fem|Number=Sing|Person=3</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s1650_n4" from="740" to="743">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">DET</f>
+ <f name="lemma">der</f>
+ <f name="msd">Case=Gen|Gender=Fem|Number=Sing|PronType=Art</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s1650_n5" from="744" to="751">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">NOUN</f>
+ <f name="lemma">Membran</f>
+ <f name="msd">Gender=Fem|Number=Sing|Person=3</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s1650_n6" from="752" to="755">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">ADP</f>
+ <f name="lemma">für</f>
+ <f name="msd">AdpType=Prep|Case=Acc</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s1650_n7" from="756" to="765">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">ADJ</f>
+ <f name="lemma">lipophobe</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s1650_n8" from="766" to="774">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">NOUN</f>
+ <f name="lemma">Teilchen</f>
+ <f name="msd">Gender=Neut|Number=Sing|Person=3</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s1650_n9" from="775" to="778">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">CCONJ</f>
+ <f name="lemma">wie</f>
+ <f name="msd">ConjType=Comp</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s1650_n10" from="779" to="785">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">NOUN</f>
+ <f name="lemma">Wasser</f>
+ <f name="msd">Gender=Neut|Number=Sing|Person=3</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s1650_n11" from="785" to="786">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">PUNCT</f>
+ <f name="lemma">,</f>
+ <f name="msd">PunctType=Comm</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s1650_n12" from="787" to="791">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">CCONJ</f>
+ <f name="lemma">oder</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s1650_n13" from="792" to="797">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">ADJ</f>
+ <f name="lemma">groß</f>
+ <f name="msd">Degree=Pos|Number=Plur</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s1650_n14" from="798" to="806">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">NOUN</f>
+ <f name="lemma">Teilchen</f>
+ <f name="msd">Gender=Neut|Number=Plur|Person=3</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s1650_n15" from="807" to="810">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">CCONJ</f>
+ <f name="lemma">wie</f>
+ <f name="msd">ConjType=Comp</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s1650_n16" from="811" to="816">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">NOUN</f>
+ <f name="lemma">Ion</f>
+ <f name="msd">Gender=Masc|Number=Plur|Person=3</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s1650_n17" from="817" to="821">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">CCONJ</f>
+ <f name="lemma">oder</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s1650_n18" from="822" to="836">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">NOUN</f>
+ <f name="lemma">Molekül</f>
+ <f name="msd">Gender=Neut|Number=Plur|Person=3</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s1650_n19" from="837" to="839">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">PART</f>
+ <f name="lemma">zu</f>
+ <f name="msd">PartType=Inf</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s1650_n20" from="840" to="851">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">VERB</f>
+ <f name="lemma">ermöglichen</f>
+ <f name="msd">VerbForm=Inf</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s1650_n21" from="851" to="852">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">PUNCT</f>
+ <f name="lemma">,</f>
+ <f name="msd">PunctType=Comm</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s1650_n22" from="853" to="857">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">AUX</f>
+ <f name="lemma">sein</f>
+ <f name="msd">Mood=Ind|Number=Plur|Person=3|Tense=Pres|VerbForm=Fin</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s1650_n23" from="858" to="860">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">ADP</f>
+ <f name="lemma">in</f>
+ <f name="msd">AdpType=Prep|Case=Acc</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s1650_n24" from="861" to="864">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">DET</f>
+ <f name="lemma">die</f>
+ <f name="msd">Case=Acc|Gender=Fem|Number=Sing|PronType=Art</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s1650_n25" from="865" to="872">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">NOUN</f>
+ <f name="lemma">Membran</f>
+ <f name="msd">Gender=Fem|Number=Sing|Person=3</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s1650_n26" from="873" to="885">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">ADJ</f>
+ <f name="lemma">verscheiden</f>
+ <f name="msd">Degree=Pos|Number=Plur</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s1650_n27" from="886" to="903">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">NOUN</f>
+ <f name="lemma">Protein</f>
+ <f name="msd">Gender=Masc|Number=Plur|Person=3</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s1650_n28" from="904" to="915">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">VERB</f>
+ <f name="lemma">einlagern</f>
+ <f name="msd">Aspect=Perf|VerbForm=Part</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s1650_n29" from="915" to="916">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">PUNCT</f>
+ <f name="lemma">,</f>
+ <f name="msd">PunctType=Comm</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s1650_n30" from="917" to="920">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">PRON</f>
+ <f name="lemma">die</f>
+ <f name="msd">Case=Nom|Number=Plur|Person=3|PronType=Rel</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s1650_n31" from="921" to="924">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">ADP</f>
+ <f name="lemma">für</f>
+ <f name="msd">AdpType=Prep|Case=Acc</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s1650_n32" from="925" to="937">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">PROPN</f>
+ <f name="lemma">DentRansport</f>
+ <f name="msd">Person=3</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s1650_n33" from="938" to="948">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">ADJ</f>
+ <f name="lemma">bestimmen</f>
+ <f name="msd">Case=Gen|Degree=Pos|Number=Plur</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s1650_n34" from="949" to="955">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">NOUN</f>
+ <f name="lemma">Stoff</f>
+ <f name="msd">Gender=Masc|Number=Plur|Person=3</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s1650_n35" from="956" to="965">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">ADJ</f>
+ <f name="lemma">zuständig</f>
+ <f name="msd">Degree=Pos|Variant=Short</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s1650_n36" from="966" to="970">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">AUX</f>
+ <f name="lemma">sein</f>
+ <f name="msd">Mood=Ind|Number=Plur|Person=3|Tense=Pres|VerbForm=Fin</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s1650_n37" from="970" to="971">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">PUNCT</f>
+ <f name="lemma">.</f>
+ <f name="msd">PunctType=Peri</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s1651_n1" from="972" to="979">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">ADV</f>
+ <f name="lemma">Deshalb</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s1651_n2" from="980" to="987">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">VERB</f>
+ <f name="lemma">sprechen</f>
+ <f name="msd">Mood=Ind|Number=Sing|Person=3|Tense=Pres|VerbForm=Fin</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s1651_n3" from="988" to="991">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">PRON</f>
+ <f name="lemma">man</f>
+ <f name="msd">Case=Nom|Number=Sing|Person=3|PronType=Ind,Neg,Tot</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s1651_n4" from="992" to="995">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">ADP</f>
+ <f name="lemma">von</f>
+ <f name="msd">AdpType=Prep|Case=Dat</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s1651_n5" from="996" to="1006">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">ADJ</f>
+ <f name="lemma">selektiver</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s1651_n6" from="1007" to="1020">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">NOUN</f>
+ <f name="lemma">unknown</f>
+ <f name="msd">Person=3</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s1651_n7" from="1022" to="1023">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">PUNCT</f>
+ <f name="lemma">.</f>
+ <f name="msd">PunctType=Peri</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s1652_n1" from="1025" to="1031">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">NOUN</f>
+ <f name="lemma">Aufbau</f>
+ <f name="msd">Gender=Masc|Number=Sing|Person=3</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s1652_n2" from="1033" to="1037">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">DET</f>
+ <f name="lemma">Eine</f>
+ <f name="msd">Case=Nom|Gender=Fem|Number=Sing|PronType=Art</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s1652_n3" from="1038" to="1048">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">NOUN</f>
+ <f name="lemma">Bran</f>
+ <f name="msd">Gender=Fem|Number=Sing|Person=3</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s1652_n4" from="1049" to="1052">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">AUX</f>
+ <f name="lemma">sein</f>
+ <f name="msd">Mood=Ind|Number=Sing|Person=3|Tense=Pres|VerbForm=Fin</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s1652_n5" from="1053" to="1058">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">ADV</f>
+ <f name="lemma">stets</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s1652_n6" from="1059" to="1070">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">ADJ</f>
+ <f name="lemma">topologisch</f>
+ <f name="msd">Degree=Pos|Variant=Short</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s1652_n7" from="1071" to="1082">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">VERB</f>
+ <f name="lemma">schließen</f>
+ <f name="msd">Aspect=Perf|VerbForm=Part</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s1652_n8" from="1083" to="1086">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">CCONJ</f>
+ <f name="lemma">und</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s1652_n9" from="1087" to="1102">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">ADJ</f>
+ <f name="lemma">umschließteinen</f>
+ <f name="msd">Mood=Ind|Number=Plur|Person=3|Tense=Pres|VerbForm=Fin</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s1652_n10" from="1103" to="1107">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">NOUN</f>
+ <f name="lemma">Raum</f>
+ <f name="msd">Gender=Masc|Number=Sing|Person=3</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s1652_n11" from="1107" to="1108">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">PUNCT</f>
+ <f name="lemma">.</f>
+ <f name="msd">PunctType=Peri</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s1653_n1" from="1109" to="1114">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">PART</f>
+ <f name="lemma">Nicht</f>
+ <f name="msd">Polarity=Neg</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s1653_n2" from="1115" to="1117">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">ADP</f>
+ <f name="lemma">in</f>
+ <f name="msd">AdpType=Prep|Case=Acc</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s1653_n3" from="1118" to="1122">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">PRON</f>
+ <f name="lemma">sich</f>
+ <f name="msd">Case=Acc|Person=3|PronType=Prs|Reflex=Yes</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s1653_n4" from="1123" to="1135">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">ADJ</f>
+ <f name="lemma">schließen</f>
+ <f name="msd">Degree=Pos|Number=Plur</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s1653_n5" from="1136" to="1145">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">NOUN</f>
+ <f name="lemma">Membran</f>
+ <f name="msd">Gender=Fem|Number=Plur|Person=3</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s1653_n6" from="1146" to="1152">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">VERB</f>
+ <f name="lemma">kommen</f>
+ <f name="msd">Mood=Ind|Number=Plur|Person=3|Tense=Pres|VerbForm=Fin</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s1653_n7" from="1153" to="1155">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">ADP</f>
+ <f name="lemma">in</f>
+ <f name="msd">AdpType=Prep|Case=Dat</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s1653_n8" from="1156" to="1164">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">ADJ</f>
+ <f name="lemma">intakt</f>
+ <f name="msd">Case=Dat|Degree=Pos|Number=Plur</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s1653_n9" from="1165" to="1176">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">NOUN</f>
+ <f name="lemma">Zellennicht</f>
+ <f name="msd">Gender=Fem|Number=Sing|Person=3</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s1653_n10" from="1177" to="1180">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">ADP</f>
+ <f name="lemma">vor</f>
+ <f name="msd">PartType=Vbp</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s1653_n11" from="1180" to="1181">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">PUNCT</f>
+ <f name="lemma">.</f>
+ <f name="msd">PunctType=Peri</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s1654_n1" from="1182" to="1194">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">NOUN</f>
+ <f name="lemma">Bran</f>
+ <f name="msd">Gender=Fem|Number=Plur|Person=3</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s1654_n2" from="1195" to="1199">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">AUX</f>
+ <f name="lemma">sein</f>
+ <f name="msd">Mood=Ind|Number=Plur|Person=3|Tense=Pres|VerbForm=Fin</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s1654_n3" from="1200" to="1212">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">ADJ</f>
+ <f name="lemma">asymmetrisch</f>
+ <f name="msd">Degree=Pos|Variant=Short</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s1654_n4" from="1212" to="1213">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">PUNCT</f>
+ <f name="lemma">:</f>
+ <f name="msd">PunctType=Peri</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s1654_n5" from="1214" to="1217">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">PRON</f>
+ <f name="lemma">sie</f>
+ <f name="msd">Case=Nom|Number=Plur|Person=3|PronType=Prs</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s1654_n6" from="1218" to="1223">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">AUX</f>
+ <f name="lemma">haben</f>
+ <f name="msd">Mood=Ind|Number=Plur|Person=3|Tense=Pres|VerbForm=Fin</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s1654_n7" from="1224" to="1228">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">DET</f>
+ <f name="lemma">eine</f>
+ <f name="msd">Case=Acc|Gender=Fem|Number=Sing|PronType=Art</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s1654_n8" from="1229" to="1232">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">DET</f>
+ <f name="lemma">dem</f>
+ <f name="msd">Case=Dat|Gender=Neut|Number=Sing|PronType=Art</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s1654_n9" from="1233" to="1243">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">NOUN</f>
+ <f name="lemma">Cytoplasma</f>
+ <f name="msd">Gender=Neut|Number=Sing|Person=3</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s1654_n10" from="1244" to="1254">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">ADJ</f>
+ <f name="lemma">zuwenden</f>
+ <f name="msd">Degree=Pos|Gender=Fem|Number=Sing</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s1654_n11" from="1255" to="1267">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">ADJ</f>
+ <f name="lemma">plasmatische</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s1654_n12" from="1268" to="1273">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">NOUN</f>
+ <f name="lemma">Seite</f>
+ <f name="msd">Gender=Fem|Number=Sing|Person=3</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s1654_n13" from="1274" to="1275">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">PUNCT</f>
+ <f name="lemma">(</f>
+ <f name="msd">PunctType=Brck</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s1654_n14" from="1275" to="1282">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">NOUN</f>
+ <f name="lemma">Seite</f>
+ <f name="msd">Gender=Fem|Number=Sing|Person=3</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s1654_n15" from="1282" to="1283">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">PUNCT</f>
+ <f name="lemma">)</f>
+ <f name="msd">PunctType=Brck</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s1654_n16" from="1284" to="1287">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">CCONJ</f>
+ <f name="lemma">und</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s1654_n17" from="1288" to="1292">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">DET</f>
+ <f name="lemma">eine</f>
+ <f name="msd">Case=Acc|Gender=Fem|Number=Sing|PronType=Art</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s1654_n18" from="1293" to="1310">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">ADJ</f>
+ <f name="lemma">extraplasmatische</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s1654_n19" from="1311" to="1316">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">NOUN</f>
+ <f name="lemma">Seite</f>
+ <f name="msd">Gender=Fem|Number=Sing|Person=3</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s1654_n20" from="1317" to="1318">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">PUNCT</f>
+ <f name="lemma">(</f>
+ <f name="msd">PunctType=Brck</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s1654_n21" from="1318" to="1325">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">NOUN</f>
+ <f name="lemma">Seite</f>
+ <f name="msd">Gender=Fem|Number=Sing|Person=3</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s1654_n22" from="1325" to="1326">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">PUNCT</f>
+ <f name="lemma">)</f>
+ <f name="msd">PunctType=Brck</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s1654_n23" from="1326" to="1327">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">PUNCT</f>
+ <f name="lemma">.</f>
+ <f name="msd">PunctType=Peri</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s1655_n1" from="1328" to="1340">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">NOUN</f>
+ <f name="lemma">Bran</f>
+ <f name="msd">Gender=Fem|Number=Plur|Person=3</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s1655_n2" from="1341" to="1349">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">VERB</f>
+ <f name="lemma">bestehen</f>
+ <f name="msd">Mood=Ind|Number=Plur|Person=3|Tense=Pres|VerbForm=Fin</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s1655_n3" from="1350" to="1353">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">ADP</f>
+ <f name="lemma">aus</f>
+ <f name="msd">AdpType=Prep|Case=Dat</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s1655_n4" from="1354" to="1361">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">NOUN</f>
+ <f name="lemma">Lipid</f>
+ <f name="msd">Case=Dat|Gender=Masc|Number=Plur|Person=3</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s1655_n5" from="1362" to="1365">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">CCONJ</f>
+ <f name="lemma">und</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s1655_n6" from="1366" to="1375">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">NOUN</f>
+ <f name="lemma">Protein</f>
+ <f name="msd">Case=Dat|Gender=Neut|Number=Plur|Person=3</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s1655_n7" from="1375" to="1376">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">PUNCT</f>
+ <f name="lemma">.</f>
+ <f name="msd">PunctType=Peri</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s1656_n1" from="1377" to="1379">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">ADP</f>
+ <f name="lemma">An</f>
+ <f name="msd">AdpType=Prep|Case=Acc</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s1656_n2" from="1380" to="1383">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">DET</f>
+ <f name="lemma">die</f>
+ <f name="msd">Case=Acc|Number=Plur|PronType=Art</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s1656_n3" from="1384" to="1392">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">NOUN</f>
+ <f name="lemma">Protein</f>
+ <f name="msd">Gender=Neut|Number=Plur|Person=3</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s1656_n4" from="1393" to="1399">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">AUX</f>
+ <f name="lemma">können</f>
+ <f name="msd">Mood=Ind|Number=Plur|Person=3|Tense=Pres|VerbForm=Fin|VerbType=Mod</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s1656_n5" from="1400" to="1418">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">NOUN</f>
+ <f name="lemma">Kette</f>
+ <f name="msd">Gender=Fem|Number=Plur|Person=3</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s1656_n6" from="1419" to="1427">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">VERB</f>
+ <f name="lemma">knüpfen</f>
+ <f name="msd">Aspect=Perf|VerbForm=Part</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s1656_n7" from="1428" to="1432">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">AUX</f>
+ <f name="lemma">sein</f>
+ <f name="msd">VerbForm=Inf</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s1656_n8" from="1432" to="1433">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">PUNCT</f>
+ <f name="lemma">.</f>
+ <f name="msd">PunctType=Peri</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s1657_n1" from="1434" to="1437">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">DET</f>
+ <f name="lemma">Der</f>
+ <f name="msd">Case=Nom|Gender=Masc|Number=Sing|PronType=Art</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s1657_n2" from="1438" to="1449">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">NOUN</f>
+ <f name="lemma">Anteil</f>
+ <f name="msd">Gender=Masc|Number=Sing|Person=3</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s1657_n3" from="1450" to="1456">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">VERB</f>
+ <f name="lemma">bilden</f>
+ <f name="msd">Mood=Ind|Number=Sing|Person=3|Tense=Pres|VerbForm=Fin</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s1657_n4" from="1457" to="1460">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">CCONJ</f>
+ <f name="lemma">als</f>
+ <f name="msd">ConjType=Comp</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s1657_n5" from="1461" to="1479">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">NOUN</f>
+ <f name="lemma">Schicht</f>
+ <f name="msd">Gender=Fem|Number=Sing|Person=3</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s1657_n6" from="1480" to="1483">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">DET</f>
+ <f name="lemma">die</f>
+ <f name="msd">Case=Acc|Gender=Fem|Number=Sing|PronType=Art</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s1657_n7" from="1484" to="1497">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">NOUN</f>
+ <f name="lemma">Substanz</f>
+ <f name="msd">Gender=Fem|Number=Sing|Person=3</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s1657_n8" from="1498" to="1501">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">DET</f>
+ <f name="lemma">der</f>
+ <f name="msd">Case=Gen|Gender=Fem|Number=Sing|PronType=Art</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s1657_n9" from="1502" to="1509">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">NOUN</f>
+ <f name="lemma">Membran</f>
+ <f name="msd">Gender=Fem|Number=Sing|Person=3</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s1657_n10" from="1510" to="1513">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">CCONJ</f>
+ <f name="lemma">und</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s1657_n11" from="1514" to="1517">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">AUX</f>
+ <f name="lemma">sein</f>
+ <f name="msd">Mood=Ind|Number=Sing|Person=3|Tense=Pres|VerbForm=Fin</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s1657_n12" from="1518" to="1521">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">ADP</f>
+ <f name="lemma">für</f>
+ <f name="msd">AdpType=Prep|Case=Acc</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s1657_n13" from="1522" to="1526">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">PRON</f>
+ <f name="lemma">sein</f>
+ <f name="msd">Case=Acc|Number=Plur|Person=3|Poss=Yes|PronType=Prs</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s1657_n14" from="1527" to="1537">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">ADJ</f>
+ <f name="lemma">besondere</f>
+ <f name="msd">Degree=Pos|Number=Plur</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s1657_n15" from="1538" to="1555">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">ADJ</f>
+ <f name="lemma">physikochemischen</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s1657_n16" from="1556" to="1583">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">ADJ</f>
+ <f name="lemma">Eigenschaftenverantwortlich</f>
+ <f name="msd">Degree=Pos|Variant=Short</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s1657_n17" from="1583" to="1584">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">PUNCT</f>
+ <f name="lemma">.</f>
+ <f name="msd">PunctType=Peri</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s1658_n1" from="1585" to="1597">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">ADV</f>
+ <f name="lemma">Insbesondere</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s1658_n2" from="1598" to="1603">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">VERB</f>
+ <f name="lemma">wirken</f>
+ <f name="msd">Mood=Ind|Number=Sing|Person=3|Tense=Pres|VerbForm=Fin</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s1658_n3" from="1604" to="1609">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">DET</f>
+ <f name="lemma">dies</f>
+ <f name="msd">Case=Nom|Gender=Fem|Number=Sing|PronType=Dem</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s1658_n4" from="1610" to="1623">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">NOUN</f>
+ <f name="lemma">Schicht</f>
+ <f name="msd">Gender=Fem|Number=Sing|Person=3</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s1658_n5" from="1624" to="1627">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">CCONJ</f>
+ <f name="lemma">als</f>
+ <f name="msd">ConjType=Comp</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s1658_n6" from="1628" to="1647">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">NOUN</f>
+ <f name="lemma">Schicht</f>
+ <f name="msd">Gender=Fem|Number=Sing|Person=3</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s1658_n7" from="1647" to="1648">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">PUNCT</f>
+ <f name="lemma">.</f>
+ <f name="msd">PunctType=Peri</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s1659_n1" from="1649" to="1657">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">NOUN</f>
+ <f name="lemma">Oid</f>
+ <f name="msd">Gender=Masc|Number=Plur|Person=3</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s1659_n2" from="1658" to="1661">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">CCONJ</f>
+ <f name="lemma">wie</f>
+ <f name="msd">ConjType=Comp</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s1659_n3" from="1662" to="1665">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">DET</f>
+ <f name="lemma">das</f>
+ <f name="msd">Case=Acc|Gender=Neut|Number=Sing|PronType=Art</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s1659_n4" from="1666" to="1677">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">NOUN</f>
+ <f name="lemma">Cholesterin</f>
+ <f name="msd">Gender=Neut|Number=Sing|Person=3</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s1659_n5" from="1678" to="1683">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">VERB</f>
+ <f name="lemma">gehen</f>
+ <f name="msd">Mood=Ind|Number=Plur|Person=3|Tense=Pres|VerbForm=Fin</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s1659_n6" from="1684" to="1688">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">DET</f>
+ <f name="lemma">eine</f>
+ <f name="msd">Case=Acc|Gender=Fem|Number=Sing|PronType=Art</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s1659_n7" from="1689" to="1699">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">ADJ</f>
+ <f name="lemma">hydrophobe</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s1659_n8" from="1700" to="1714">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">NOUN</f>
+ <f name="lemma">Wirkung</f>
+ <f name="msd">Gender=Fem|Number=Sing|Person=3</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s1659_n9" from="1715" to="1718">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">ADP</f>
+ <f name="lemma">mit</f>
+ <f name="msd">AdpType=Prep|Case=Dat</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s1659_n10" from="1719" to="1729">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">PROPN</f>
+ <f name="lemma">DenLipiden</f>
+ <f name="msd">Person=3</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s1659_n11" from="1730" to="1733">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">ADP</f>
+ <f name="lemma">ein</f>
+ <f name="msd">PartType=Vbp</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s1659_n12" from="1734" to="1737">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">CCONJ</f>
+ <f name="lemma">und</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s1659_n13" from="1738" to="1749">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">VERB</f>
+ <f name="lemma">verfestigen</f>
+ <f name="msd">Mood=Ind|Number=Plur|Person=3|Tense=Pres|VerbForm=Fin</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s1659_n14" from="1749" to="1750">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">PUNCT</f>
+ <f name="lemma">,</f>
+ <f name="msd">PunctType=Comm</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s1659_n15" from="1751" to="1754">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">ADP</f>
+ <f name="lemma">bei</f>
+ <f name="msd">AdpType=Prep|Case=Dat</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s1659_n16" from="1755" to="1760">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">ADJ</f>
+ <f name="lemma">hoch</f>
+ <f name="msd">Case=Dat|Degree=Pos|Number=Plur</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s1659_n17" from="1761" to="1776">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">NOUN</f>
+ <f name="lemma">Konzentration</f>
+ <f name="msd">Gender=Fem|Number=Plur|Person=3</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s1659_n18" from="1777" to="1779">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">ADP</f>
+ <f name="lemma">in</f>
+ <f name="msd">AdpType=Prep|Case=Dat</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s1659_n19" from="1780" to="1783">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">DET</f>
+ <f name="lemma">der</f>
+ <f name="msd">Case=Dat|Gender=Fem|Number=Sing|PronType=Art</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s1659_n20" from="1784" to="1794">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">NOUN</f>
+ <f name="lemma">Bran</f>
+ <f name="msd">Gender=Fem|Number=Sing|Person=3</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s1659_n21" from="1794" to="1795">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">PUNCT</f>
+ <f name="lemma">,</f>
+ <f name="msd">PunctType=Comm</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s1659_n22" from="1795" to="1798">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">DET</f>
+ <f name="lemma">die</f>
+ <f name="msd">Case=Acc|Gender=Fem|Number=Sing|PronType=Art</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s1659_n23" from="1799" to="1808">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">ADV</f>
+ <f name="lemma">ansonsten</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s1659_n24" from="1809" to="1817">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">ADJ</f>
+ <f name="lemma">flexibel</f>
+ <f name="msd">Degree=Pos|Gender=Fem|Number=Sing</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s1659_n25" from="1818" to="1828">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">NOUN</f>
+ <f name="lemma">Bran</f>
+ <f name="msd">Gender=Fem|Number=Sing|Person=3</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s1659_n26" from="1828" to="1829">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">PUNCT</f>
+ <f name="lemma">.</f>
+ <f name="msd">PunctType=Peri</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s1660_n1" from="1830" to="1837">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">ADV</f>
+ <f name="lemma">Darüber</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s1660_n2" from="1838" to="1844">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">ADP</f>
+ <f name="lemma">hinaus</f>
+ <f name="msd">AdpType=Circ</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s1660_n3" from="1845" to="1849">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">AUX</f>
+ <f name="lemma">sein</f>
+ <f name="msd">Mood=Ind|Number=Plur|Person=3|Tense=Pres|VerbForm=Fin</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s1660_n4" from="1850" to="1853">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">ADP</f>
+ <f name="lemma">auf</f>
+ <f name="msd">AdpType=Prep|Case=Acc</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s1660_n5" from="1854" to="1857">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">CCONJ</f>
+ <f name="lemma">und</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s1660_n6" from="1858" to="1867">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">ADP</f>
+ <f name="lemma">innerhalb</f>
+ <f name="msd">AdpType=Prep</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s1660_n7" from="1868" to="1871">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">DET</f>
+ <f name="lemma">der</f>
+ <f name="msd">Case=Gen|Gender=Fem|Number=Sing|PronType=Art</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s1660_n8" from="1872" to="1879">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">NOUN</f>
+ <f name="lemma">Membran</f>
+ <f name="msd">Gender=Fem|Number=Sing|Person=3</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s1660_n9" from="1880" to="1888">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">NOUN</f>
+ <f name="lemma">Protein</f>
+ <f name="msd">Gender=Neut|Number=Plur|Person=3</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s1660_n10" from="1889" to="1897">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">VERB</f>
+ <f name="lemma">verteilen</f>
+ <f name="msd">Aspect=Perf|VerbForm=Part</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s1660_n11" from="1897" to="1898">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">PUNCT</f>
+ <f name="lemma">,</f>
+ <f name="msd">PunctType=Comm</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s1660_n12" from="1899" to="1905">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">PRON</f>
+ <f name="lemma">welche</f>
+ <f name="msd">Case=Nom|Number=Plur|Person=3|PronType=Rel</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s1660_n13" from="1906" to="1909">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">DET</f>
+ <f name="lemma">die</f>
+ <f name="msd">Case=Acc|Number=Plur|PronType=Art</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s1660_n14" from="1910" to="1917">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">ADJ</f>
+ <f name="lemma">aktiv</f>
+ <f name="msd">Degree=Pos|Number=Plur</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s1660_n15" from="1918" to="1928">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">NOUN</f>
+ <f name="lemma">Funktion</f>
+ <f name="msd">Gender=Fem|Number=Plur|Person=3</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s1660_n16" from="1929" to="1932">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">DET</f>
+ <f name="lemma">der</f>
+ <f name="msd">Case=Gen|Number=Plur|PronType=Art</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s1660_n17" from="1933" to="1950">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">NOUN</f>
+ <f name="lemma">Nübernehmen</f>
+ <f name="msd">Gender=Neut|Number=Plur|Person=3</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s1660_n18" from="1950" to="1951">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">PUNCT</f>
+ <f name="lemma">.</f>
+ <f name="msd">PunctType=Peri</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s1661_n1" from="1952" to="1955">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">DET</f>
+ <f name="lemma">Die</f>
+ <f name="msd">Case=Nom|Number=Plur|PronType=Art</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s1661_n2" from="1956" to="1964">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">NOUN</f>
+ <f name="lemma">Protein</f>
+ <f name="msd">Gender=Neut|Number=Plur|Person=3</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s1661_n3" from="1965" to="1970">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">AUX</f>
+ <f name="lemma">haben</f>
+ <f name="msd">Mood=Ind|Number=Plur|Person=3|Tense=Pres|VerbForm=Fin</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s1661_n4" from="1971" to="1974">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">ADV</f>
+ <f name="lemma">nur</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s1661_n5" from="1975" to="1979">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">DET</f>
+ <f name="lemma">eine</f>
+ <f name="msd">Case=Acc|Gender=Fem|Number=Sing|PronType=Art</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s1661_n6" from="1980" to="1984">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">ADV</f>
+ <f name="lemma">sehr</f>
+ <f name="msd">Degree=Pos</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s1661_n7" from="1985" to="1992">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">ADJ</f>
+ <f name="lemma">gering</f>
+ <f name="msd">Degree=Pos|Gender=Fem|Number=Sing</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s1661_n8" from="1993" to="2006">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">NOUN</f>
+ <f name="lemma">Funktion</f>
+ <f name="msd">Gender=Fem|Number=Sing|Person=3</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s1661_n9" from="2007" to="2020">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">PROPN</f>
+ <f name="lemma">Biomembran</f>
+ <f name="msd">Person=3</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s1661_n10" from="2020" to="2021">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">PUNCT</f>
+ <f name="lemma">,</f>
+ <f name="msd">PunctType=Comm</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s1661_n11" from="2022" to="2024">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">SCONJ</f>
+ <f name="lemma">da</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s1661_n12" from="2025" to="2028">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">PRON</f>
+ <f name="lemma">sie</f>
+ <f name="msd">Case=Nom|Number=Plur|Person=3|PronType=Prs</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s1661_n13" from="2029" to="2034">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">ADP</f>
+ <f name="lemma">durch</f>
+ <f name="msd">AdpType=Prep|Case=Acc</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s1661_n14" from="2035" to="2038">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">DET</f>
+ <f name="lemma">die</f>
+ <f name="msd">Case=Acc|Number=Plur|PronType=Art</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s1661_n15" from="2039" to="2053">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">NOUN</f>
+ <f name="lemma">Schicht</f>
+ <f name="msd">Gender=Fem|Number=Plur|Person=3</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s1661_n16" from="2054" to="2063">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">VERB</f>
+ <f name="lemma">schwimmen</f>
+ <f name="msd">Mood=Ind|Number=Plur|Person=3|Tense=Pres|VerbForm=Fin</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s1661_n17" from="2063" to="2064">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">PUNCT</f>
+ <f name="lemma">.</f>
+ <f name="msd">PunctType=Peri</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s1662_n1" from="2065" to="2077">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">NOUN</f>
+ <f name="lemma">Brane</f>
+ <f name="msd">Gender=Fem|Number=Plur|Person=3</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s1662_n2" from="2078" to="2084">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">AUX</f>
+ <f name="lemma">können</f>
+ <f name="msd">Mood=Ind|Number=Plur|Person=3|Tense=Pres|VerbForm=Fin|VerbType=Mod</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s1662_n3" from="2085" to="2091">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">ADP</f>
+ <f name="lemma">anhand</f>
+ <f name="msd">AdpType=Prep|Case=Gen</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s1662_n4" from="2092" to="2097">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">PRON</f>
+ <f name="lemma">sein</f>
+ <f name="msd">Case=Gen|Gender=Fem|Number=Sing|Person=3|Poss=Yes|PronType=Prs</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s1662_n5" from="2098" to="2104">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">NOUN</f>
+ <f name="lemma">Dichte</f>
+ <f name="msd">Gender=Fem|Number=Sing|Person=3</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s1662_n6" from="2105" to="2120">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">VERB</f>
+ <f name="lemma">charakterisieren</f>
+ <f name="msd">Aspect=Perf|VerbForm=Part</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s1662_n7" from="2121" to="2127">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">AUX</f>
+ <f name="lemma">werden</f>
+ <f name="msd">VerbForm=Inf</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s1662_n8" from="2127" to="2128">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">PUNCT</f>
+ <f name="lemma">;</f>
+ <f name="msd">PunctType=Peri</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s1662_n9" from="2129" to="2132">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">PRON</f>
+ <f name="lemma">sie</f>
+ <f name="msd">Case=Nom|Gender=Fem|Number=Sing|Person=3|PronType=Prs</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s1662_n10" from="2133" to="2138">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">VERB</f>
+ <f name="lemma">liegen</f>
+ <f name="msd">Mood=Ind|Number=Sing|Person=3|Tense=Pres|VerbForm=Fin</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s1662_n11" from="2139" to="2144">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">ADV</f>
+ <f name="lemma">meist</f>
+ <f name="msd">Degree=Sup</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s1662_n12" from="2145" to="2153">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">ADP</f>
+ <f name="lemma">zwischen</f>
+ <f name="msd">AdpType=Prep|Case=Dat</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s1662_n13" from="2154" to="2158">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">NUM</f>
+ <f name="lemma">1,12</f>
+ <f name="msd">Number=Plur|NumType=Card|Person=3</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s1662_n14" from="2159" to="2162">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">CCONJ</f>
+ <f name="lemma">und</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s1662_n15" from="2163" to="2167">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">NUM</f>
+ <f name="lemma">1,22</f>
+ <f name="msd">Number=Plur|NumType=Card|Person=3</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s1662_n16" from="2168" to="2169">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">NOUN</f>
+ <f name="lemma">g</f>
+ <f name="msd">Gender=Neut|Number=Plur|Person=3</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s1662_n17" from="2169" to="2170">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">X</f>
+ <f name="lemma">·</f>
+ <f name="msd">Foreign=Yes|Person=3</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s1662_n18" from="2170" to="2172">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">NOUN</f>
+ <f name="lemma">cm</f>
+ <f name="msd">Gender=Masc|Number=Plur|Person=3</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s1662_n19" from="2172" to="2173">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">X</f>
+ <f name="lemma">−</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s1662_n20" from="2173" to="2175">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">ADJ</f>
+ <f name="lemma">3.</f>
+ <f name="msd">Person=3</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s1662_n21" from="2176" to="2179">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">DET</f>
+ <f name="lemma">Die</f>
+ <f name="msd">Case=Nom|Gender=Fem|Number=Sing|PronType=Art</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s1662_n22" from="2180" to="2186">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">NOUN</f>
+ <f name="lemma">Dichte</f>
+ <f name="msd">Gender=Fem|Number=Sing|Person=3</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s1662_n23" from="2187" to="2190">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">AUX</f>
+ <f name="lemma">sein</f>
+ <f name="msd">Mood=Ind|Number=Sing|Person=3|Tense=Pres|VerbForm=Fin</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s1662_n24" from="2191" to="2194">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">ADP</f>
+ <f name="lemma">vom</f>
+ <f name="msd">AdpType=Prep|Case=Dat</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s1662_n25" from="2195" to="2213">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">NOUN</f>
+ <f name="lemma">Gewichtsverhältnis</f>
+ <f name="msd">Gender=Neut|Number=Sing|Person=3</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s1662_n26" from="2214" to="2217">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">DET</f>
+ <f name="lemma">der</f>
+ <f name="msd">Case=Gen|Number=Plur|PronType=Art</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s1662_n27" from="2218" to="2226">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">NOUN</f>
+ <f name="lemma">Protein</f>
+ <f name="msd">Gender=Neut|Number=Plur|Person=3</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s1662_n28" from="2227" to="2229">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">ADP</f>
+ <f name="lemma">zu</f>
+ <f name="msd">AdpType=Prep|Case=Dat</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s1662_n29" from="2230" to="2240">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">PROPN</f>
+ <f name="lemma">DenLipiden</f>
+ <f name="msd">Person=3</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s1662_n30" from="2241" to="2249">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">ADJ</f>
+ <f name="lemma">abhängig</f>
+ <f name="msd">Degree=Pos|Variant=Short</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s1662_n31" from="2249" to="2250">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">PUNCT</f>
+ <f name="lemma">:</f>
+ <f name="msd">PunctType=Peri</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s1662_n32" from="2251" to="2253">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">ADV</f>
+ <f name="lemma">je</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s1662_n33" from="2254" to="2258">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">ADP</f>
+ <f name="lemma">nach</f>
+ <f name="msd">AdpType=Prep|Case=Dat</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s1662_n34" from="2259" to="2267">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">NOUN</f>
+ <f name="lemma">Funktion</f>
+ <f name="msd">Gender=Fem|Number=Sing|Person=3</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s1662_n35" from="2268" to="2271">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">DET</f>
+ <f name="lemma">der</f>
+ <f name="msd">Case=Gen|Gender=Fem|Number=Sing|PronType=Art</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s1662_n36" from="2272" to="2279">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">NOUN</f>
+ <f name="lemma">Membran</f>
+ <f name="msd">Gender=Fem|Number=Sing|Person=3</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s1662_n37" from="2280" to="2286">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">AUX</f>
+ <f name="lemma">werden</f>
+ <f name="msd">Mood=Ind|Number=Plur|Person=3|Tense=Pres|VerbForm=Fin</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s1662_n38" from="2287" to="2292">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">NOUN</f>
+ <f name="lemma">Wert</f>
+ <f name="msd">Gender=Masc|Number=Plur|Person=3</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s1662_n39" from="2293" to="2296">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">ADP</f>
+ <f name="lemma">von</f>
+ <f name="msd">AdpType=Prep|Case=Dat</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s1662_n40" from="2297" to="2301">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">NUM</f>
+ <f name="lemma">0,25</f>
+ <f name="msd">Number=Plur|NumType=Card|Person=3</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s1662_n41" from="2302" to="2303">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">PUNCT</f>
+ <f name="lemma">(</f>
+ <f name="msd">PunctType=Brck</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s1662_n42" from="2303" to="2316">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">NOUN</f>
+ <f name="lemma">Bran</f>
+ <f name="msd">Gender=Fem|Number=Sing|Person=3</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s1662_n43" from="2316" to="2317">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">PUNCT</f>
+ <f name="lemma">,</f>
+ <f name="msd">PunctType=Comm</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s1662_n44" from="2318" to="2326">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">ADJ</f>
+ <f name="lemma">gering</f>
+ <f name="msd">Case=Nom|Degree=Pos|Gender=Masc|Number=Sing</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s1662_n45" from="2327" to="2340">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">NOUN</f>
+ <f name="lemma">Anteil</f>
+ <f name="msd">Gender=Masc|Number=Sing|Person=3</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s1662_n46" from="2340" to="2341">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">PUNCT</f>
+ <f name="lemma">)</f>
+ <f name="msd">PunctType=Brck</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s1662_n47" from="2341" to="2342">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">PUNCT</f>
+ <f name="lemma">,</f>
+ <f name="msd">PunctType=Comm</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s1662_n48" from="2343" to="2346">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">NUM</f>
+ <f name="lemma">1,3</f>
+ <f name="msd">Number=Plur|NumType=Card|Person=3</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s1662_n49" from="2347" to="2348">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">PUNCT</f>
+ <f name="lemma">(</f>
+ <f name="msd">PunctType=Brck</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s1662_n50" from="2348" to="2361">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">NOUN</f>
+ <f name="lemma">Plasmamembran</f>
+ <f name="msd">Gender=Fem|Number=Sing|Person=3</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s1662_n51" from="2362" to="2365">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">ADP</f>
+ <f name="lemma">von</f>
+ <f name="msd">AdpType=Prep|Case=Dat</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s1662_n52" from="2366" to="2378">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">NOUN</f>
+ <f name="lemma">Zyt</f>
+ <f name="msd">Person=3</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s1662_n53" from="2378" to="2379">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">PUNCT</f>
+ <f name="lemma">)</f>
+ <f name="msd">PunctType=Brck</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s1662_n54" from="2379" to="2380">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">PUNCT</f>
+ <f name="lemma">,</f>
+ <f name="msd">PunctType=Comm</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s1662_n55" from="2381" to="2384">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">NUM</f>
+ <f name="lemma">2,5</f>
+ <f name="msd">Number=Plur|NumType=Card|Person=3</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s1662_n56" from="2385" to="2386">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">PUNCT</f>
+ <f name="lemma">(</f>
+ <f name="msd">PunctType=Brck</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s1662_n57" from="2386" to="2399">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">NOUN</f>
+ <f name="lemma">Plasmamembran</f>
+ <f name="msd">Gender=Fem|Number=Sing|Person=3</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s1662_n58" from="2400" to="2403">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">ADP</f>
+ <f name="lemma">von</f>
+ <f name="msd">AdpType=Prep|Case=Dat</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s1662_n59" from="2404" to="2406">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">PROPN</f>
+ <f name="lemma">E.</f>
+ <f name="msd">Number=Sing|Person=3</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s1662_n60" from="2407" to="2411">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">PROPN</f>
+ <f name="lemma">coli</f>
+ <f name="msd">Foreign=Yes|Person=3</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s1662_n61" from="2411" to="2412">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">PUNCT</f>
+ <f name="lemma">)</f>
+ <f name="msd">PunctType=Brck</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s1662_n62" from="2412" to="2413">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">PUNCT</f>
+ <f name="lemma">,</f>
+ <f name="msd">PunctType=Comm</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s1662_n63" from="2414" to="2417">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">NUM</f>
+ <f name="lemma">2,9</f>
+ <f name="msd">Number=Plur|NumType=Card|Person=3</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s1662_n64" from="2418" to="2419">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">PUNCT</f>
+ <f name="lemma">(</f>
+ <f name="msd">PunctType=Brck</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s1662_n65" from="2419" to="2425">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">ADJ</f>
+ <f name="lemma">innere</f>
+ <f name="msd">Degree=Pos|Gender=Fem|Number=Sing</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s1662_n66" from="2426" to="2446">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">NOUN</f>
+ <f name="lemma">Membran</f>
+ <f name="msd">Gender=Fem|Number=Sing|Person=3</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s1662_n67" from="2446" to="2447">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">PUNCT</f>
+ <f name="lemma">)</f>
+ <f name="msd">PunctType=Brck</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s1662_n68" from="2448" to="2451">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">ADP</f>
+ <f name="lemma">bis</f>
+ <f name="msd">AdpType=Prep</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s1662_n69" from="2452" to="2455">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">ADV</f>
+ <f name="lemma">hin</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s1662_n70" from="2456" to="2458">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">ADP</f>
+ <f name="lemma">zu</f>
+ <f name="msd">AdpType=Prep|Case=Dat</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s1662_n71" from="2459" to="2464">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">DET</f>
+ <f name="lemma">einem</f>
+ <f name="msd">Case=Dat|Gender=Masc|Number=Sing|PronType=Art</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s1662_n72" from="2465" to="2469">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">NOUN</f>
+ <f name="lemma">Wert</f>
+ <f name="msd">Gender=Masc|Number=Sing|Person=3</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s1662_n73" from="2470" to="2473">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">ADP</f>
+ <f name="lemma">von</f>
+ <f name="msd">AdpType=Prep|Case=Dat</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s1662_n74" from="2474" to="2475">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">NUM</f>
+ <f name="lemma">5</f>
+ <f name="msd">Number=Plur|NumType=Card|Person=3</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s1662_n75" from="2476" to="2478">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">ADP</f>
+ <f name="lemma">in</f>
+ <f name="msd">AdpType=Prep|Case=Dat</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s1662_n76" from="2479" to="2482">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">DET</f>
+ <f name="lemma">der</f>
+ <f name="msd">Case=Dat|Gender=Fem|Number=Sing|PronType=Art</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s1662_n77" from="2483" to="2496">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">NOUN</f>
+ <f name="lemma">Membran</f>
+ <f name="msd">Gender=Fem|Number=Sing|Person=3</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s1662_n78" from="2497" to="2500">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">ADP</f>
+ <f name="lemma">bei</f>
+ <f name="msd">AdpType=Prep|Case=Dat</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s1662_n79" from="2501" to="2514">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">NOUN</f>
+ <f name="lemma">Bacterium</f>
+ <f name="msd">Gender=Neut|Number=Sing|Person=3</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s1662_n80" from="2515" to="2516">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">PUNCT</f>
+ <f name="lemma">(</f>
+ <f name="msd">PunctType=Brck</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s1662_n81" from="2516" to="2521">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">ADJ</f>
+ <f name="lemma">hoch</f>
+ <f name="msd">Case=Nom|Degree=Pos|Gender=Masc|Number=Sing</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s1662_n82" from="2522" to="2535">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">NOUN</f>
+ <f name="lemma">Anteil</f>
+ <f name="msd">Gender=Masc|Number=Sing|Person=3</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s1662_n83" from="2535" to="2536">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">PUNCT</f>
+ <f name="lemma">)</f>
+ <f name="msd">PunctType=Brck</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s1662_n84" from="2537" to="2545">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">VERB</f>
+ <f name="lemma">finden</f>
+ <f name="msd">Aspect=Perf|VerbForm=Part</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s1662_n85" from="2545" to="2546">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">PUNCT</f>
+ <f name="lemma">.</f>
+ <f name="msd">PunctType=Peri</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s1663_n1" from="2547" to="2549">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">ADP</f>
+ <f name="lemma">In</f>
+ <f name="msd">AdpType=Prep|Case=Dat</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s1663_n2" from="2550" to="2560">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">ADJ</f>
+ <f name="lemma">bestimmen</f>
+ <f name="msd">Case=Dat|Degree=Pos|Number=Plur</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s1663_n3" from="2561" to="2566">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">NOUN</f>
+ <f name="lemma">Art</f>
+ <f name="msd">Gender=Fem|Number=Plur|Person=3</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s1663_n4" from="2567" to="2570">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">ADP</f>
+ <f name="lemma">von</f>
+ <f name="msd">AdpType=Prep|Case=Dat</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s1663_n5" from="2571" to="2585">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">NOUN</f>
+ <f name="lemma">Ganelle</f>
+ <f name="msd">Case=Dat|Gender=Neut|Number=Plur|Person=3</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s1663_n6" from="2586" to="2587">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">PUNCT</f>
+ <f name="lemma">(</f>
+ <f name="msd">PunctType=Brck</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s1663_n7" from="2587" to="2595">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">NOUN</f>
+ <f name="lemma">Zellkern</f>
+ <f name="msd">Gender=Masc|Number=Sing|Person=3</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s1663_n8" from="2595" to="2596">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">PUNCT</f>
+ <f name="lemma">,</f>
+ <f name="msd">PunctType=Comm</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s1663_n9" from="2597" to="2610">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">NOUN</f>
+ <f name="lemma">Hondrium</f>
+ <f name="msd">Gender=Neut|Number=Sing|Person=3</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s1663_n10" from="2610" to="2611">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">PUNCT</f>
+ <f name="lemma">,</f>
+ <f name="msd">PunctType=Comm</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s1663_n11" from="2612" to="2619">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">NOUN</f>
+ <f name="lemma">Plastid</f>
+ <f name="msd">Person=3</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s1663_n12" from="2619" to="2620">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">PUNCT</f>
+ <f name="lemma">)</f>
+ <f name="msd">PunctType=Brck</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s1663_n13" from="2621" to="2627">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">VERB</f>
+ <f name="lemma">treten</f>
+ <f name="msd">Mood=Ind|Number=Plur|Person=3|Tense=Pres|VerbForm=Fin</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s1663_n14" from="2628" to="2640">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">NOUN</f>
+ <f name="lemma">Bran</f>
+ <f name="msd">Gender=Fem|Number=Plur|Person=3</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s1663_n15" from="2641" to="2644">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">CCONJ</f>
+ <f name="lemma">als</f>
+ <f name="msd">ConjType=Comp</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s1663_n16" from="2645" to="2658">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">NOUN</f>
+ <f name="lemma">Membran</f>
+ <f name="msd">Gender=Fem|Number=Sing|Person=3</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s1663_n17" from="2659" to="2662">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">ADP</f>
+ <f name="lemma">auf</f>
+ <f name="msd">PartType=Vbp</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s1663_n18" from="2662" to="2663">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">PUNCT</f>
+ <f name="lemma">.</f>
+ <f name="msd">PunctType=Peri</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s1664_n1" from="2665" to="2683">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">NOUN</f>
+ <f name="lemma">Schicht</f>
+ <f name="msd">Gender=Fem|Number=Sing|Person=3</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s1664_n2" from="2686" to="2689">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">DET</f>
+ <f name="lemma">Die</f>
+ <f name="msd">Case=Nom|Gender=Fem|Number=Sing|PronType=Art</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s1664_n3" from="2690" to="2708">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">NOUN</f>
+ <f name="lemma">Schicht</f>
+ <f name="msd">Gender=Fem|Number=Sing|Person=3</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s1664_n4" from="2709" to="2716">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">VERB</f>
+ <f name="lemma">bestehen</f>
+ <f name="msd">Mood=Ind|Number=Sing|Person=3|Tense=Pres|VerbForm=Fin</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s1664_n5" from="2717" to="2729">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">ADV</f>
+ <f name="lemma">größtenteils</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s1664_n6" from="2730" to="2733">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">ADP</f>
+ <f name="lemma">aus</f>
+ <f name="msd">AdpType=Prep|Case=Dat</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s1664_n7" from="2734" to="2745">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">ADJ</f>
+ <f name="lemma">amphiphilen</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s1664_n8" from="2746" to="2760">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">NOUN</f>
+ <f name="lemma">Pholipiden</f>
+ <f name="msd">Gender=Neut|Number=Plur|Person=3</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s1664_n9" from="2760" to="2761">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">PUNCT</f>
+ <f name="lemma">,</f>
+ <f name="msd">PunctType=Comm</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s1664_n10" from="2762" to="2765">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">PRON</f>
+ <f name="lemma">die</f>
+ <f name="msd">Case=Nom|Number=Plur|Person=3|PronType=Rel</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s1664_n11" from="2766" to="2770">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">DET</f>
+ <f name="lemma">eine</f>
+ <f name="msd">Case=Acc|Gender=Fem|Number=Sing|PronType=Art</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s1664_n12" from="2771" to="2781">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">ADJ</f>
+ <f name="lemma">hydrophile</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s1664_n13" from="2782" to="2792">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">NOUN</f>
+ <f name="lemma">Gruppe</f>
+ <f name="msd">Gender=Fem|Number=Sing|Person=3</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s1664_n14" from="2793" to="2796">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">CCONJ</f>
+ <f name="lemma">und</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s1664_n15" from="2797" to="2801">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">DET</f>
+ <f name="lemma">eine</f>
+ <f name="msd">Case=Acc|Gender=Fem|Number=Sing|PronType=Art</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s1664_n16" from="2802" to="2812">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">ADJ</f>
+ <f name="lemma">hydrophobe</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s1664_n17" from="2813" to="2826">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">NOUN</f>
+ <f name="lemma">Gruppe</f>
+ <f name="msd">Gender=Fem|Number=Sing|Person=3</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s1664_n18" from="2827" to="2828">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">PUNCT</f>
+ <f name="lemma">(</f>
+ <f name="msd">PunctType=Brck</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s1664_n19" from="2828" to="2836">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">ADV</f>
+ <f name="lemma">meistens</f>
+ <f name="msd">Degree=Sup</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s1664_n20" from="2837" to="2860">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">NOUN</f>
+ <f name="lemma">Kette</f>
+ <f name="msd">Gender=Fem|Number=Plur|Person=3</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s1664_n21" from="2860" to="2861">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">PUNCT</f>
+ <f name="lemma">)</f>
+ <f name="msd">PunctType=Brck</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s1664_n22" from="2862" to="2870">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">VERB</f>
+ <f name="lemma">besitzen</f>
+ <f name="msd">Mood=Ind|Number=Plur|Person=3|Tense=Pres|VerbForm=Fin</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s1664_n23" from="2870" to="2871">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">PUNCT</f>
+ <f name="lemma">.</f>
+ <f name="msd">PunctType=Peri</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s1665_n1" from="2872" to="2874">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">ADP</f>
+ <f name="lemma">In</f>
+ <f name="msd">AdpType=Prep|Case=Dat</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s1665_n2" from="2875" to="2881">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">NOUN</f>
+ <f name="lemma">Wasser</f>
+ <f name="msd">Gender=Neut|Number=Sing|Person=3</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s1665_n3" from="2882" to="2888">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">VERB</f>
+ <f name="lemma">bilden</f>
+ <f name="msd">Mood=Ind|Number=Sing|Person=3|Tense=Pres|VerbForm=Fin</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s1665_n4" from="2889" to="2893">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">PRON</f>
+ <f name="lemma">sich</f>
+ <f name="msd">Case=Acc|Person=3|PronType=Prs|Reflex=Yes</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s1665_n5" from="2893" to="2894">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">PUNCT</f>
+ <f name="lemma">,</f>
+ <f name="msd">PunctType=Comm</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s1665_n6" from="2895" to="2898">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">CCONJ</f>
+ <f name="lemma">als</f>
+ <f name="msd">ConjType=Comp</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s1665_n7" from="2899" to="2903">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">DET</f>
+ <f name="lemma">eine</f>
+ <f name="msd">Case=Nom|Gender=Fem|Number=Sing|PronType=Art</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s1665_n8" from="2904" to="2909">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">NOUN</f>
+ <f name="lemma">Folge</f>
+ <f name="msd">Gender=Fem|Number=Sing|Person=3</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s1665_n9" from="2910" to="2913">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">DET</f>
+ <f name="lemma">des</f>
+ <f name="msd">Case=Gen|Gender=Masc|Number=Sing|PronType=Art</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s1665_n10" from="2914" to="2925">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">ADJ</f>
+ <f name="lemma">hydrophoben</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s1665_n11" from="2926" to="2934">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">NOUN</f>
+ <f name="lemma">Effekt</f>
+ <f name="msd">Case=Gen|Gender=Masc|Number=Sing|Person=3</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s1665_n12" from="2934" to="2935">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">PUNCT</f>
+ <f name="lemma">,</f>
+ <f name="msd">PunctType=Comm</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s1665_n13" from="2936" to="2940">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">DET</f>
+ <f name="lemma">eine</f>
+ <f name="msd">Case=Nom|Gender=Fem|Number=Sing|PronType=Art</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s1665_n14" from="2941" to="2954">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">NOUN</f>
+ <f name="lemma">Schicht</f>
+ <f name="msd">Gender=Fem|Number=Sing|Person=3</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s1665_n15" from="2954" to="2955">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">PUNCT</f>
+ <f name="lemma">,</f>
+ <f name="msd">PunctType=Comm</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s1665_n16" from="2956" to="2962">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">PRON</f>
+ <f name="lemma">beide</f>
+ <f name="msd">Case=Dat|Gender=Fem|Number=Sing|Person=3|PronType=Rel</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s1665_n17" from="2963" to="2966">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">DET</f>
+ <f name="lemma">die</f>
+ <f name="msd">Case=Nom|Number=Plur|PronType=Art</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s1665_n18" from="2967" to="2978">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">ADJ</f>
+ <f name="lemma">hydrophoben</f>
+ <f name="msd">Degree=Pos|Number=Plur</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s1665_n19" from="2979" to="2987">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">NOUN</f>
+ <f name="lemma">Schwänz</f>
+ <f name="msd">Gender=Masc|Number=Plur|Person=3</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s1665_n20" from="2988" to="2992">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">ADP</f>
+ <f name="lemma">nach</f>
+ <f name="msd">AdpType=Prep|Case=Dat</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s1665_n21" from="2993" to="2998">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">ADV</f>
+ <f name="lemma">innen</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s1665_n22" from="2999" to="3002">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">CCONJ</f>
+ <f name="lemma">und</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s1665_n23" from="3003" to="3006">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">DET</f>
+ <f name="lemma">die</f>
+ <f name="msd">Case=Nom|Number=Plur|PronType=Art</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s1665_n24" from="3007" to="3018">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">ADJ</f>
+ <f name="lemma">hydrophilen</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s1665_n25" from="3019" to="3024">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">NOUN</f>
+ <f name="lemma">Kopf</f>
+ <f name="msd">Gender=Masc|Number=Plur|Person=3</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s1665_n26" from="3025" to="3034">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">ADV</f>
+ <f name="lemma">nachaußen</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s1665_n27" from="3035" to="3041">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">VERB</f>
+ <f name="lemma">zeigen</f>
+ <f name="msd">Mood=Ind|Number=Plur|Person=3|Tense=Pres|VerbForm=Fin</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s1665_n28" from="3041" to="3042">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">PUNCT</f>
+ <f name="lemma">.</f>
+ <f name="msd">PunctType=Peri</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s1666_n1" from="3043" to="3048">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">ADP</f>
+ <f name="lemma">Wegen</f>
+ <f name="msd">AdpType=Prep</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s1666_n2" from="3049" to="3052">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">DET</f>
+ <f name="lemma">des</f>
+ <f name="msd">Case=Gen|Gender=Masc|Number=Sing|PronType=Art</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s1666_n3" from="3053" to="3064">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">ADJ</f>
+ <f name="lemma">hydrophoben</f>
+ <f name="msd">Degree=Pos|Number=Sing</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s1666_n4" from="3065" to="3070">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">NOUN</f>
+ <f name="lemma">Kern</f>
+ <f name="msd">Case=Gen|Gender=Masc|Number=Sing|Person=3</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s1666_n5" from="3071" to="3074">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">AUX</f>
+ <f name="lemma">sein</f>
+ <f name="msd">Mood=Ind|Number=Sing|Person=3|Tense=Pres|VerbForm=Fin</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s1666_n6" from="3075" to="3079">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">DET</f>
+ <f name="lemma">eine</f>
+ <f name="msd">Case=Nom|Gender=Fem|Number=Sing|PronType=Art</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s1666_n7" from="3080" to="3104">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">NOUN</f>
+ <f name="lemma">Schicht</f>
+ <f name="msd">Gender=Fem|Number=Sing|Person=3</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s1666_n8" from="3105" to="3111">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">ADV</f>
+ <f name="lemma">nahezu</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s1666_n9" from="3112" to="3125">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">ADJ</f>
+ <f name="lemma">undurchlässig</f>
+ <f name="msd">Degree=Pos|Variant=Short</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s1666_n10" from="3126" to="3129">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">ADP</f>
+ <f name="lemma">für</f>
+ <f name="msd">AdpType=Prep|Case=Acc</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s1666_n11" from="3130" to="3136">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">NOUN</f>
+ <f name="lemma">Wasser</f>
+ <f name="msd">Gender=Neut|Number=Sing|Person=3</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s1666_n12" from="3137" to="3140">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">CCONJ</f>
+ <f name="lemma">und</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s1666_n13" from="3141" to="3163">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">PROPN</f>
+ <f name="lemma">Erlöslichemolekü</f>
+ <f name="msd">Person=3</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s1666_n14" from="3163" to="3164">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">PUNCT</f>
+ <f name="lemma">,</f>
+ <f name="msd">PunctType=Comm</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s1666_n15" from="3165" to="3177">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">ADJ</f>
+ <f name="lemma">gleichzeitig</f>
+ <f name="msd">Degree=Pos|Variant=Short</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s1666_n16" from="3178" to="3182">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">ADV</f>
+ <f name="lemma">aber</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s1666_n17" from="3183" to="3187">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">ADV</f>
+ <f name="lemma">sehr</f>
+ <f name="msd">Degree=Pos</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s1666_n18" from="3188" to="3196">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">ADJ</f>
+ <f name="lemma">flexibel</f>
+ <f name="msd">Degree=Pos|Variant=Short</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s1666_n19" from="3197" to="3200">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">CCONJ</f>
+ <f name="lemma">und</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s1666_n20" from="3201" to="3211">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">ADJ</f>
+ <f name="lemma">mechanisch</f>
+ <f name="msd">Degree=Pos|Variant=Short</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s1666_n21" from="3212" to="3218">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">ADJ</f>
+ <f name="lemma">schwer</f>
+ <f name="msd">Degree=Pos|Variant=Short</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s1666_n22" from="3219" to="3230">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">VERB</f>
+ <f name="lemma">zuzerstören</f>
+ <f name="msd">VerbForm=Inf</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s1666_n23" from="3230" to="3231">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">PUNCT</f>
+ <f name="lemma">.</f>
+ <f name="msd">PunctType=Peri</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s1667_n1" from="3232" to="3235">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">ADP</f>
+ <f name="lemma">Aus</f>
+ <f name="msd">AdpType=Prep|Case=Dat</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s1667_n2" from="3236" to="3242">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">DET</f>
+ <f name="lemma">dies</f>
+ <f name="msd">Case=Dat|Gender=Masc|Number=Sing|PronType=Dem</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s1667_n3" from="3243" to="3248">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">NOUN</f>
+ <f name="lemma">Grund</f>
+ <f name="msd">Gender=Masc|Number=Sing|Person=3</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s1667_n4" from="3249" to="3260">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">VERB</f>
+ <f name="lemma">hinterlassen</f>
+ <f name="msd">Mood=Ind|Number=Sing|Person=3|Tense=Pres|VerbForm=Fin</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s1667_n5" from="3261" to="3267">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">ADV</f>
+ <f name="lemma">selbst</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s1667_n6" from="3268" to="3271">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">DET</f>
+ <f name="lemma">ein</f>
+ <f name="msd">Case=Nom|Gender=Masc|Number=Sing|PronType=Art</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s1667_n7" from="3272" to="3280">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">NOUN</f>
+ <f name="lemma">Einstich</f>
+ <f name="msd">Person=3</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s1667_n8" from="3281" to="3284">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">ADP</f>
+ <f name="lemma">mit</f>
+ <f name="msd">AdpType=Prep|Case=Dat</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s1667_n9" from="3285" to="3297">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">PROPN</f>
+ <f name="lemma">EinerPipette</f>
+ <f name="msd">Person=3</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s1667_n10" from="3298" to="3302">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">DET</f>
+ <f name="lemma">kein</f>
+ <f name="msd">Case=Acc|Gender=Neut|Number=Sing|Person=3|PronType=Ind,Neg,Tot</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s1667_n11" from="3303" to="3307">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">NOUN</f>
+ <f name="lemma">Loch</f>
+ <f name="msd">Gender=Neut|Number=Sing|Person=3</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s1667_n12" from="3308" to="3310">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">ADP</f>
+ <f name="lemma">in</f>
+ <f name="msd">AdpType=Prep|Case=Dat</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s1667_n13" from="3311" to="3314">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">DET</f>
+ <f name="lemma">der</f>
+ <f name="msd">Case=Dat|Gender=Fem|Number=Sing|PronType=Art</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s1667_n14" from="3315" to="3322">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">NOUN</f>
+ <f name="lemma">Membran</f>
+ <f name="msd">Gender=Fem|Number=Sing|Person=3</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s1667_n15" from="3322" to="3323">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">PUNCT</f>
+ <f name="lemma">.</f>
+ <f name="msd">PunctType=Peri</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s1668_n1" from="3324" to="3329">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">ADV</f>
+ <f name="lemma">Dafür</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s1668_n2" from="3330" to="3334">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">AUX</f>
+ <f name="lemma">können</f>
+ <f name="msd">Mood=Ind|Number=Sing|Person=3|Tense=Pres|VerbForm=Fin|VerbType=Mod</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s1668_n3" from="3335" to="3338">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">PRON</f>
+ <f name="lemma">sie</f>
+ <f name="msd">Case=Nom|Gender=Fem|Number=Sing|Person=3|PronType=Prs</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s1668_n4" from="3339" to="3344">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">ADP</f>
+ <f name="lemma">durch</f>
+ <f name="msd">AdpType=Prep|Case=Acc</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s1668_n5" from="3345" to="3363">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">NOUN</f>
+ <f name="lemma">Mittel</f>
+ <f name="msd">Gender=Neut|Number=Sing|Person=3</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s1668_n6" from="3364" to="3367">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">CCONJ</f>
+ <f name="lemma">und</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s1668_n7" from="3368" to="3375">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">NOUN</f>
+ <f name="lemma">Lipase</f>
+ <f name="msd">Gender=Fem|Number=Plur|Person=3</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s1668_n8" from="3376" to="3384">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">VERB</f>
+ <f name="lemma">zerstören</f>
+ <f name="msd">Aspect=Perf|VerbForm=Part</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s1668_n9" from="3385" to="3391">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">AUX</f>
+ <f name="lemma">werden</f>
+ <f name="msd">VerbForm=Inf</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s1668_n10" from="3391" to="3392">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">PUNCT</f>
+ <f name="lemma">.</f>
+ <f name="msd">PunctType=Peri</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s1669_n1" from="3393" to="3402">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">NOUN</f>
+ <f name="lemma">Membran</f>
+ <f name="msd">Gender=Fem|Number=Plur|Person=3</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s1669_n2" from="3403" to="3407">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">AUX</f>
+ <f name="lemma">sein</f>
+ <f name="msd">Mood=Ind|Number=Plur|Person=3|Tense=Pres|VerbForm=Fin</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s1669_n3" from="3408" to="3411">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">ADP</f>
+ <f name="lemma">aus</f>
+ <f name="msd">AdpType=Prep|Case=Dat</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s1669_n4" from="3412" to="3416">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">NUM</f>
+ <f name="lemma">drei</f>
+ <f name="msd">Number=Plur|NumType=Card|Person=3</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s1669_n5" from="3417" to="3427">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">NOUN</f>
+ <f name="lemma">Typ</f>
+ <f name="msd">Gender=Masc|Number=Plur|Person=3</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s1669_n6" from="3428" to="3431">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">ADP</f>
+ <f name="lemma">von</f>
+ <f name="msd">AdpType=Prep|Case=Dat</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s1669_n7" from="3432" to="3448">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">NOUN</f>
+ <f name="lemma">Aufgebaut</f>
+ <f name="msd">Gender=Masc|Number=Sing|Person=3</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s1669_n8" from="3448" to="3449">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">PUNCT</f>
+ <f name="lemma">:</f>
+ <f name="msd">PunctType=Peri</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s1669_n9" from="3450" to="3466">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">NOUN</f>
+ <f name="lemma">Phosphoglyceride</f>
+ <f name="msd">Person=3</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s1669_n10" from="3466" to="3467">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">PUNCT</f>
+ <f name="lemma">,</f>
+ <f name="msd">PunctType=Comm</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s1669_n11" from="3468" to="3481">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">NOUN</f>
+ <f name="lemma">Sphingolipide</f>
+ <f name="msd">Person=3</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s1669_n12" from="3482" to="3485">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">CCONJ</f>
+ <f name="lemma">und</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s1669_n13" from="3486" to="3497">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">NOUN</f>
+ <f name="lemma">Cholesterin</f>
+ <f name="msd">Person=3</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s1669_n14" from="3497" to="3498">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">PUNCT</f>
+ <f name="lemma">.</f>
+ <f name="msd">PunctType=Peri</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s1670_n1" from="3499" to="3503">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">X</f>
+ <f name="lemma">mini</f>
+ <f name="msd">Foreign=Yes|Person=3</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s1670_n2" from="3503" to="3504">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">X</f>
+ <f name="lemma">|</f>
+ <f name="msd">Foreign=Yes|Person=3</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s1670_n3" from="3504" to="3510">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">NOUN</f>
+ <f name="lemma">Schema</f>
+ <f name="msd">Gender=Neut|Number=Sing|Person=3</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s1670_n4" from="3511" to="3514">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">DET</f>
+ <f name="lemma">der</f>
+ <f name="msd">Case=Gen|Gender=Fem|Number=Sing|PronType=Art</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s1670_n5" from="3515" to="3516">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">PUNCT</f>
+ <f name="lemma">(</f>
+ <f name="msd">PunctType=Brck</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s1670_n6" from="3516" to="3525">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">ADJ</f>
+ <f name="lemma">flüssig</f>
+ <f name="msd">Degree=Pos|Number=Sing</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s1670_n7" from="3525" to="3526">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">PUNCT</f>
+ <f name="lemma">)</f>
+ <f name="msd">PunctType=Brck</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s1670_n8" from="3527" to="3545">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">NOUN</f>
+ <f name="lemma">Schicht</f>
+ <f name="msd">Gender=Fem|Number=Sing|Person=3</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s1670_n9" from="3546" to="3561">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">PROPN</f>
+ <f name="lemma">EinerBiomembran</f>
+ <f name="msd">Person=3</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s1670_n10" from="3562" to="3565">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">DET</f>
+ <f name="lemma">Die</f>
+ <f name="msd">Case=Nom|Gender=Fem|Number=Sing|PronType=Art</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s1670_n11" from="3566" to="3584">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">NOUN</f>
+ <f name="lemma">Schicht</f>
+ <f name="msd">Gender=Fem|Number=Sing|Person=3</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s1670_n12" from="3585" to="3590">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">DET</f>
+ <f name="lemma">einer</f>
+ <f name="msd">Case=Gen|Gender=Fem|Number=Sing|PronType=Art</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s1670_n13" from="3591" to="3601">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">NOUN</f>
+ <f name="lemma">Bran</f>
+ <f name="msd">Gender=Fem|Number=Sing|Person=3</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s1670_n14" from="3602" to="3618">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">ADV</f>
+ <f name="lemma">istnormalerweise</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s1670_n15" from="3619" to="3626">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">ADJ</f>
+ <f name="lemma">flüssig</f>
+ <f name="msd">Degree=Pos|Variant=Short</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s1670_n16" from="3626" to="3627">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">PUNCT</f>
+ <f name="lemma">,</f>
+ <f name="msd">PunctType=Comm</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s1670_n17" from="3628" to="3630">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">PRON</f>
+ <f name="lemma">d.</f>
+ <f name="msd">Case=Nom|Gender=Neut|Number=Sing|Person=3|PronType=Dem</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s1670_n18" from="3631" to="3633">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">VERB</f>
+ <f name="lemma">h.</f>
+ <f name="msd">Mood=Ind|Number=Sing|Person=3|Tense=Pres|VerbForm=Fin</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s1670_n19" from="3634" to="3637">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">DET</f>
+ <f name="lemma">die</f>
+ <f name="msd">Case=Nom|Number=Plur|PronType=Art</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s1670_n20" from="3638" to="3644">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">NOUN</f>
+ <f name="lemma">Lipid</f>
+ <f name="msd">Gender=Masc|Number=Plur|Person=3</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s1670_n21" from="3645" to="3648">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">CCONJ</f>
+ <f name="lemma">und</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s1670_n22" from="3649" to="3657">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">NOUN</f>
+ <f name="lemma">Protein</f>
+ <f name="msd">Gender=Neut|Number=Plur|Person=3</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s1670_n23" from="3658" to="3662">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">AUX</f>
+ <f name="lemma">sein</f>
+ <f name="msd">Mood=Ind|Number=Plur|Person=3|Tense=Pres|VerbForm=Fin</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s1670_n24" from="3663" to="3665">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">ADP</f>
+ <f name="lemma">in</f>
+ <f name="msd">AdpType=Prep|Case=Dat</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s1670_n25" from="3666" to="3669">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">DET</f>
+ <f name="lemma">der</f>
+ <f name="msd">Case=Dat|Gender=Fem|Number=Sing|PronType=Art</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s1670_n26" from="3670" to="3675">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">NOUN</f>
+ <f name="lemma">Ebene</f>
+ <f name="msd">Gender=Fem|Number=Sing|Person=3</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s1670_n27" from="3676" to="3679">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">DET</f>
+ <f name="lemma">der</f>
+ <f name="msd">Case=Gen|Gender=Fem|Number=Sing|PronType=Art</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s1670_n28" from="3680" to="3687">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">NOUN</f>
+ <f name="lemma">Membran</f>
+ <f name="msd">Gender=Fem|Number=Sing|Person=3</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s1670_n29" from="3688" to="3702">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">ADJ</f>
+ <f name="lemma">rechtbeweglich</f>
+ <f name="msd">Degree=Pos|Variant=Short</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s1670_n30" from="3702" to="3703">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">PUNCT</f>
+ <f name="lemma">.</f>
+ <f name="msd">PunctType=Peri</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s1671_n1" from="3704" to="3707">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">DET</f>
+ <f name="lemma">Ein</f>
+ <f name="msd">Case=Nom|Gender=Masc|Number=Sing|PronType=Art</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s1671_n2" from="3708" to="3717">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">NOUN</f>
+ <f name="lemma">Austausch</f>
+ <f name="msd">Gender=Masc|Number=Sing|Person=3</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s1671_n3" from="3718" to="3721">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">ADP</f>
+ <f name="lemma">von</f>
+ <f name="msd">AdpType=Prep|Case=Dat</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s1671_n4" from="3722" to="3729">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">NOUN</f>
+ <f name="lemma">Lipid</f>
+ <f name="msd">Gender=Neut|Number=Plur|Person=3</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s1671_n5" from="3730" to="3738">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">ADP</f>
+ <f name="lemma">zwischen</f>
+ <f name="msd">AdpType=Prep|Case=Dat</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s1671_n6" from="3739" to="3742">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">DET</f>
+ <f name="lemma">den</f>
+ <f name="msd">Case=Dat|Number=Plur|PronType=Art</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s1671_n7" from="3743" to="3749">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">ADJ</f>
+ <f name="lemma">beide</f>
+ <f name="msd">Case=Dat|Number=Plur|Person=3</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s1671_n8" from="3750" to="3759">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">NOUN</f>
+ <f name="lemma">Schicht</f>
+ <f name="msd">Gender=Fem|Number=Plur|Person=3</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s1671_n9" from="3760" to="3767">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">ADV</f>
+ <f name="lemma">odergar</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s1671_n10" from="3768" to="3771">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">DET</f>
+ <f name="lemma">ein</f>
+ <f name="msd">Case=Nom|Gender=Neut|Number=Sing|PronType=Art</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s1671_n11" from="3772" to="3777">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">NOUN</f>
+ <f name="lemma">Lösen</f>
+ <f name="msd">Gender=Neut|Number=Sing|Person=3</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s1671_n12" from="3778" to="3783">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">DET</f>
+ <f name="lemma">eines</f>
+ <f name="msd">Case=Gen|Gender=Masc|Number=Sing|PronType=Art</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s1671_n13" from="3784" to="3790">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">NOUN</f>
+ <f name="lemma">Lipid</f>
+ <f name="msd">Case=Gen|Gender=Masc|Number=Sing|Person=3</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s1671_n14" from="3791" to="3794">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">ADP</f>
+ <f name="lemma">von</f>
+ <f name="msd">AdpType=Prep|Case=Dat</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s1671_n15" from="3795" to="3798">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">DET</f>
+ <f name="lemma">der</f>
+ <f name="msd">Case=Dat|Gender=Fem|Number=Sing|PronType=Art</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s1671_n16" from="3799" to="3806">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">NOUN</f>
+ <f name="lemma">Membran</f>
+ <f name="msd">Gender=Fem|Number=Sing|Person=3</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s1671_n17" from="3807" to="3810">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">AUX</f>
+ <f name="lemma">sein</f>
+ <f name="msd">Mood=Ind|Number=Sing|Person=3|Tense=Pres|VerbForm=Fin</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s1671_n18" from="3811" to="3817">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">ADV</f>
+ <f name="lemma">jedoch</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s1671_n19" from="3818" to="3822">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">ADV</f>
+ <f name="lemma">sehr</f>
+ <f name="msd">Degree=Pos</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s1671_n20" from="3823" to="3829">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">ADJ</f>
+ <f name="lemma">selten</f>
+ <f name="msd">Degree=Pos|Variant=Short</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s1671_n21" from="3829" to="3830">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">PUNCT</f>
+ <f name="lemma">.</f>
+ <f name="msd">PunctType=Peri</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s1672_n1" from="3831" to="3835">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">DET</f>
+ <f name="lemma">Eine</f>
+ <f name="msd">Case=Nom|Gender=Fem|Number=Sing|PronType=Art</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s1672_n2" from="3836" to="3844">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">ADJ</f>
+ <f name="lemma">zielen</f>
+ <f name="msd">Degree=Pos|Gender=Fem|Number=Sing</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s1672_n3" from="3845" to="3853">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">NOUN</f>
+ <f name="lemma">Bewegung</f>
+ <f name="msd">Gender=Fem|Number=Sing|Person=3</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s1672_n4" from="3854" to="3857">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">ADP</f>
+ <f name="lemma">von</f>
+ <f name="msd">AdpType=Prep|Case=Dat</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s1672_n5" from="3858" to="3863">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">DET</f>
+ <f name="lemma">einer</f>
+ <f name="msd">Case=Dat|Gender=Fem|Number=Sing|PronType=Art</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s1672_n6" from="3864" to="3876">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">NOUN</f>
+ <f name="lemma">Anseite</f>
+ <f name="msd">Gender=Fem|Number=Sing|Person=3</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s1672_n7" from="3877" to="3880">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">ADP</f>
+ <f name="lemma">zur</f>
+ <f name="msd">AdpType=Prep|Case=Dat</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s1672_n8" from="3881" to="3888">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">PRON</f>
+ <f name="lemma">ander</f>
+ <f name="msd">Case=Dat|Degree=Pos|Number=Plur</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s1672_n9" from="3888" to="3889">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">PUNCT</f>
+ <f name="lemma">(</f>
+ <f name="msd">PunctType=Brck</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s1672_n10" from="3890" to="3898">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">PROPN</f>
+ <f name="lemma">Flipflop</f>
+ <f name="msd">Person=3</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s1672_n11" from="3899" to="3900">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">PUNCT</f>
+ <f name="lemma">)</f>
+ <f name="msd">PunctType=Brck</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s1672_n12" from="3901" to="3904">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">AUX</f>
+ <f name="lemma">sein</f>
+ <f name="msd">Mood=Ind|Number=Sing|Person=3|Tense=Pres|VerbForm=Fin</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s1672_n13" from="3905" to="3918">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">ADV</f>
+ <f name="lemma">normalerweise</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s1672_n14" from="3919" to="3922">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">ADV</f>
+ <f name="lemma">nur</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s1672_n15" from="3923" to="3928">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">ADP</f>
+ <f name="lemma">unter</f>
+ <f name="msd">AdpType=Prep|Case=Dat</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s1672_n16" from="3929" to="3932">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">DET</f>
+ <f name="lemma">dem</f>
+ <f name="msd">Case=Dat|Gender=Neut|Number=Sing|PronType=Art</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s1672_n17" from="3933" to="3940">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">ADJ</f>
+ <f name="lemma">aktiv</f>
+ <f name="msd">Degree=Pos|Number=Sing</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s1672_n18" from="3941" to="3950">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">NOUN</f>
+ <f name="lemma">Wirken</f>
+ <f name="msd">Gender=Neut|Number=Sing|Person=3</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s1672_n19" from="3951" to="3954">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">ADP</f>
+ <f name="lemma">von</f>
+ <f name="msd">AdpType=Prep|Case=Dat</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s1672_n20" from="3955" to="3965">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">ADJ</f>
+ <f name="lemma">speziell</f>
+ <f name="msd">Case=Dat|Degree=Pos|Number=Plur</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s1672_n21" from="3966" to="3975">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">NOUN</f>
+ <f name="lemma">Protein</f>
+ <f name="msd">Case=Dat|Gender=Neut|Number=Plur|Person=3</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s1672_n22" from="3976" to="3977">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">PUNCT</f>
+ <f name="lemma">(</f>
+ <f name="msd">PunctType=Brck</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s1672_n23" from="3977" to="3987">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">ADJ</f>
+ <f name="lemma">sogenannte</f>
+ <f name="msd">Degree=Pos|Number=Plur</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s1672_n24" from="3988" to="3997">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">NOUN</f>
+ <f name="lemma">Flippasen</f>
+ <f name="msd">Person=3</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s1672_n25" from="3998" to="4001">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">CCONJ</f>
+ <f name="lemma">und</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s1672_n26" from="4002" to="4011">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">NOUN</f>
+ <f name="lemma">Floppase</f>
+ <f name="msd">Gender=Fem|Number=Plur|Person=3</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s1672_n27" from="4011" to="4012">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">PUNCT</f>
+ <f name="lemma">)</f>
+ <f name="msd">PunctType=Brck</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s1672_n28" from="4013" to="4018">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">ADP</f>
+ <f name="lemma">unter</f>
+ <f name="msd">AdpType=Prep|Case=Dat</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s1672_n29" from="4019" to="4028">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">NOUN</f>
+ <f name="lemma">Verbrauch</f>
+ <f name="msd">Gender=Masc|Number=Sing|Person=3</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s1672_n30" from="4029" to="4032">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">ADP</f>
+ <f name="lemma">von</f>
+ <f name="msd">AdpType=Prep|Case=Dat</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s1672_n31" from="4033" to="4052">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">NOUN</f>
+ <f name="lemma">Sphat</f>
+ <f name="msd">Person=3</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s1672_n32" from="4053" to="4054">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">PUNCT</f>
+ <f name="lemma">(</f>
+ <f name="msd">PunctType=Brck</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s1672_n33" from="4054" to="4057">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">PROPN</f>
+ <f name="lemma">ATP</f>
+ <f name="msd">Person=3</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s1672_n34" from="4057" to="4058">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">PUNCT</f>
+ <f name="lemma">)</f>
+ <f name="msd">PunctType=Brck</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s1672_n35" from="4059" to="4066">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">ADJ</f>
+ <f name="lemma">möglich</f>
+ <f name="msd">Degree=Pos|Variant=Short</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s1672_n36" from="4066" to="4067">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">PUNCT</f>
+ <f name="lemma">.</f>
+ <f name="msd">PunctType=Peri</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s1673_n1" from="4068" to="4073">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">ADV</f>
+ <f name="lemma">Dabei</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s1673_n2" from="4074" to="4088">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">VERB</f>
+ <f name="lemma">transportieren</f>
+ <f name="msd">Mood=Ind|Number=Plur|Person=3|Tense=Pres|VerbForm=Fin</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s1673_n3" from="4089" to="4098">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">NOUN</f>
+ <f name="lemma">Flippasen</f>
+ <f name="msd">Gender=Masc|Number=Plur|Person=3</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s1673_n4" from="4099" to="4105">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">NOUN</f>
+ <f name="lemma">Lipid</f>
+ <f name="msd">Gender=Neut|Number=Plur|Person=3</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s1673_n5" from="4106" to="4109">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">ADP</f>
+ <f name="lemma">von</f>
+ <f name="msd">AdpType=Prep|Case=Dat</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s1673_n6" from="4110" to="4113">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">DET</f>
+ <f name="lemma">der</f>
+ <f name="msd">Case=Dat|Gender=Fem|Number=Sing|PronType=Art</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s1673_n7" from="4114" to="4124">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">NOUN</f>
+ <f name="lemma">Seite</f>
+ <f name="msd">Gender=Fem|Number=Sing|Person=3</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s1673_n8" from="4125" to="4141">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">PROPN</f>
+ <f name="lemma">Amembran</f>
+ <f name="msd">Person=3</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s1673_n9" from="4142" to="4145">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">ADP</f>
+ <f name="lemma">zur</f>
+ <f name="msd">AdpType=Prep|Case=Acc</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s1673_n10" from="4146" to="4159">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">ADJ</f>
+ <f name="lemma">cytosolischen</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s1673_n11" from="4160" to="4165">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">NOUN</f>
+ <f name="lemma">Seite</f>
+ <f name="msd">Gender=Fem|Number=Sing|Person=3</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s1673_n12" from="4165" to="4166">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">PUNCT</f>
+ <f name="lemma">.</f>
+ <f name="msd">PunctType=Peri</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s1674_n1" from="4167" to="4176">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">NOUN</f>
+ <f name="lemma">Floppase</f>
+ <f name="msd">Gender=Fem|Number=Plur|Person=3</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s1674_n2" from="4177" to="4181">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">AUX</f>
+ <f name="lemma">sein</f>
+ <f name="msd">Mood=Ind|Number=Plur|Person=3|Tense=Pres|VerbForm=Fin</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s1674_n3" from="4182" to="4192">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">ADJ</f>
+ <f name="lemma">klassisch</f>
+ <f name="msd">Degree=Pos|Number=Plur</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s1674_n4" from="4193" to="4208">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">NOUN</f>
+ <f name="lemma">Transporter</f>
+ <f name="msd">Gender=Masc|Number=Plur|Person=3</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s1674_n5" from="4209" to="4212">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">CCONJ</f>
+ <f name="lemma">und</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s1674_n6" from="4213" to="4235">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">PROPN</f>
+ <f name="lemma">befördernmembranlipide</f>
+ <f name="msd">Person=3</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s1674_n7" from="4236" to="4239">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">ADP</f>
+ <f name="lemma">von</f>
+ <f name="msd">AdpType=Prep|Case=Dat</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s1674_n8" from="4240" to="4243">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">DET</f>
+ <f name="lemma">der</f>
+ <f name="msd">Case=Dat|Gender=Fem|Number=Sing|PronType=Art</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s1674_n9" from="4244" to="4257">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">ADJ</f>
+ <f name="lemma">cytosolisch</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s1674_n10" from="4258" to="4263">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">NOUN</f>
+ <f name="lemma">Seite</f>
+ <f name="msd">Gender=Fem|Number=Sing|Person=3</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s1674_n11" from="4264" to="4267">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">DET</f>
+ <f name="lemma">der</f>
+ <f name="msd">Case=Gen|Gender=Fem|Number=Sing|PronType=Art</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s1674_n12" from="4268" to="4281">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">NOUN</f>
+ <f name="lemma">Plasmamembran</f>
+ <f name="msd">Gender=Fem|Number=Sing|Person=3</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s1674_n13" from="4282" to="4291">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">VERB</f>
+ <f name="lemma">nachaußen</f>
+ <f name="msd">VerbForm=Inf</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s1674_n14" from="4291" to="4292">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">PUNCT</f>
+ <f name="lemma">.</f>
+ <f name="msd">PunctType=Peri</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s1675_n1" from="4293" to="4300">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">ADJ</f>
+ <f name="lemma">weit</f>
+ <f name="msd">Degree=Cmp|Number=Plur</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s1675_n2" from="4301" to="4312">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">NOUN</f>
+ <f name="lemma">Transporter</f>
+ <f name="msd">Gender=Masc|Number=Plur|Person=3</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s1675_n3" from="4313" to="4316">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">ADP</f>
+ <f name="lemma">für</f>
+ <f name="msd">AdpType=Prep|Case=Acc</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s1675_n4" from="4317" to="4330">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">NOUN</f>
+ <f name="lemma">Membranlipide</f>
+ <f name="msd">Person=3</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s1675_n5" from="4331" to="4335">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">AUX</f>
+ <f name="lemma">sein</f>
+ <f name="msd">Mood=Ind|Number=Plur|Person=3|Tense=Pres|VerbForm=Fin</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s1675_n6" from="4336" to="4347">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">NOUN</f>
+ <f name="lemma">Scramblase</f>
+ <f name="msd">Gender=Fem|Number=Plur|Person=3</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s1675_n7" from="4347" to="4348">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">PUNCT</f>
+ <f name="lemma">,</f>
+ <f name="msd">PunctType=Comm</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s1675_n8" from="4349" to="4352">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">PRON</f>
+ <f name="lemma">die</f>
+ <f name="msd">Case=Nom|Number=Plur|Person=3|PronType=Rel</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s1675_n9" from="4353" to="4363">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">ADV</f>
+ <f name="lemma">allerdings</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s1675_n10" from="4364" to="4369">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">PART</f>
+ <f name="lemma">nicht</f>
+ <f name="msd">Polarity=Neg</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s1675_n11" from="4370" to="4382">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">ADJ</f>
+ <f name="lemma">abhängig</f>
+ <f name="msd">Degree=Pos|Variant=Short</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s1675_n12" from="4383" to="4398">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">NOUN</f>
+ <f name="lemma">Membranlipidein</f>
+ <f name="msd">Gender=Neut|Number=Sing|Person=3</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s1675_n13" from="4399" to="4407">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">NOUN</f>
+ <f name="lemma">Richtung</f>
+ <f name="msd">Gender=Fem|Number=Sing|Person=3</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s1675_n14" from="4408" to="4413">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">PRON</f>
+ <f name="lemma">sein</f>
+ <f name="msd">Case=Gen|Gender=Masc|Number=Sing|Person=3|Poss=Yes|PronType=Prs</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s1675_n15" from="4414" to="4438">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">NOUN</f>
+ <f name="lemma">Gradient</f>
+ <f name="msd">Gender=Masc|Number=Sing|Person=3</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s1675_n16" from="4439" to="4450">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">VERB</f>
+ <f name="lemma">austauschen</f>
+ <f name="msd">Mood=Ind|Number=Plur|Person=3|Tense=Pres|VerbForm=Fin</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s1675_n17" from="4450" to="4451">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">PUNCT</f>
+ <f name="lemma">,</f>
+ <f name="msd">PunctType=Comm</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s1675_n18" from="4452" to="4455">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">SCONJ</f>
+ <f name="lemma">bis</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s1675_n19" from="4456" to="4460">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">PRON</f>
+ <f name="lemma">sich</f>
+ <f name="msd">Case=Acc|Person=3|PronType=Prs|Reflex=Yes</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s1675_n20" from="4461" to="4477">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">NOUN</f>
+ <f name="lemma">Gleichgewicht</f>
+ <f name="msd">Gender=Neut|Number=Sing|Person=3</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s1675_n21" from="4478" to="4489">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">VERB</f>
+ <f name="lemma">einstellen</f>
+ <f name="msd">Aspect=Perf|VerbForm=Part</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s1675_n22" from="4490" to="4493">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">AUX</f>
+ <f name="lemma">haben</f>
+ <f name="msd">Mood=Ind|Number=Sing|Person=3|Tense=Pres|VerbForm=Fin</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s1675_n23" from="4493" to="4494">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">PUNCT</f>
+ <f name="lemma">.</f>
+ <f name="msd">PunctType=Peri</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s1676_n1" from="4496" to="4499">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">ADV</f>
+ <f name="lemma">Wie</f>
+ <f name="msd">PronType=Int</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s1676_n2" from="4500" to="4507">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">ADJ</f>
+ <f name="lemma">flüssig</f>
+ <f name="msd">Degree=Pos|Variant=Short</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s1676_n3" from="4508" to="4511">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">DET</f>
+ <f name="lemma">die</f>
+ <f name="msd">Case=Nom|Gender=Fem|Number=Sing|PronType=Art</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s1676_n4" from="4512" to="4530">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">NOUN</f>
+ <f name="lemma">Schicht</f>
+ <f name="msd">Gender=Fem|Number=Sing|Person=3</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s1676_n5" from="4531" to="4534">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">AUX</f>
+ <f name="lemma">sein</f>
+ <f name="msd">Mood=Ind|Number=Sing|Person=3|Tense=Pres|VerbForm=Fin</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s1676_n6" from="4534" to="4535">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">PUNCT</f>
+ <f name="lemma">,</f>
+ <f name="msd">PunctType=Comm</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s1676_n7" from="4536" to="4544">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">VERB</f>
+ <f name="lemma">hängtvor</f>
+ <f name="msd">Mood=Ind|Number=Sing|Person=3|Tense=Pres|VerbForm=Fin</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s1676_n8" from="4545" to="4550">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">PRON</f>
+ <f name="lemma">all</f>
+ <f name="msd">Case=Dat|Gender=Neut|Number=Sing|Person=3|PronType=Ind,Neg,Tot</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s1676_n9" from="4551" to="4554">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">ADP</f>
+ <f name="lemma">von</f>
+ <f name="msd">AdpType=Prep|Case=Dat</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s1676_n10" from="4555" to="4558">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">DET</f>
+ <f name="lemma">der</f>
+ <f name="msd">Case=Dat|Gender=Fem|Number=Sing|PronType=Art</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s1676_n11" from="4559" to="4565">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">NOUN</f>
+ <f name="lemma">Anzahl</f>
+ <f name="msd">Gender=Fem|Number=Sing|Person=3</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s1676_n12" from="4566" to="4569">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">DET</f>
+ <f name="lemma">der</f>
+ <f name="msd">Case=Gen|Number=Plur|PronType=Art</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s1676_n13" from="4570" to="4585">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">NOUN</f>
+ <f name="lemma">Bindung</f>
+ <f name="msd">Gender=Fem|Number=Plur|Person=3</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s1676_n14" from="4586" to="4588">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">ADP</f>
+ <f name="lemma">in</f>
+ <f name="msd">AdpType=Prep|Case=Dat</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s1676_n15" from="4589" to="4592">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">DET</f>
+ <f name="lemma">den</f>
+ <f name="msd">Case=Dat|Number=Plur|PronType=Art</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s1676_n16" from="4593" to="4604">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">ADJ</f>
+ <f name="lemma">hydrophoben</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s1676_n17" from="4605" to="4628">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">NOUN</f>
+ <f name="lemma">Kette</f>
+ <f name="msd">Gender=Fem|Number=Plur|Person=3</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s1676_n18" from="4629" to="4632">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">DET</f>
+ <f name="lemma">der</f>
+ <f name="msd">Case=Gen|Number=Plur|PronType=Art</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s1676_n19" from="4633" to="4639">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">NOUN</f>
+ <f name="lemma">Lipid</f>
+ <f name="msd">Gender=Masc|Number=Plur|Person=3</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s1676_n20" from="4640" to="4642">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">ADP</f>
+ <f name="lemma">ab</f>
+ <f name="msd">PartType=Vbp</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s1676_n21" from="4642" to="4643">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">PUNCT</f>
+ <f name="lemma">,</f>
+ <f name="msd">PunctType=Comm</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s1676_n22" from="4644" to="4650">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">DET</f>
+ <f name="lemma">einig</f>
+ <f name="msd">Case=Nom|Number=Plur|Person=3|PronType=Ind,Neg,Tot</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s1676_n23" from="4651" to="4660">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">NOUN</f>
+ <f name="lemma">Bakterie</f>
+ <f name="msd">Gender=Fem|Number=Plur|Person=3</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s1676_n24" from="4662" to="4668">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">VERB</f>
+ <f name="lemma">nutzen</f>
+ <f name="msd">Mood=Ind|Number=Plur|Person=3|Tense=Pres|VerbForm=Fin</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s1676_n25" from="4669" to="4673">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">ADV</f>
+ <f name="lemma">auch</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s1676_n26" from="4674" to="4693">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">NOUN</f>
+ <f name="lemma">Verzweigung</f>
+ <f name="msd">Gender=Fem|Number=Plur|Person=3</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s1676_n27" from="4693" to="4694">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">PUNCT</f>
+ <f name="lemma">.</f>
+ <f name="msd">PunctType=Peri</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s1677_n1" from="4695" to="4697">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">ADV</f>
+ <f name="lemma">Je</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s1677_n2" from="4698" to="4702">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">ADV</f>
+ <f name="lemma">mehr</f>
+ <f name="msd">Degree=Cmp</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s1677_n3" from="4702" to="4703">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">PUNCT</f>
+ <f name="lemma">,</f>
+ <f name="msd">PunctType=Comm</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s1677_n4" from="4704" to="4709">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">ADV</f>
+ <f name="lemma">desto</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s1677_n5" from="4710" to="4719">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">ADJ</f>
+ <f name="lemma">flüssig</f>
+ <f name="msd">Degree=Cmp|Variant=Short</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s1677_n6" from="4720" to="4723">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">AUX</f>
+ <f name="lemma">sein</f>
+ <f name="msd">Mood=Ind|Number=Sing|Person=3|Tense=Pres|VerbForm=Fin</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s1677_n7" from="4724" to="4727">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">DET</f>
+ <f name="lemma">die</f>
+ <f name="msd">Case=Nom|Gender=Fem|Number=Sing|PronType=Art</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s1677_n8" from="4728" to="4735">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">NOUN</f>
+ <f name="lemma">Membran</f>
+ <f name="msd">Gender=Fem|Number=Sing|Person=3</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s1677_n9" from="4735" to="4736">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">PUNCT</f>
+ <f name="lemma">.</f>
+ <f name="msd">PunctType=Peri</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s1678_n1" from="4737" to="4749">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">ADV</f>
+ <f name="lemma">Andererseits</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s1678_n2" from="4750" to="4754">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">AUX</f>
+ <f name="lemma">werden</f>
+ <f name="msd">Mood=Ind|Number=Sing|Person=3|Tense=Pres|VerbForm=Fin</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s1678_n3" from="4755" to="4758">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">DET</f>
+ <f name="lemma">der</f>
+ <f name="msd">Case=Nom|Gender=Masc|Number=Sing|PronType=Art</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s1678_n4" from="4759" to="4763">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">NOUN</f>
+ <f name="lemma">Grad</f>
+ <f name="msd">Gender=Masc|Number=Sing|Person=3</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s1678_n5" from="4764" to="4767">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">DET</f>
+ <f name="lemma">der</f>
+ <f name="msd">Case=Gen|Gender=Fem|Number=Sing|PronType=Art</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s1678_n6" from="4768" to="4779">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">NOUN</f>
+ <f name="lemma">Flüssigkeit</f>
+ <f name="msd">Gender=Fem|Number=Sing|Person=3</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s1678_n7" from="4780" to="4785">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">ADP</f>
+ <f name="lemma">durch</f>
+ <f name="msd">AdpType=Prep|Case=Acc</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s1678_n8" from="4786" to="4804">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">ADJ</f>
+ <f name="lemma">andereeingelagerte</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s1678_n9" from="4805" to="4813">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">NOUN</f>
+ <f name="lemma">Molekül</f>
+ <f name="msd">Gender=Neut|Number=Plur|Person=3</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s1678_n10" from="4814" to="4822">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">VERB</f>
+ <f name="lemma">bestimmen</f>
+ <f name="msd">Aspect=Perf|VerbForm=Part</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s1678_n11" from="4822" to="4823">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">PUNCT</f>
+ <f name="lemma">.</f>
+ <f name="msd">PunctType=Peri</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s1679_n1" from="4824" to="4835">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">NOUN</f>
+ <f name="lemma">Cholesterin</f>
+ <f name="msd">Gender=Neut|Number=Sing|Person=3</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s1679_n2" from="4836" to="4839">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">ADP</f>
+ <f name="lemma">zum</f>
+ <f name="msd">AdpType=Prep|Case=Dat</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s1679_n3" from="4840" to="4848">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">NOUN</f>
+ <f name="lemma">Beispiel</f>
+ <f name="msd">Gender=Neut|Number=Sing|Person=3</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s1679_n4" from="4849" to="4859">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">VERB</f>
+ <f name="lemma">vermindern</f>
+ <f name="msd">Mood=Ind|Number=Sing|Person=3|Tense=Pres|VerbForm=Fin</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s1679_n5" from="4860" to="4870">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">ADV</f>
+ <f name="lemma">einerseits</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s1679_n6" from="4871" to="4874">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">DET</f>
+ <f name="lemma">die</f>
+ <f name="msd">Case=Acc|Gender=Fem|Number=Sing|PronType=Art</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s1679_n7" from="4875" to="4884">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">NOUN</f>
+ <f name="lemma">Fluidität</f>
+ <f name="msd">Gender=Fem|Number=Sing|Person=3</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s1679_n8" from="4884" to="4885">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">PUNCT</f>
+ <f name="lemma">,</f>
+ <f name="msd">PunctType=Comm</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s1679_n9" from="4886" to="4896">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">VERB</f>
+ <f name="lemma">verhindern</f>
+ <f name="msd">Mood=Ind|Number=Sing|Person=3|Tense=Pres|VerbForm=Fin</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s1679_n10" from="4897" to="4901">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">ADV</f>
+ <f name="lemma">aber</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s1679_n11" from="4902" to="4905">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">ADP</f>
+ <f name="lemma">bei</f>
+ <f name="msd">AdpType=Prep|Case=Dat</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s1679_n12" from="4906" to="4915">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">ADJ</f>
+ <f name="lemma">niedrig</f>
+ <f name="msd">Case=Dat|Degree=Pos|Number=Plur</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s1679_n13" from="4916" to="4928">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">NOUN</f>
+ <f name="lemma">Temperatur</f>
+ <f name="msd">Gender=Fem|Number=Plur|Person=3</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s1679_n14" from="4928" to="4929">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">PUNCT</f>
+ <f name="lemma">,</f>
+ <f name="msd">PunctType=Comm</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s1679_n15" from="4930" to="4934">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">SCONJ</f>
+ <f name="lemma">dass</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s1679_n16" from="4935" to="4939">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">PRON</f>
+ <f name="lemma">sich</f>
+ <f name="msd">Case=Acc|Person=3|PronType=Prs|Reflex=Yes</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s1679_n17" from="4940" to="4943">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">DET</f>
+ <f name="lemma">die</f>
+ <f name="msd">Case=Nom|Gender=Fem|Number=Sing|PronType=Art</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s1679_n18" from="4944" to="4951">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">NOUN</f>
+ <f name="lemma">Membran</f>
+ <f name="msd">Gender=Fem|Number=Sing|Person=3</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s1679_n19" from="4952" to="4960">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">ADJ</f>
+ <f name="lemma">gelartig</f>
+ <f name="msd">Degree=Pos|Variant=Short</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s1679_n20" from="4961" to="4971">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">VERB</f>
+ <f name="lemma">verfestigen</f>
+ <f name="msd">Mood=Ind|Number=Sing|Person=3|Tense=Pres|VerbForm=Fin</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s1679_n21" from="4971" to="4972">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">PUNCT</f>
+ <f name="lemma">.</f>
+ <f name="msd">PunctType=Peri</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s1680_n1" from="4973" to="4980">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">NOUN</f>
+ <f name="lemma">Vitamin</f>
+ <f name="msd">Gender=Neut|Number=Sing|Person=3</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s1680_n2" from="4981" to="4982">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">NOUN</f>
+ <f name="lemma">E</f>
+ <f name="msd">Gender=Neut|Number=Sing|Person=3</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s1680_n3" from="4983" to="4986">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">AUX</f>
+ <f name="lemma">sein</f>
+ <f name="msd">Mood=Ind|Number=Sing|Person=3|Tense=Pres|VerbForm=Fin</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s1680_n4" from="4987" to="4990">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">DET</f>
+ <f name="lemma">ein</f>
+ <f name="msd">Case=Nom|Gender=Neut|Number=Sing|PronType=Art</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s1680_n5" from="4991" to="5002">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">NOUN</f>
+ <f name="lemma">Antioxidans</f>
+ <f name="msd">Person=3</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s1680_n6" from="5003" to="5004">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">PUNCT</f>
+ <f name="lemma">(</f>
+ <f name="msd">PunctType=Brck</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s1680_n7" from="5004" to="5007">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">CCONJ</f>
+ <f name="lemma">wie</f>
+ <f name="msd">ConjType=Comp</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s1680_n8" from="5008" to="5015">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">NOUN</f>
+ <f name="lemma">Vitamin</f>
+ <f name="msd">Person=3</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s1680_n9" from="5016" to="5017">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">NOUN</f>
+ <f name="lemma">C</f>
+ <f name="msd">Gender=Neut|Number=Sing|Person=3</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s1680_n10" from="5017" to="5018">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">PUNCT</f>
+ <f name="lemma">)</f>
+ <f name="msd">PunctType=Brck</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s1680_n11" from="5018" to="5019">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">PUNCT</f>
+ <f name="lemma">,</f>
+ <f name="msd">PunctType=Comm</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s1680_n12" from="5020" to="5022">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">PRON</f>
+ <f name="lemma">es</f>
+ <f name="msd">Case=Nom|Gender=Neut|Number=Sing|Person=3|PronType=Prs</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s1680_n13" from="5023" to="5030">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">VERB</f>
+ <f name="lemma">schützen</f>
+ <f name="msd">Mood=Ind|Number=Sing|Person=3|Tense=Pres|VerbForm=Fin</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s1680_n14" from="5031" to="5034">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">DET</f>
+ <f name="lemma">die</f>
+ <f name="msd">Case=Acc|Number=Plur|PronType=Art</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s1680_n15" from="5035" to="5071">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">NOUN</f>
+ <f name="lemma">uesättigtenkohlenwasserstoffkettenknown</f>
+ <f name="msd">Gender=Fem|Number=Plur|Person=3</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s1680_n16" from="5072" to="5075">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">DET</f>
+ <f name="lemma">der</f>
+ <f name="msd">Case=Gen|Number=Plur|PronType=Art</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s1680_n17" from="5076" to="5089">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">NOUN</f>
+ <f name="lemma">Pholipid</f>
+ <f name="msd">Gender=Neut|Number=Plur|Person=3</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s1680_n18" from="5090" to="5093">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">DET</f>
+ <f name="lemma">der</f>
+ <f name="msd">Case=Gen|Gender=Fem|Number=Sing|PronType=Art</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s1680_n19" from="5094" to="5104">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">NOUN</f>
+ <f name="lemma">Bran</f>
+ <f name="msd">Gender=Fem|Number=Sing|Person=3</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s1680_n20" from="5105" to="5108">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">ADP</f>
+ <f name="lemma">vor</f>
+ <f name="msd">AdpType=Prep|Case=Dat</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s1680_n21" from="5109" to="5112">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">DET</f>
+ <f name="lemma">der</f>
+ <f name="msd">Case=Dat|Gender=Fem|Number=Sing|PronType=Art</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s1680_n22" from="5113" to="5123">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">NOUN</f>
+ <f name="lemma">Zerstörung</f>
+ <f name="msd">Gender=Fem|Number=Sing|Person=3</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s1680_n23" from="5124" to="5129">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">ADP</f>
+ <f name="lemma">durch</f>
+ <f name="msd">AdpType=Prep|Case=Acc</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s1680_n24" from="5130" to="5135">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">ADJ</f>
+ <f name="lemma">frei</f>
+ <f name="msd">Degree=Pos|Number=Plur</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s1680_n25" from="5136" to="5144">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">NOUN</f>
+ <f name="lemma">Radikal</f>
+ <f name="msd">Gender=Neut|Number=Plur|Person=3</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s1680_n26" from="5145" to="5146">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">PUNCT</f>
+ <f name="lemma">(</f>
+ <f name="msd">PunctType=Brck</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s1680_n27" from="5146" to="5163">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">NOUN</f>
+ <f name="lemma">Peroxidation</f>
+ <f name="msd">Person=3</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s1680_n28" from="5163" to="5164">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">PUNCT</f>
+ <f name="lemma">)</f>
+ <f name="msd">PunctType=Brck</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s1680_n29" from="5164" to="5165">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">PUNCT</f>
+ <f name="lemma">.</f>
+ <f name="msd">PunctType=Peri</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s1681_n1" from="5167" to="5182">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">NOUN</f>
+ <f name="lemma">Protein</f>
+ <f name="msd">Gender=Masc|Number=Plur|Person=3</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s1681_n2" from="5184" to="5188">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">PROPN</f>
+ <f name="lemma">mini</f>
+ <f name="msd">Person=3</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s1681_n3" from="5188" to="5189">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">X</f>
+ <f name="lemma">|</f>
+ <f name="msd">Foreign=Yes|Person=3</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s1681_n4" from="5189" to="5194">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">NOUN</f>
+ <f name="lemma">unknown</f>
+ <f name="msd">Person=3</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s1681_n5" from="5194" to="5195">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">X</f>
+ <f name="lemma">|</f>
+ <f name="msd">Foreign=Yes|Person=3</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s1681_n6" from="5195" to="5201">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">NOUN</f>
+ <f name="lemma">Modell</f>
+ <f name="msd">Gender=Neut|Number=Sing|Person=3</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s1681_n7" from="5202" to="5205">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">DET</f>
+ <f name="lemma">der</f>
+ <f name="msd">Case=Gen|Gender=Fem|Number=Sing|PronType=Art</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s1681_n8" from="5206" to="5217">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">NOUN</f>
+ <f name="lemma">Membran</f>
+ <f name="msd">Gender=Fem|Number=Sing|Person=3</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s1681_n9" from="5218" to="5222">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">ADP</f>
+ <f name="lemma">nach</f>
+ <f name="msd">AdpType=Prep|Case=Dat</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s1681_n10" from="5223" to="5247">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">NOUN</f>
+ <f name="lemma">Modell</f>
+ <f name="msd">Gender=Neut|Number=Sing|Person=3</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s1681_n11" from="5248" to="5260">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">ADJ</f>
+ <f name="lemma">verscheiden</f>
+ <f name="msd">Degree=Pos|Number=Plur</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s1681_n12" from="5261" to="5266">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">NOUN</f>
+ <f name="lemma">Art</f>
+ <f name="msd">Gender=Fem|Number=Plur|Person=3</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s1681_n13" from="5267" to="5270">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">ADP</f>
+ <f name="lemma">von</f>
+ <f name="msd">AdpType=Prep|Case=Dat</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s1681_n14" from="5271" to="5287">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">NOUN</f>
+ <f name="lemma">Protein</f>
+ <f name="msd">Case=Dat|Gender=Masc|Number=Plur|Person=3</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s1681_n15" from="5287" to="5288">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">PUNCT</f>
+ <f name="lemma">,</f>
+ <f name="msd">PunctType=Comm</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s1681_n16" from="5289" to="5292">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">PRON</f>
+ <f name="lemma">die</f>
+ <f name="msd">Case=Nom|Number=Plur|Person=3|PronType=Rel</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s1681_n17" from="5293" to="5295">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">ADP</f>
+ <f name="lemma">in</f>
+ <f name="msd">AdpType=Prep|Case=Acc</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s1681_n18" from="5296" to="5299">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">DET</f>
+ <f name="lemma">die</f>
+ <f name="msd">Case=Acc|Gender=Fem|Number=Sing|PronType=Art</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s1681_n19" from="5300" to="5318">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">NOUN</f>
+ <f name="lemma">Schicht</f>
+ <f name="msd">Gender=Fem|Number=Sing|Person=3</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s1681_n20" from="5319" to="5330">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">VERB</f>
+ <f name="lemma">einlagern</f>
+ <f name="msd">Aspect=Perf|VerbForm=Part</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s1681_n21" from="5331" to="5335">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">AUX</f>
+ <f name="lemma">sein</f>
+ <f name="msd">Mood=Ind|Number=Plur|Person=3|Tense=Pres|VerbForm=Fin</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s1681_n22" from="5335" to="5336">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">PUNCT</f>
+ <f name="lemma">,</f>
+ <f name="msd">PunctType=Comm</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s1681_n23" from="5337" to="5343">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">VERB</f>
+ <f name="lemma">sorgen</f>
+ <f name="msd">Mood=Ind|Number=Plur|Person=3|Tense=Pres|VerbForm=Fin</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s1681_n24" from="5344" to="5348">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">ADP</f>
+ <f name="lemma">über</f>
+ <f name="msd">AdpType=Prep|Case=Dat</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s1681_n25" from="5349" to="5376">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">NOUN</f>
+ <f name="lemma">Aktion</f>
+ <f name="msd">Gender=Fem|Number=Plur|Person=3</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s1681_n26" from="5377" to="5396">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">ADJ</f>
+ <f name="lemma">fürunterschiedlich</f>
+ <f name="msd">Degree=Pos|Number=Plur</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s1681_n27" from="5397" to="5410">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">NOUN</f>
+ <f name="lemma">Eigenschaft</f>
+ <f name="msd">Gender=Fem|Number=Plur|Person=3</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s1681_n28" from="5411" to="5414">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">DET</f>
+ <f name="lemma">der</f>
+ <f name="msd">Case=Gen|Number=Plur|PronType=Art</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s1681_n29" from="5415" to="5427">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">NOUN</f>
+ <f name="lemma">Bran</f>
+ <f name="msd">Gender=Fem|Number=Plur|Person=3</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s1681_n30" from="5427" to="5428">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">PUNCT</f>
+ <f name="lemma">.</f>
+ <f name="msd">PunctType=Peri</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s1682_n1" from="5429" to="5433">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">ADV</f>
+ <f name="lemma">Auch</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s1682_n2" from="5434" to="5437">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">DET</f>
+ <f name="lemma">die</f>
+ <f name="msd">Case=Nom|Number=Plur|PronType=Art</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s1682_n3" from="5438" to="5444">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">ADJ</f>
+ <f name="lemma">beide</f>
+ <f name="msd">Case=Nom|Number=Plur|Person=3</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s1682_n4" from="5445" to="5451">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">NOUN</f>
+ <f name="lemma">Seite</f>
+ <f name="msd">Gender=Fem|Number=Plur|Person=3</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s1682_n5" from="5452" to="5457">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">DET</f>
+ <f name="lemma">einer</f>
+ <f name="msd">Case=Gen|Gender=Fem|Number=Sing|PronType=Art</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s1682_n6" from="5458" to="5468">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">NOUN</f>
+ <f name="lemma">Bran</f>
+ <f name="msd">Gender=Fem|Number=Sing|Person=3</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s1682_n7" from="5469" to="5475">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">AUX</f>
+ <f name="lemma">können</f>
+ <f name="msd">Mood=Ind|Number=Plur|Person=3|Tense=Pres|VerbForm=Fin|VerbType=Mod</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s1682_n8" from="5476" to="5480">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">PRON</f>
+ <f name="lemma">sich</f>
+ <f name="msd">Case=Acc|Person=3|PronType=Prs|Reflex=Yes</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s1682_n9" from="5481" to="5486">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">ADP</f>
+ <f name="lemma">durch</f>
+ <f name="msd">AdpType=Prep|Case=Acc</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s1682_n10" from="5487" to="5499">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">NOUN</f>
+ <f name="lemma">Ordnung</f>
+ <f name="msd">Gender=Fem|Number=Sing|Person=3</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s1682_n11" from="5500" to="5503">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">DET</f>
+ <f name="lemma">der</f>
+ <f name="msd">Case=Gen|Number=Plur|PronType=Art</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s1682_n12" from="5504" to="5519">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">NOUN</f>
+ <f name="lemma">Protein</f>
+ <f name="msd">Gender=Masc|Number=Plur|Person=3</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s1682_n13" from="5520" to="5525">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">ADJ</f>
+ <f name="lemma">stark</f>
+ <f name="msd">Degree=Pos|Variant=Short</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s1682_n14" from="5526" to="5539">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">VERB</f>
+ <f name="lemma">unterscheiden</f>
+ <f name="msd">VerbForm=Inf</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s1682_n15" from="5539" to="5540">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">PUNCT</f>
+ <f name="lemma">.</f>
+ <f name="msd">PunctType=Peri</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s1683_n1" from="5541" to="5548">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">SCONJ</f>
+ <f name="lemma">Während</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s1683_n2" from="5549" to="5563">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">ADV</f>
+ <f name="lemma">beispielsweise</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s1683_n3" from="5564" to="5574">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">NOUN</f>
+ <f name="lemma">Tor</f>
+ <f name="msd">Gender=Masc|Number=Plur|Person=3</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s1683_n4" from="5575" to="5578">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">ADP</f>
+ <f name="lemma">für</f>
+ <f name="msd">AdpType=Prep|Case=Acc</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s1683_n5" from="5579" to="5602">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">NOUN</f>
+ <f name="lemma">Kommunikation</f>
+ <f name="msd">Gender=Fem|Number=Sing|Person=3</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s1683_n6" from="5603" to="5606">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">CCONJ</f>
+ <f name="lemma">und</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s1683_n7" from="5607" to="5619">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">NOUN</f>
+ <f name="lemma">Detektion</f>
+ <f name="msd">Person=3</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s1683_n8" from="5620" to="5623">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">ADP</f>
+ <f name="lemma">von</f>
+ <f name="msd">AdpType=Prep|Case=Dat</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s1683_n9" from="5624" to="5641">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">NOUN</f>
+ <f name="lemma">Veränderung</f>
+ <f name="msd">Gender=Fem|Number=Sing|Person=3</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s1683_n10" from="5642" to="5646">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">ADP</f>
+ <f name="lemma">nach</f>
+ <f name="msd">AdpType=Prep|Case=Dat</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s1683_n11" from="5647" to="5652">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">ADV</f>
+ <f name="lemma">außen</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s1683_n12" from="5653" to="5656">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">ADP</f>
+ <f name="lemma">hin</f>
+ <f name="msd">AdpType=Circ</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s1683_n13" from="5657" to="5666">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">VERB</f>
+ <f name="lemma">richten</f>
+ <f name="msd">Aspect=Perf|VerbForm=Part</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s1683_n14" from="5667" to="5671">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">AUX</f>
+ <f name="lemma">sein</f>
+ <f name="msd">Mood=Ind|Number=Plur|Person=3|Tense=Pres|VerbForm=Fin</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s1683_n15" from="5671" to="5672">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">PUNCT</f>
+ <f name="lemma">,</f>
+ <f name="msd">PunctType=Comm</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s1683_n16" from="5673" to="5681">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">VERB</f>
+ <f name="lemma">weisenan</f>
+ <f name="msd">Mood=Ind|Number=Plur|Person=3|Tense=Pres|VerbForm=Fin</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s1683_n17" from="5682" to="5692">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">NOUN</f>
+ <f name="lemma">Reaktion</f>
+ <f name="msd">Gender=Fem|Number=Plur|Person=3</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s1683_n18" from="5693" to="5703">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">ADJ</f>
+ <f name="lemma">beteiligen</f>
+ <f name="msd">Degree=Pos|Number=Plur</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s1683_n19" from="5704" to="5710">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">NOUN</f>
+ <f name="lemma">Enzyme</f>
+ <f name="msd">Gender=Masc|Number=Plur|Person=3</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s1683_n20" from="5711" to="5715">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">ADP</f>
+ <f name="lemma">nach</f>
+ <f name="msd">AdpType=Prep|Case=Dat</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s1683_n21" from="5716" to="5721">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">ADV</f>
+ <f name="lemma">innen</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s1683_n22" from="5722" to="5723">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">PUNCT</f>
+ <f name="lemma">(</f>
+ <f name="msd">PunctType=Brck</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s1683_n23" from="5723" to="5726">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">PRON</f>
+ <f name="lemma">sie</f>
+ <f name="msd">Case=Nom|Number=Plur|Person=3|PronType=Prs</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s1683_n24" from="5727" to="5733">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">VERB</f>
+ <f name="lemma">liegen</f>
+ <f name="msd">Mood=Ind|Number=Plur|Person=3|Tense=Pres|VerbForm=Fin</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s1683_n25" from="5734" to="5738">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">ADV</f>
+ <f name="lemma">also</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s1683_n26" from="5739" to="5751">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">PROPN</f>
+ <f name="lemma">imCytoplasma</f>
+ <f name="msd">Person=3</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s1683_n27" from="5751" to="5752">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">PUNCT</f>
+ <f name="lemma">)</f>
+ <f name="msd">PunctType=Brck</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s1683_n28" from="5752" to="5753">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">PUNCT</f>
+ <f name="lemma">.</f>
+ <f name="msd">PunctType=Peri</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s1684_n1" from="5754" to="5759">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">ADJ</f>
+ <f name="lemma">viel</f>
+ <f name="msd">Case=Nom|Degree=Pos|Number=Plur|Person=3</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s1684_n2" from="5760" to="5768">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">NOUN</f>
+ <f name="lemma">Protein</f>
+ <f name="msd">Gender=Neut|Number=Plur|Person=3</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s1684_n3" from="5769" to="5773">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">AUX</f>
+ <f name="lemma">sein</f>
+ <f name="msd">Mood=Ind|Number=Plur|Person=3|Tense=Pres|VerbForm=Fin</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s1684_n4" from="5774" to="5776">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">ADP</f>
+ <f name="lemma">am</f>
+ <f name="msd">AdpType=Prep|Case=Dat</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s1684_n5" from="5777" to="5793">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">NOUN</f>
+ <f name="lemma">Antransport</f>
+ <f name="msd">Gender=Masc|Number=Sing|Person=3</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s1684_n6" from="5794" to="5803">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">VERB</f>
+ <f name="lemma">beteiligen</f>
+ <f name="msd">Aspect=Perf|VerbForm=Part</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s1684_n7" from="5803" to="5804">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">PUNCT</f>
+ <f name="lemma">,</f>
+ <f name="msd">PunctType=Comm</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s1684_n8" from="5805" to="5807">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">PRON</f>
+ <f name="lemma">d.</f>
+ <f name="msd">Case=Nom|Gender=Neut|Number=Sing|Person=3|PronType=Dem</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s1684_n9" from="5808" to="5810">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">VERB</f>
+ <f name="lemma">h.</f>
+ <f name="msd">Mood=Ind|Number=Sing|Person=3|Tense=Pres|VerbForm=Fin</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s1684_n10" from="5811" to="5813">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">ADP</f>
+ <f name="lemma">am</f>
+ <f name="msd">AdpType=Prep|Case=Dat</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s1684_n11" from="5814" to="5828">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">NOUN</f>
+ <f name="lemma">Austausch</f>
+ <f name="msd">Gender=Masc|Number=Sing|Person=3</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s1684_n12" from="5829" to="5832">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">CCONJ</f>
+ <f name="lemma">und</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s1684_n13" from="5833" to="5836">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">DET</f>
+ <f name="lemma">der</f>
+ <f name="msd">Case=Dat|Gender=Fem|Number=Sing|PronType=Art</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s1684_n14" from="5837" to="5854">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">NOUN</f>
+ <f name="lemma">Übertragung</f>
+ <f name="msd">Gender=Fem|Number=Sing|Person=3</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s1684_n15" from="5855" to="5859">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">ADP</f>
+ <f name="lemma">über</f>
+ <f name="msd">AdpType=Prep|Case=Acc</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s1684_n16" from="5860" to="5881">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">PROPN</f>
+ <f name="lemma">SpeziFischerezeptoren</f>
+ <f name="msd">Person=3</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s1684_n17" from="5881" to="5882">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">PUNCT</f>
+ <f name="lemma">.</f>
+ <f name="msd">PunctType=Peri</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s1685_n1" from="5883" to="5886">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">ADJ</f>
+ <f name="lemma">gut</f>
+ <f name="msd">Degree=Pos|Variant=Short</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s1685_n2" from="5887" to="5897">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">VERB</f>
+ <f name="lemma">untersuchen</f>
+ <f name="msd">Aspect=Perf|VerbForm=Part</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s1685_n3" from="5898" to="5901">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">AUX</f>
+ <f name="lemma">sein</f>
+ <f name="msd">Mood=Ind|Number=Sing|Person=3|Tense=Pres|VerbForm=Fin</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s1685_n4" from="5902" to="5906">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">DET</f>
+ <f name="lemma">eine</f>
+ <f name="msd">Case=Nom|Gender=Fem|Number=Sing|PronType=Art</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s1685_n5" from="5907" to="5915">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">NOUN</f>
+ <f name="lemma">Vielzahl</f>
+ <f name="msd">Gender=Fem|Number=Sing|Person=3</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s1685_n6" from="5916" to="5919">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">ADP</f>
+ <f name="lemma">von</f>
+ <f name="msd">AdpType=Prep|Case=Dat</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s1685_n7" from="5920" to="5936">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">NOUN</f>
+ <f name="lemma">Protein</f>
+ <f name="msd">Case=Dat|Gender=Masc|Number=Plur|Person=3</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s1685_n8" from="5936" to="5937">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">PUNCT</f>
+ <f name="lemma">,</f>
+ <f name="msd">PunctType=Comm</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s1685_n9" from="5938" to="5957">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">ADJ</f>
+ <f name="lemma">dieunterschiedliche</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s1685_n10" from="5958" to="5967">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">NOUN</f>
+ <f name="lemma">Zellarte</f>
+ <f name="msd">Gender=Fem|Number=Plur|Person=3</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s1685_n11" from="5968" to="5971">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">CCONJ</f>
+ <f name="lemma">und</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s1685_n12" from="5972" to="5977">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">DET</f>
+ <f name="lemma">deren</f>
+ <f name="msd">PronType=Dem</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s1685_n13" from="5978" to="5990">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">NOUN</f>
+ <f name="lemma">Stadium</f>
+ <f name="msd">Gender=Neut|Number=Plur|Person=3</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s1685_n14" from="5991" to="6007">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">VERB</f>
+ <f name="lemma">charakterisieren</f>
+ <f name="msd">Mood=Ind|Number=Plur|Person=3|Tense=Pres|VerbForm=Fin</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s1685_n15" from="6008" to="6015">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">PRON</f>
+ <f name="lemma">undsich</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s1685_n16" from="6016" to="6019">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">ADP</f>
+ <f name="lemma">von</f>
+ <f name="msd">AdpType=Prep|Case=Dat</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s1685_n17" from="6020" to="6030">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">NOUN</f>
+ <f name="lemma">Individuum</f>
+ <f name="msd">Gender=Neut|Number=Sing|Person=3</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s1685_n18" from="6031" to="6033">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">ADP</f>
+ <f name="lemma">zu</f>
+ <f name="msd">AdpType=Prep|Case=Dat</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s1685_n19" from="6034" to="6044">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">NOUN</f>
+ <f name="lemma">Individuum</f>
+ <f name="msd">Gender=Neut|Number=Sing|Person=3</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s1685_n20" from="6045" to="6058">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">VERB</f>
+ <f name="lemma">unterscheiden</f>
+ <f name="msd">VerbForm=Inf</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s1685_n21" from="6059" to="6065">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">AUX</f>
+ <f name="lemma">können</f>
+ <f name="msd">Mood=Ind|Number=Plur|Person=3|Tense=Pres|VerbForm=Fin|VerbType=Mod</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s1685_n22" from="6066" to="6067">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">PUNCT</f>
+ <f name="lemma">(</f>
+ <f name="msd">PunctType=Brck</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s1685_n23" from="6067" to="6070">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">ADP</f>
+ <f name="lemma">zum</f>
+ <f name="msd">AdpType=Prep|Case=Dat</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s1685_n24" from="6071" to="6079">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">NOUN</f>
+ <f name="lemma">Beispiel</f>
+ <f name="msd">Gender=Neut|Number=Sing|Person=3</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s1685_n25" from="6080" to="6085">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">NOUN</f>
+ <f name="lemma">Blut-</f>
+ <f name="msd">Hyph=Yes</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s1685_n26" from="6086" to="6089">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">CCONJ</f>
+ <f name="lemma">und</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s1685_n27" from="6090" to="6103">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">NOUN</f>
+ <f name="lemma">Gruppe</f>
+ <f name="msd">Gender=Fem|Number=Plur|Person=3</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s1685_n28" from="6103" to="6104">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">PUNCT</f>
+ <f name="lemma">)</f>
+ <f name="msd">PunctType=Brck</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s1685_n29" from="6104" to="6105">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">PUNCT</f>
+ <f name="lemma">.</f>
+ <f name="msd">PunctType=Peri</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s1686_n1" from="6106" to="6110">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">ADV</f>
+ <f name="lemma">Dazu</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s1686_n2" from="6111" to="6118">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">VERB</f>
+ <f name="lemma">gehören</f>
+ <f name="msd">Mood=Ind|Number=Plur|Person=3|Tense=Pres|VerbForm=Fin</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s1686_n3" from="6119" to="6123">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">ADV</f>
+ <f name="lemma">auch</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s1686_n4" from="6124" to="6132">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">NOUN</f>
+ <f name="lemma">Molekül</f>
+ <f name="msd">Gender=Neut|Number=Plur|Person=3</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s1686_n5" from="6133" to="6134">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">PUNCT</f>
+ <f name="lemma">(</f>
+ <f name="msd">PunctType=Brck</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s1686_n6" from="6134" to="6139">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">ADV</f>
+ <f name="lemma">meist</f>
+ <f name="msd">Degree=Sup</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s1686_n7" from="6140" to="6153">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">NOUN</f>
+ <f name="lemma">Protein</f>
+ <f name="msd">Gender=Masc|Number=Plur|Person=3</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s1686_n8" from="6153" to="6154">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">PUNCT</f>
+ <f name="lemma">)</f>
+ <f name="msd">PunctType=Brck</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s1686_n9" from="6154" to="6155">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">PUNCT</f>
+ <f name="lemma">,</f>
+ <f name="msd">PunctType=Comm</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s1686_n10" from="6156" to="6159">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">PRON</f>
+ <f name="lemma">die</f>
+ <f name="msd">Case=Nom|Number=Plur|Person=3|PronType=Rel</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s1686_n11" from="6160" to="6164">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">ADP</f>
+ <f name="lemma">nach</f>
+ <f name="msd">AdpType=Prep|Case=Dat</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s1686_n12" from="6165" to="6168">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">DET</f>
+ <f name="lemma">dem</f>
+ <f name="msd">Case=Dat|Gender=Neut|Number=Sing|PronType=Art</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s1686_n13" from="6169" to="6194">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">NOUN</f>
+ <f name="lemma">Prinzip</f>
+ <f name="msd">Gender=Neut|Number=Sing|Person=3</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s1686_n14" from="6195" to="6224">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">NOUN</f>
+ <f name="lemma">Unterscheidung</f>
+ <f name="msd">Gender=Fem|Number=Sing|Person=3</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s1686_n15" from="6225" to="6234">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">VERB</f>
+ <f name="lemma">beitragen</f>
+ <f name="msd">Mood=Ind|Number=Plur|Person=3|Tense=Pres|VerbForm=Fin</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s1686_n16" from="6234" to="6235">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">PUNCT</f>
+ <f name="lemma">.</f>
+ <f name="msd">PunctType=Peri</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s1687_n1" from="6236" to="6240">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">ADP</f>
+ <f name="lemma">Nach</f>
+ <f name="msd">AdpType=Prep|Case=Dat</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s1687_n2" from="6241" to="6244">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">DET</f>
+ <f name="lemma">dem</f>
+ <f name="msd">Case=Dat|Gender=Neut|Number=Sing|PronType=Art</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s1687_n3" from="6245" to="6266">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">NOUN</f>
+ <f name="lemma">Modell</f>
+ <f name="msd">Gender=Neut|Number=Sing|Person=3</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s1687_n4" from="6267" to="6271">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">AUX</f>
+ <f name="lemma">sein</f>
+ <f name="msd">Mood=Ind|Number=Plur|Person=3|Tense=Pres|VerbForm=Fin</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s1687_n5" from="6272" to="6275">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">DET</f>
+ <f name="lemma">die</f>
+ <f name="msd">Case=Nom|Number=Plur|PronType=Art</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s1687_n6" from="6276" to="6296">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">NOUN</f>
+ <f name="lemma">Einenicht</f>
+ <f name="msd">Gender=Neut|Number=Plur|Person=3</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s1687_n7" from="6297" to="6302">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">ADJ</f>
+ <f name="lemma">starr</f>
+ <f name="msd">Degree=Pos|Variant=Short</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s1687_n8" from="6303" to="6305">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">ADP</f>
+ <f name="lemma">in</f>
+ <f name="msd">AdpType=Prep|Case=Dat</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s1687_n9" from="6306" to="6309">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">DET</f>
+ <f name="lemma">der</f>
+ <f name="msd">Case=Dat|Gender=Fem|Number=Sing|PronType=Art</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s1687_n10" from="6310" to="6317">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">NOUN</f>
+ <f name="lemma">Membran</f>
+ <f name="msd">Gender=Fem|Number=Sing|Person=3</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s1687_n11" from="6318" to="6325">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">VERB</f>
+ <f name="lemma">fixieren</f>
+ <f name="msd">Aspect=Perf|VerbForm=Part</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s1687_n12" from="6325" to="6326">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">PUNCT</f>
+ <f name="lemma">,</f>
+ <f name="msd">PunctType=Comm</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s1687_n13" from="6327" to="6334">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">CCONJ</f>
+ <f name="lemma">sondern</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s1687_n14" from="6335" to="6337">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">ADP</f>
+ <f name="lemma">zu</f>
+ <f name="msd">AdpType=Prep|Case=Dat</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s1687_n15" from="6338" to="6370">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">NOUN</f>
+ <f name="lemma">Veränderung</f>
+ <f name="msd">Gender=Fem|Number=Plur|Person=3</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s1687_n16" from="6371" to="6380">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">ADP</f>
+ <f name="lemma">innerhalb</f>
+ <f name="msd">AdpType=Prep</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s1687_n17" from="6381" to="6384">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">DET</f>
+ <f name="lemma">der</f>
+ <f name="msd">Case=Gen|Gender=Fem|Number=Sing|PronType=Art</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s1687_n18" from="6385" to="6392">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">NOUN</f>
+ <f name="lemma">Membran</f>
+ <f name="msd">Gender=Fem|Number=Sing|Person=3</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s1687_n19" from="6393" to="6398">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">ADJ</f>
+ <f name="lemma">fähig</f>
+ <f name="msd">Degree=Pos|Variant=Short</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s1687_n20" from="6398" to="6399">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">PUNCT</f>
+ <f name="lemma">.</f>
+ <f name="msd">PunctType=Peri</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s1688_n1" from="6400" to="6405">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">DET</f>
+ <f name="lemma">dies</f>
+ <f name="msd">Case=Nom|Gender=Fem|Number=Sing|PronType=Dem</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s1688_n2" from="6406" to="6413">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">NOUN</f>
+ <f name="lemma">Dynamik</f>
+ <f name="msd">Gender=Fem|Number=Sing|Person=3</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s1688_n3" from="6414" to="6420">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">VERB</f>
+ <f name="lemma">bilden</f>
+ <f name="msd">Mood=Ind|Number=Sing|Person=3|Tense=Pres|VerbForm=Fin</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s1688_n4" from="6421" to="6424">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">DET</f>
+ <f name="lemma">die</f>
+ <f name="msd">Case=Acc|Gender=Fem|Number=Sing|PronType=Art</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s1688_n5" from="6425" to="6438">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">NOUN</f>
+ <f name="lemma">Voraussetzung</f>
+ <f name="msd">Gender=Fem|Number=Sing|Person=3</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s1688_n6" from="6439" to="6442">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">ADP</f>
+ <f name="lemma">für</f>
+ <f name="msd">AdpType=Prep|Case=Acc</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s1688_n7" from="6443" to="6446">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">DET</f>
+ <f name="lemma">die</f>
+ <f name="msd">Case=Acc|Number=Plur|PronType=Art</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s1688_n8" from="6447" to="6468">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">ADJ</f>
+ <f name="lemma">Auslösungmannigfacher</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s1688_n9" from="6469" to="6481">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">NOUN</f>
+ <f name="lemma">Kette</f>
+ <f name="msd">Gender=Fem|Number=Plur|Person=3</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s1688_n10" from="6482" to="6485">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">ADP</f>
+ <f name="lemma">auf</f>
+ <f name="msd">AdpType=Prep|Case=Dat</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s1688_n11" from="6486" to="6495">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">NOUN</f>
+ <f name="lemma">Ebene</f>
+ <f name="msd">Gender=Fem|Number=Sing|Person=3</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s1688_n12" from="6496" to="6502">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">CCONJ</f>
+ <f name="lemma">sowohl</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s1688_n13" from="6503" to="6516">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">ADJ</f>
+ <f name="lemma">intrazellulär</f>
+ <f name="msd">Degree=Pos|Variant=Short</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s1688_n14" from="6517" to="6520">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">CCONJ</f>
+ <f name="lemma">als</f>
+ <f name="msd">ConjType=Comp</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s1688_n15" from="6521" to="6533">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">ADV</f>
+ <f name="lemma">auchzwischen</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s1688_n16" from="6534" to="6548">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">ADJ</f>
+ <f name="lemma">kooperieren</f>
+ <f name="msd">Case=Dat|Degree=Pos|Number=Plur</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s1688_n17" from="6549" to="6555">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">NOUN</f>
+ <f name="lemma">Zelle</f>
+ <f name="msd">Gender=Fem|Number=Plur|Person=3</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s1688_n18" from="6555" to="6556">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">PUNCT</f>
+ <f name="lemma">.</f>
+ <f name="msd">PunctType=Peri</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s1689_n1" from="6557" to="6561">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">DET</f>
+ <f name="lemma">Eine</f>
+ <f name="msd">Case=Nom|Gender=Fem|Number=Sing|PronType=Art</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s1689_n2" from="6562" to="6572">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">NOUN</f>
+ <f name="lemma">Einteilung</f>
+ <f name="msd">Gender=Fem|Number=Sing|Person=3</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s1689_n3" from="6573" to="6576">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">DET</f>
+ <f name="lemma">der</f>
+ <f name="msd">Case=Gen|Number=Plur|PronType=Art</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s1689_n4" from="6577" to="6592">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">NOUN</f>
+ <f name="lemma">Protein</f>
+ <f name="msd">Gender=Masc|Number=Plur|Person=3</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s1689_n5" from="6593" to="6596">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">AUX</f>
+ <f name="lemma">sein</f>
+ <f name="msd">Mood=Ind|Number=Sing|Person=3|Tense=Pres|VerbForm=Fin</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s1689_n6" from="6597" to="6606">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">ADJ</f>
+ <f name="lemma">nachihrer</f>
+ <f name="msd">Degree=Pos|Gender=Fem|Number=Sing</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s1689_n7" from="6607" to="6618">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">NOUN</f>
+ <f name="lemma">Verankerung</f>
+ <f name="msd">Gender=Fem|Number=Sing|Person=3</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s1689_n8" from="6619" to="6621">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">ADP</f>
+ <f name="lemma">in</f>
+ <f name="msd">AdpType=Prep|Case=Dat</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s1689_n9" from="6622" to="6625">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">DET</f>
+ <f name="lemma">der</f>
+ <f name="msd">Case=Dat|Gender=Fem|Number=Sing|PronType=Art</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s1689_n10" from="6626" to="6644">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">NOUN</f>
+ <f name="lemma">Schicht</f>
+ <f name="msd">Gender=Fem|Number=Sing|Person=3</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s1689_n11" from="6645" to="6652">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">ADJ</f>
+ <f name="lemma">möglich</f>
+ <f name="msd">Degree=Pos|Variant=Short</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s1689_n12" from="6652" to="6653">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">PUNCT</f>
+ <f name="lemma">:</f>
+ <f name="msd">PunctType=Peri</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s1689_n13" from="6656" to="6664">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">NOUN</f>
+ <f name="lemma">Funktion</f>
+ <f name="msd">Gender=Fem|Number=Sing|Person=3</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s1689_n14" from="6666" to="6669">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">DET</f>
+ <f name="lemma">Das</f>
+ <f name="msd">Case=Nom|Gender=Neut|Number=Sing|PronType=Art</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s1689_n15" from="6670" to="6680">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">NOUN</f>
+ <f name="lemma">Zytoplasma</f>
+ <f name="msd">Gender=Neut|Number=Sing|Person=3</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s1689_n16" from="6681" to="6683">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">ADP</f>
+ <f name="lemma">im</f>
+ <f name="msd">AdpType=Prep|Case=Dat</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s1689_n17" from="6684" to="6691">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">NOUN</f>
+ <f name="lemma">Inner</f>
+ <f name="msd">Case=Dat|Number=Plur|Person=3</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s1689_n18" from="6692" to="6697">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">DET</f>
+ <f name="lemma">einer</f>
+ <f name="msd">Case=Gen|Gender=Fem|Number=Sing|PronType=Art</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s1689_n19" from="6698" to="6703">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">NOUN</f>
+ <f name="lemma">Zelle</f>
+ <f name="msd">Gender=Fem|Number=Sing|Person=3</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s1689_n20" from="6704" to="6708">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">AUX</f>
+ <f name="lemma">werden</f>
+ <f name="msd">Mood=Ind|Number=Sing|Person=3|Tense=Pres|VerbForm=Fin</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s1689_n21" from="6709" to="6714">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">ADP</f>
+ <f name="lemma">durch</f>
+ <f name="msd">AdpType=Prep|Case=Acc</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s1689_n22" from="6715" to="6729">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">PROPN</f>
+ <f name="lemma">Biomembran</f>
+ <f name="msd">Person=3</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s1689_n23" from="6730" to="6734">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">ADP</f>
+ <f name="lemma">nach</f>
+ <f name="msd">AdpType=Prep|Case=Dat</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s1689_n24" from="6735" to="6740">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">ADV</f>
+ <f name="lemma">außen</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s1689_n25" from="6741" to="6751">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">VERB</f>
+ <f name="lemma">abgrenzen</f>
+ <f name="msd">Aspect=Perf|VerbForm=Part</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s1689_n26" from="6751" to="6752">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">PUNCT</f>
+ <f name="lemma">.</f>
+ <f name="msd">PunctType=Peri</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s1690_n1" from="6753" to="6758">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">PRON</f>
+ <f name="lemma">Diese</f>
+ <f name="msd">Case=Acc|Gender=Fem|Number=Sing|Person=3|PronType=Dem</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s1690_n2" from="6759" to="6764">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">VERB</f>
+ <f name="lemma">nennen</f>
+ <f name="msd">Mood=Ind|Number=Sing|Person=3|Tense=Pres|VerbForm=Fin</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s1690_n3" from="6765" to="6768">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">PRON</f>
+ <f name="lemma">man</f>
+ <f name="msd">Case=Nom|Number=Sing|Person=3|PronType=Ind,Neg,Tot</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s1690_n4" from="6769" to="6780">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">NOUN</f>
+ <f name="lemma">Membran</f>
+ <f name="msd">Gender=Fem|Number=Sing|Person=3</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s1690_n5" from="6780" to="6781">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">PUNCT</f>
+ <f name="lemma">,</f>
+ <f name="msd">PunctType=Comm</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s1690_n6" from="6782" to="6795">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">NOUN</f>
+ <f name="lemma">Plasmamembran</f>
+ <f name="msd">Gender=Fem|Number=Sing|Person=3</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s1690_n7" from="6795" to="6796">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">PUNCT</f>
+ <f name="lemma">,</f>
+ <f name="msd">PunctType=Comm</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s1690_n8" from="6797" to="6808">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">NOUN</f>
+ <f name="lemma">Plasmalemma</f>
+ <f name="msd">Person=3</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s1690_n9" from="6809" to="6813">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">CCONJ</f>
+ <f name="lemma">oder</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s1690_n10" from="6814" to="6822">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">PROPN</f>
+ <f name="lemma">Membrana</f>
+ <f name="msd">Gender=Fem|Number=Sing|Person=3</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s1690_n11" from="6823" to="6833">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">PROPN</f>
+ <f name="lemma">cellularis</f>
+ <f name="msd">Person=3</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s1690_n12" from="6833" to="6834">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">PUNCT</f>
+ <f name="lemma">.</f>
+ <f name="msd">PunctType=Peri</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s1691_n1" from="6835" to="6847">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">NOUN</f>
+ <f name="lemma">Bran</f>
+ <f name="msd">Gender=Fem|Number=Plur|Person=3</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s1691_n2" from="6848" to="6856">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">VERB</f>
+ <f name="lemma">besitzen</f>
+ <f name="msd">Mood=Ind|Number=Plur|Person=3|Tense=Pres|VerbForm=Fin</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s1691_n3" from="6857" to="6860">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">DET</f>
+ <f name="lemma">die</f>
+ <f name="msd">Case=Acc|Number=Plur|PronType=Art</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s1691_n4" from="6861" to="6870">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">ADJ</f>
+ <f name="lemma">folgen</f>
+ <f name="msd">Degree=Pos|Number=Plur</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s1691_n5" from="6871" to="6879">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">NOUN</f>
+ <f name="lemma">Aufgabe</f>
+ <f name="msd">Gender=Fem|Number=Plur|Person=3</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s1691_n6" from="6879" to="6880">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">PUNCT</f>
+ <f name="lemma">:</f>
+ <f name="msd">PunctType=Peri</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s1691_n7" from="6883" to="6892">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">NOUN</f>
+ <f name="lemma">Fluidität</f>
+ <f name="msd">Gender=Fem|Number=Sing|Person=3</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s1691_n8" from="6894" to="6898">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">X</f>
+ <f name="lemma">mini</f>
+ <f name="msd">Person=3</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s1691_n9" from="6898" to="6899">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">X</f>
+ <f name="lemma">|</f>
+ <f name="msd">Foreign=Yes|Person=3</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s1691_n10" from="6899" to="6907">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">NOUN</f>
+ <f name="lemma">Einfluss</f>
+ <f name="msd">Gender=Masc|Number=Sing|Person=3</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s1691_n11" from="6908" to="6921">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">ADJ</f>
+ <f name="lemma">ungesättigter</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s1691_n12" from="6922" to="6932">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">NOUN</f>
+ <f name="lemma">Säure</f>
+ <f name="msd">Gender=Fem|Number=Plur|Person=3</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s1691_n13" from="6933" to="6936">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">ADP</f>
+ <f name="lemma">auf</f>
+ <f name="msd">AdpType=Prep|Case=Acc</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s1691_n14" from="6937" to="6955">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">NOUN</f>
+ <f name="lemma">Struktur</f>
+ <f name="msd">Gender=Fem|Number=Sing|Person=3</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s1691_n15" from="6956" to="6959">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">DET</f>
+ <f name="lemma">Die</f>
+ <f name="msd">Case=Nom|Gender=Fem|Number=Sing|PronType=Art</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s1691_n16" from="6960" to="6969">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">NOUN</f>
+ <f name="lemma">Fluidität</f>
+ <f name="msd">Gender=Fem|Number=Sing|Person=3</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s1691_n17" from="6970" to="6975">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">DET</f>
+ <f name="lemma">einer</f>
+ <f name="msd">Case=Gen|Gender=Fem|Number=Sing|PronType=Art</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s1691_n18" from="6976" to="6986">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">NOUN</f>
+ <f name="lemma">Bran</f>
+ <f name="msd">Gender=Fem|Number=Sing|Person=3</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s1691_n19" from="6987" to="6992">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">VERB</f>
+ <f name="lemma">hängen</f>
+ <f name="msd">Mood=Ind|Number=Sing|Person=3|Tense=Pres|VerbForm=Fin</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s1691_n20" from="6993" to="6996">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">ADP</f>
+ <f name="lemma">von</f>
+ <f name="msd">AdpType=Prep|Case=Dat</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s1691_n21" from="6997" to="7000">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">DET</f>
+ <f name="lemma">der</f>
+ <f name="msd">Case=Dat|Gender=Fem|Number=Sing|PronType=Art</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s1691_n22" from="7001" to="7011">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">NOUN</f>
+ <f name="lemma">Temperatur</f>
+ <f name="msd">Gender=Fem|Number=Sing|Person=3</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s1691_n23" from="7012" to="7014">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">ADP</f>
+ <f name="lemma">ab</f>
+ <f name="msd">PartType=Vbp</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s1691_n24" from="7014" to="7015">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">PUNCT</f>
+ <f name="lemma">.</f>
+ <f name="msd">PunctType=Peri</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s1692_n1" from="7016" to="7020">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">DET</f>
+ <f name="lemma">Eine</f>
+ <f name="msd">Case=Nom|Gender=Fem|Number=Sing|PronType=Art</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s1692_n2" from="7021" to="7028">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">NOUN</f>
+ <f name="lemma">Membran</f>
+ <f name="msd">Gender=Fem|Number=Sing|Person=3</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s1692_n3" from="7029" to="7032">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">ADP</f>
+ <f name="lemma">aus</f>
+ <f name="msd">AdpType=Prep|Case=Dat</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s1692_n4" from="7033" to="7051">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">NOUN</f>
+ <f name="lemma">Phosphatidylcholin</f>
+ <f name="msd">Person=3</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s1692_n5" from="7052" to="7055">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">CCONJ</f>
+ <f name="lemma">und</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s1692_n6" from="7056" to="7079">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">NOUN</f>
+ <f name="lemma">Anolamin</f>
+ <f name="msd">Person=3</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s1692_n7" from="7079" to="7080">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">PUNCT</f>
+ <f name="lemma">,</f>
+ <f name="msd">PunctType=Comm</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s1692_n8" from="7080" to="7085">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">DET</f>
+ <f name="lemma">deren</f>
+ <f name="msd">PronType=Rel</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s1692_n9" from="7086" to="7100">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">NOUN</f>
+ <f name="lemma">Rest</f>
+ <f name="msd">Gender=Neut|Number=Plur|Person=3</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s1692_n10" from="7101" to="7110">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">VERB</f>
+ <f name="lemma">sättigen</f>
+ <f name="msd">Aspect=Perf|VerbForm=Part</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s1692_n11" from="7111" to="7115">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">AUX</f>
+ <f name="lemma">sein</f>
+ <f name="msd">Mood=Ind|Number=Plur|Person=3|Tense=Pres|VerbForm=Fin</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s1692_n12" from="7115" to="7116">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">PUNCT</f>
+ <f name="lemma">,</f>
+ <f name="msd">PunctType=Comm</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s1692_n13" from="7117" to="7121">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">AUX</f>
+ <f name="lemma">sein</f>
+ <f name="msd">Mood=Ind|Number=Sing|Person=3|Tense=Pres|VerbForm=Fin</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s1692_n14" from="7122" to="7125">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">ADP</f>
+ <f name="lemma">bei</f>
+ <f name="msd">AdpType=Prep|Case=Dat</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s1692_n15" from="7126" to="7128">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">NUM</f>
+ <f name="lemma">37</f>
+ <f name="msd">Number=Plur|NumType=Card|Person=3</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s1692_n16" from="7129" to="7130">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">NOUN</f>
+ <f name="lemma">°</f>
+ <f name="msd">Gender=Masc|Number=Plur|Person=3</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s1692_n17" from="7130" to="7131">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">NOUN</f>
+ <f name="lemma">C</f>
+ <f name="msd">Gender=Neut|Number=Plur|Person=3</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s1692_n18" from="7132" to="7137">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">ADJ</f>
+ <f name="lemma">recht</f>
+ <f name="msd">Degree=Pos|Variant=Short</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s1692_n19" from="7138" to="7143">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">ADJ</f>
+ <f name="lemma">fluid</f>
+ <f name="msd">Degree=Pos|Variant=Short</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s1692_n20" from="7143" to="7144">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">PUNCT</f>
+ <f name="lemma">.</f>
+ <f name="msd">PunctType=Peri</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s1693_n1" from="7145" to="7147">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">ADP</f>
+ <f name="lemma">In</f>
+ <f name="msd">AdpType=Prep|Case=Dat</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s1693_n2" from="7148" to="7154">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">DET</f>
+ <f name="lemma">dies</f>
+ <f name="msd">Case=Dat|Gender=Masc|Number=Sing|PronType=Dem</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s1693_n3" from="7155" to="7162">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">NOUN</f>
+ <f name="lemma">Zustand</f>
+ <f name="msd">Gender=Masc|Number=Sing|Person=3</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s1693_n4" from="7163" to="7169">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">AUX</f>
+ <f name="lemma">können</f>
+ <f name="msd">Mood=Ind|Number=Sing|Person=3|Tense=Pres|VerbForm=Fin|VerbType=Mod</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s1693_n5" from="7170" to="7173">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">PRON</f>
+ <f name="lemma">man</f>
+ <f name="msd">Case=Nom|Number=Sing|Person=3|PronType=Ind,Neg,Tot</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s1693_n6" from="7174" to="7177">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">DET</f>
+ <f name="lemma">die</f>
+ <f name="msd">Case=Acc|Gender=Fem|Number=Sing|PronType=Art</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s1693_n7" from="7178" to="7185">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">NOUN</f>
+ <f name="lemma">Membran</f>
+ <f name="msd">Gender=Fem|Number=Sing|Person=3</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s1693_n8" from="7186" to="7189">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">CCONJ</f>
+ <f name="lemma">als</f>
+ <f name="msd">ConjType=Comp</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s1693_n9" from="7190" to="7207">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">ADJ</f>
+ <f name="lemma">zweidimensional</f>
+ <f name="msd">Case=Acc|Degree=Pos|Gender=Masc|Number=Sing</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s1693_n10" from="7208" to="7223">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">NOUN</f>
+ <f name="lemma">Kristall</f>
+ <f name="msd">Gender=Neut|Number=Sing|Person=3</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s1693_n11" from="7224" to="7234">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">VERB</f>
+ <f name="lemma">betrachten</f>
+ <f name="msd">VerbForm=Inf</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s1693_n12" from="7234" to="7235">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">PUNCT</f>
+ <f name="lemma">.</f>
+ <f name="msd">PunctType=Peri</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s1694_n1" from="7236" to="7239">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">DET</f>
+ <f name="lemma">Die</f>
+ <f name="msd">Case=Nom|Number=Plur|PronType=Art</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s1694_n2" from="7240" to="7251">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">NOUN</f>
+ <f name="lemma">Sachse</f>
+ <f name="msd">Gender=Fem|Number=Plur|Person=3</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s1694_n3" from="7252" to="7255">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">DET</f>
+ <f name="lemma">der</f>
+ <f name="msd">Case=Gen|Number=Plur|PronType=Art</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s1694_n4" from="7256" to="7269">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">NOUN</f>
+ <f name="lemma">Pholipid</f>
+ <f name="msd">Person=3</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s1694_n5" from="7270" to="7277">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">VERB</f>
+ <f name="lemma">richten</f>
+ <f name="msd">Mood=Ind|Number=Plur|Person=3|Tense=Pres|VerbForm=Fin</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s1694_n6" from="7278" to="7282">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">PRON</f>
+ <f name="lemma">sich</f>
+ <f name="msd">Case=Acc|Person=3|PronType=Prs|Reflex=Yes</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s1694_n7" from="7283" to="7291">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">ADJ</f>
+ <f name="lemma">parallel</f>
+ <f name="msd">Degree=Pos|Variant=Short</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s1694_n8" from="7292" to="7295">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">ADP</f>
+ <f name="lemma">aus</f>
+ <f name="msd">PartType=Vbp</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s1694_n9" from="7295" to="7296">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">PUNCT</f>
+ <f name="lemma">,</f>
+ <f name="msd">PunctType=Comm</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s1694_n10" from="7297" to="7313">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">PROPN</f>
+ <f name="lemma">diepHospholipide</f>
+ <f name="msd">Person=3</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s1694_n11" from="7314" to="7320">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">ADV</f>
+ <f name="lemma">selbst</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s1694_n12" from="7321" to="7327">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">AUX</f>
+ <f name="lemma">können</f>
+ <f name="msd">Mood=Ind|Number=Plur|Person=3|Tense=Pres|VerbForm=Fin|VerbType=Mod</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s1694_n13" from="7328" to="7332">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">PRON</f>
+ <f name="lemma">sich</f>
+ <f name="msd">Case=Acc|Person=3|PronType=Prs|Reflex=Yes</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s1694_n14" from="7333" to="7339">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">VERB</f>
+ <f name="lemma">drehen</f>
+ <f name="msd">VerbForm=Inf</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s1694_n15" from="7340" to="7343">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">CCONJ</f>
+ <f name="lemma">und</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s1694_n16" from="7344" to="7346">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">ADP</f>
+ <f name="lemma">in</f>
+ <f name="msd">AdpType=Prep|Case=Dat</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s1694_n17" from="7347" to="7350">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">DET</f>
+ <f name="lemma">der</f>
+ <f name="msd">Case=Dat|Gender=Fem|Number=Sing|PronType=Art</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s1694_n18" from="7351" to="7356">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">NOUN</f>
+ <f name="lemma">Ebene</f>
+ <f name="msd">Gender=Fem|Number=Sing|Person=3</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s1694_n19" from="7357" to="7368">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">VERB</f>
+ <f name="lemma">freibewegen</f>
+ <f name="msd">VerbForm=Inf</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s1694_n20" from="7368" to="7369">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">PUNCT</f>
+ <f name="lemma">.</f>
+ <f name="msd">PunctType=Peri</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s1695_n1" from="7370" to="7373">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">ADP</f>
+ <f name="lemma">Bis</f>
+ <f name="msd">AdpType=Prep</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s1695_n2" from="7374" to="7376">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">ADP</f>
+ <f name="lemma">zu</f>
+ <f name="msd">AdpType=Prep|Case=Dat</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s1695_n3" from="7377" to="7382">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">DET</f>
+ <f name="lemma">einer</f>
+ <f name="msd">Case=Dat|Gender=Fem|Number=Sing|PronType=Art</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s1695_n4" from="7383" to="7391">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">ADJ</f>
+ <f name="lemma">gewiss</f>
+ <f name="msd">Degree=Pos|Number=Sing</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s1695_n5" from="7392" to="7402">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">NOUN</f>
+ <f name="lemma">Temperatur</f>
+ <f name="msd">Gender=Fem|Number=Sing|Person=3</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s1695_n6" from="7402" to="7403">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">PUNCT</f>
+ <f name="lemma">,</f>
+ <f name="msd">PunctType=Comm</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s1695_n7" from="7404" to="7407">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">DET</f>
+ <f name="lemma">der</f>
+ <f name="msd">Case=Dat|Gender=Fem|Number=Sing|PronType=Art</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s1695_n8" from="7408" to="7427">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">NOUN</f>
+ <f name="lemma">Temperatur</f>
+ <f name="msd">Gender=Fem|Number=Sing|Person=3</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s1695_n9" from="7427" to="7428">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">PUNCT</f>
+ <f name="lemma">,</f>
+ <f name="msd">PunctType=Comm</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s1695_n10" from="7429" to="7435">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">AUX</f>
+ <f name="lemma">istdie</f>
+ <f name="msd">Mood=Ind|Number=Sing|Person=3|Tense=Pres|VerbForm=Fin</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s1695_n11" from="7436" to="7444">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">NOUN</f>
+ <f name="lemma">Bewegung</f>
+ <f name="msd">Gender=Fem|Number=Sing|Person=3</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s1695_n12" from="7445" to="7448">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">DET</f>
+ <f name="lemma">der</f>
+ <f name="msd">Case=Gen|Number=Plur|PronType=Art</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s1695_n13" from="7449" to="7462">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">NOUN</f>
+ <f name="lemma">Pholipid</f>
+ <f name="msd">Gender=Neut|Number=Plur|Person=3</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s1695_n14" from="7463" to="7468">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">ADJ</f>
+ <f name="lemma">stark</f>
+ <f name="msd">Degree=Pos|Variant=Short</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s1695_n15" from="7469" to="7482">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">VERB</f>
+ <f name="lemma">einschränken</f>
+ <f name="msd">Aspect=Perf|VerbForm=Part</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s1695_n16" from="7483" to="7486">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">CCONJ</f>
+ <f name="lemma">und</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s1695_n17" from="7487" to="7510">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">NOUN</f>
+ <f name="lemma">Eigenschaft</f>
+ <f name="msd">Gender=Fem|Number=Plur|Person=3</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s1695_n18" from="7511" to="7517">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">VERB</f>
+ <f name="lemma">ändern</f>
+ <f name="msd">Mood=Ind|Number=Plur|Person=3|Tense=Pres|VerbForm=Fin</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s1695_n19" from="7518" to="7522">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">PRON</f>
+ <f name="lemma">sich</f>
+ <f name="msd">Case=Acc|Person=3|PronType=Prs|Reflex=Yes</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s1695_n20" from="7522" to="7523">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">PUNCT</f>
+ <f name="lemma">,</f>
+ <f name="msd">PunctType=Comm</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s1695_n21" from="7524" to="7527">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">DET</f>
+ <f name="lemma">der</f>
+ <f name="msd">Case=Nom|Gender=Masc|Number=Sing|PronType=Art</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s1695_n22" from="7528" to="7535">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">NOUN</f>
+ <f name="lemma">Zustand</f>
+ <f name="msd">Gender=Masc|Number=Sing|Person=3</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s1695_n23" from="7536" to="7542">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">VERB</f>
+ <f name="lemma">ähneln</f>
+ <f name="msd">Mood=Ind|Number=Sing|Person=3|Tense=Pres|VerbForm=Fin</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s1695_n24" from="7543" to="7548">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">ADV</f>
+ <f name="lemma">jetzt</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s1695_n25" from="7549" to="7553">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">ADV</f>
+ <f name="lemma">eher</f>
+ <f name="msd">Degree=Cmp</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s1695_n26" from="7554" to="7557">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">PRON</f>
+ <f name="lemma">dem</f>
+ <f name="msd">Case=Dat|Gender=Neut|Number=Sing|Person=3|PronType=Dem</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s1695_n27" from="7558" to="7563">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">DET</f>
+ <f name="lemma">eines</f>
+ <f name="msd">Case=Gen|Gender=Neut|Number=Sing|PronType=Art</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s1695_n28" from="7564" to="7574">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">ADJ</f>
+ <f name="lemma">froren</f>
+ <f name="msd">Degree=Pos|Number=Sing</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s1695_n29" from="7575" to="7579">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">NOUN</f>
+ <f name="lemma">Gel</f>
+ <f name="msd">Case=Gen|Gender=Neut|Number=Sing|Person=3</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s1695_n30" from="7579" to="7580">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">PUNCT</f>
+ <f name="lemma">.</f>
+ <f name="msd">PunctType=Peri</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s1696_n1" from="7581" to="7584">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">DET</f>
+ <f name="lemma">Die</f>
+ <f name="msd">Case=Nom|Gender=Fem|Number=Sing|PronType=Art</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s1696_n2" from="7585" to="7604">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">NOUN</f>
+ <f name="lemma">Temperatur</f>
+ <f name="msd">Gender=Fem|Number=Sing|Person=3</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s1696_n3" from="7605" to="7610">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">VERB</f>
+ <f name="lemma">hängen</f>
+ <f name="msd">Mood=Ind|Number=Sing|Person=3|Tense=Pres|VerbForm=Fin</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s1696_n4" from="7611" to="7614">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">ADP</f>
+ <f name="lemma">von</f>
+ <f name="msd">AdpType=Prep|Case=Dat</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s1696_n5" from="7615" to="7618">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">DET</f>
+ <f name="lemma">der</f>
+ <f name="msd">Case=Dat|Gender=Fem|Number=Sing|PronType=Art</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s1696_n6" from="7619" to="7622">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">NOUN</f>
+ <f name="lemma">Art</f>
+ <f name="msd">Gender=Fem|Number=Sing|Person=3</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s1696_n7" from="7623" to="7626">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">DET</f>
+ <f name="lemma">der</f>
+ <f name="msd">Case=Gen|Number=Plur|PronType=Art</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s1696_n8" from="7627" to="7633">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">NOUN</f>
+ <f name="lemma">Lipid</f>
+ <f name="msd">Gender=Neut|Number=Plur|Person=3</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s1696_n9" from="7634" to="7636">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">ADP</f>
+ <f name="lemma">ab</f>
+ <f name="msd">PartType=Vbp</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s1696_n10" from="7636" to="7637">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">PUNCT</f>
+ <f name="lemma">;</f>
+ <f name="msd">PunctType=Peri</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s1696_n11" from="7638" to="7640">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">ADV</f>
+ <f name="lemma">je</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s1696_n12" from="7641" to="7647">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">ADJ</f>
+ <f name="lemma">kurz</f>
+ <f name="msd">Degree=Cmp|Variant=Short</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s1696_n13" from="7648" to="7651">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">PRON</f>
+ <f name="lemma">sie</f>
+ <f name="msd">Case=Nom|Number=Plur|Person=3|PronType=Prs</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s1696_n14" from="7652" to="7656">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">AUX</f>
+ <f name="lemma">sein</f>
+ <f name="msd">Mood=Ind|Number=Plur|Person=3|Tense=Pres|VerbForm=Fin</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s1696_n15" from="7657" to="7660">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">CCONJ</f>
+ <f name="lemma">und</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s1696_n16" from="7661" to="7663">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">ADV</f>
+ <f name="lemma">je</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s1696_n17" from="7664" to="7668">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">DET</f>
+ <f name="lemma">mehr</f>
+ <f name="msd">Degree=Cmp|Person=3|PronType=Ind,Neg,Tot</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s1696_n18" from="7669" to="7684">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">NOUN</f>
+ <f name="lemma">Bindung</f>
+ <f name="msd">Gender=Fem|Number=Plur|Person=3</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s1696_n19" from="7685" to="7688">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">PRON</f>
+ <f name="lemma">sie</f>
+ <f name="msd">Case=Acc|Gender=Fem|Number=Sing|Person=3|PronType=Prs</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s1696_n20" from="7689" to="7698">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">VERB</f>
+ <f name="lemma">enthalten</f>
+ <f name="msd">Mood=Ind|Number=Plur|Person=3|Tense=Pres|VerbForm=Fin</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s1696_n21" from="7698" to="7699">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">PUNCT</f>
+ <f name="lemma">,</f>
+ <f name="msd">PunctType=Comm</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s1696_n22" from="7700" to="7705">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">ADV</f>
+ <f name="lemma">desto</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s1696_n23" from="7706" to="7714">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">ADJ</f>
+ <f name="lemma">gering</f>
+ <f name="msd">Degree=Cmp|Variant=Short</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s1696_n24" from="7715" to="7718">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">AUX</f>
+ <f name="lemma">sein</f>
+ <f name="msd">Mood=Ind|Number=Sing|Person=3|Tense=Pres|VerbForm=Fin</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s1696_n25" from="7719" to="7722">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">PRON</f>
+ <f name="lemma">sie</f>
+ <f name="msd">Case=Nom|Gender=Fem|Number=Sing|Person=3|PronType=Prs</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s1696_n26" from="7722" to="7723">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">PUNCT</f>
+ <f name="lemma">.</f>
+ <f name="msd">PunctType=Peri</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s1697_n1" from="7724" to="7735">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">NOUN</f>
+ <f name="lemma">Cholesterin</f>
+ <f name="msd">Person=3</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s1697_n2" from="7736" to="7741">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">VERB</f>
+ <f name="lemma">stören</f>
+ <f name="msd">Mood=Ind|Number=Sing|Person=3|Tense=Pres|VerbForm=Fin</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s1697_n3" from="7742" to="7745">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">DET</f>
+ <f name="lemma">die</f>
+ <f name="msd">Case=Acc|Gender=Fem|Number=Sing|PronType=Art</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s1697_n4" from="7746" to="7757">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">ADJ</f>
+ <f name="lemma">gewöhnlich</f>
+ <f name="msd">Degree=Pos|Gender=Fem|Number=Sing</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s1697_n5" from="7758" to="7766">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">NOUN</f>
+ <f name="lemma">Struktur</f>
+ <f name="msd">Gender=Fem|Number=Sing|Person=3</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s1697_n6" from="7767" to="7770">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">DET</f>
+ <f name="lemma">der</f>
+ <f name="msd">Case=Gen|Gender=Fem|Number=Sing|PronType=Art</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s1697_n7" from="7771" to="7778">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">NOUN</f>
+ <f name="lemma">Membran</f>
+ <f name="msd">Gender=Fem|Number=Sing|Person=3</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s1697_n8" from="7779" to="7792">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">VERB</f>
+ <f name="lemma">undverringern</f>
+ <f name="msd">Mood=Ind|Number=Sing|Person=3|Tense=Pres|VerbForm=Fin</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s1697_n9" from="7793" to="7796">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">DET</f>
+ <f name="lemma">die</f>
+ <f name="msd">Case=Acc|Gender=Fem|Number=Sing|PronType=Art</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s1697_n10" from="7797" to="7806">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">NOUN</f>
+ <f name="lemma">Mobilität</f>
+ <f name="msd">Gender=Fem|Number=Sing|Person=3</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s1697_n11" from="7807" to="7810">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">DET</f>
+ <f name="lemma">der</f>
+ <f name="msd">Case=Gen|Number=Plur|PronType=Art</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s1697_n12" from="7811" to="7824">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">NOUN</f>
+ <f name="lemma">Membranlipide</f>
+ <f name="msd">Person=3</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s1697_n13" from="7824" to="7825">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">PUNCT</f>
+ <f name="lemma">.</f>
+ <f name="msd">PunctType=Peri</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s1698_n1" from="7826" to="7829">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">DET</f>
+ <f name="lemma">Die</f>
+ <f name="msd">Case=Nom|Gender=Fem|Number=Sing|PronType=Art</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s1698_n2" from="7830" to="7849">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">NOUN</f>
+ <f name="lemma">Temperatur</f>
+ <f name="msd">Gender=Fem|Number=Sing|Person=3</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s1698_n3" from="7850" to="7853">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">AUX</f>
+ <f name="lemma">sein</f>
+ <f name="msd">Mood=Ind|Number=Sing|Person=3|Tense=Pres|VerbForm=Fin</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s1698_n4" from="7854" to="7858">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">ADV</f>
+ <f name="lemma">dann</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s1698_n5" from="7859" to="7864">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">PART</f>
+ <f name="lemma">nicht</f>
+ <f name="msd">Polarity=Neg</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s1698_n6" from="7865" to="7869">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">ADV</f>
+ <f name="lemma">mehr</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s1698_n7" from="7870" to="7879">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">ADJ</f>
+ <f name="lemma">eindeutig</f>
+ <f name="msd">Degree=Pos|Variant=Short</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s1698_n8" from="7880" to="7891">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">VERB</f>
+ <f name="lemma">zubestimmen</f>
+ <f name="msd">VerbForm=Inf</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s1698_n9" from="7891" to="7892">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">PUNCT</f>
+ <f name="lemma">.</f>
+ <f name="msd">PunctType=Peri</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s1699_n1" from="7894" to="7903">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">NOUN</f>
+ <f name="lemma">Bedeutung</f>
+ <f name="msd">Gender=Fem|Number=Sing|Person=3</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s1699_n2" from="7905" to="7908">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">DET</f>
+ <f name="lemma">Die</f>
+ <f name="msd">Case=Nom|Gender=Fem|Number=Sing|PronType=Art</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s1699_n3" from="7909" to="7918">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">NOUN</f>
+ <f name="lemma">Fluidität</f>
+ <f name="msd">Gender=Fem|Number=Sing|Person=3</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s1699_n4" from="7919" to="7924">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">DET</f>
+ <f name="lemma">einer</f>
+ <f name="msd">Case=Gen|Gender=Fem|Number=Sing|PronType=Art</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s1699_n5" from="7925" to="7935">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">NOUN</f>
+ <f name="lemma">Bran</f>
+ <f name="msd">Gender=Fem|Number=Sing|Person=3</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s1699_n6" from="7936" to="7941">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">VERB</f>
+ <f name="lemma">liegen</f>
+ <f name="msd">Mood=Ind|Number=Sing|Person=3|Tense=Pres|VerbForm=Fin</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s1699_n7" from="7942" to="7950">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">ADP</f>
+ <f name="lemma">zwischen</f>
+ <f name="msd">AdpType=Prep|Case=Dat</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s1699_n8" from="7951" to="7956">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">ADJ</f>
+ <f name="lemma">starr</f>
+ <f name="msd">Degree=Pos|Variant=Short</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s1699_n9" from="7957" to="7967">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">ADJ</f>
+ <f name="lemma">undflüssig</f>
+ <f name="msd">Degree=Pos|Variant=Short</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s1699_n10" from="7968" to="7971">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">CCONJ</f>
+ <f name="lemma">und</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s1699_n11" from="7972" to="7979">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">VERB</f>
+ <f name="lemma">erlauben</f>
+ <f name="msd">Mood=Ind|Number=Sing|Person=3|Tense=Pres|VerbForm=Fin</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s1699_n12" from="7980" to="7982">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">ADV</f>
+ <f name="lemma">so</f>
+ <f name="msd">Degree=Pos</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s1699_n13" from="7983" to="7987">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">DET</f>
+ <f name="lemma">eine</f>
+ <f name="msd">Case=Acc|Gender=Fem|Number=Sing|PronType=Art</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s1699_n14" from="7988" to="7995">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">ADJ</f>
+ <f name="lemma">gewiss</f>
+ <f name="msd">Degree=Pos|Gender=Fem|Number=Sing</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s1699_n15" from="7996" to="8004">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">NOUN</f>
+ <f name="lemma">Struktur</f>
+ <f name="msd">Gender=Fem|Number=Sing|Person=3</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s1699_n16" from="8004" to="8005">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">PUNCT</f>
+ <f name="lemma">.</f>
+ <f name="msd">PunctType=Peri</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s1700_n1" from="8006" to="8021">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">NOUN</f>
+ <f name="lemma">Protein</f>
+ <f name="msd">Gender=Masc|Number=Plur|Person=3</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s1700_n2" from="8022" to="8028">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">AUX</f>
+ <f name="lemma">können</f>
+ <f name="msd">Mood=Ind|Number=Plur|Person=3|Tense=Pres|VerbForm=Fin|VerbType=Mod</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s1700_n3" from="8029" to="8033">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">PRON</f>
+ <f name="lemma">sich</f>
+ <f name="msd">Case=Acc|Person=3|PronType=Prs|Reflex=Yes</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s1700_n4" from="8034" to="8036">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">ADP</f>
+ <f name="lemma">zu</f>
+ <f name="msd">AdpType=Prep|Case=Dat</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s1700_n5" from="8037" to="8049">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">ADJ</f>
+ <f name="lemma">funktionalen</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s1700_n6" from="8050" to="8074">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">NOUN</f>
+ <f name="lemma">Zusammenlanger</f>
+ <f name="msd">Case=Dat|Gender=Masc|Number=Plur|Person=3</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s1700_n7" from="8075" to="8078">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">CCONJ</f>
+ <f name="lemma">und</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s1700_n8" from="8079" to="8085">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">ADJ</f>
+ <f name="lemma">spät</f>
+ <f name="msd">Degree=Cmp|Variant=Short</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s1700_n9" from="8086" to="8092">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">ADV</f>
+ <f name="lemma">wieder</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s1700_n10" from="8093" to="8100">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">VERB</f>
+ <f name="lemma">trennen</f>
+ <f name="msd">VerbForm=Inf</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s1700_n11" from="8100" to="8101">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">PUNCT</f>
+ <f name="lemma">.</f>
+ <f name="msd">PunctType=Peri</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s1701_n1" from="8102" to="8106">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">PRON</f>
+ <f name="lemma">Dies</f>
+ <f name="msd">Case=Nom|Gender=Neut|Number=Sing|Person=3|PronType=Dem</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s1701_n2" from="8107" to="8110">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">AUX</f>
+ <f name="lemma">sein</f>
+ <f name="msd">Mood=Ind|Number=Sing|Person=3|Tense=Pres|VerbForm=Fin</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s1701_n3" from="8111" to="8114">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">ADP</f>
+ <f name="lemma">zum</f>
+ <f name="msd">AdpType=Prep|Case=Dat</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s1701_n4" from="8115" to="8123">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">NOUN</f>
+ <f name="lemma">Beispiel</f>
+ <f name="msd">Gender=Neut|Number=Sing|Person=3</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s1701_n5" from="8124" to="8131">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">ADJ</f>
+ <f name="lemma">wichtig</f>
+ <f name="msd">Degree=Pos|Variant=Short</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s1701_n6" from="8132" to="8135">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">ADP</f>
+ <f name="lemma">für</f>
+ <f name="msd">AdpType=Prep|Case=Acc</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s1701_n7" from="8136" to="8139">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">DET</f>
+ <f name="lemma">die</f>
+ <f name="msd">Case=Acc|Gender=Fem|Number=Sing|PronType=Art</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s1701_n8" from="8140" to="8153">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">NOUN</f>
+ <f name="lemma">Synthese</f>
+ <f name="msd">Gender=Fem|Number=Sing|Person=3</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s1701_n9" from="8153" to="8154">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">PUNCT</f>
+ <f name="lemma">.</f>
+ <f name="msd">PunctType=Peri</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s1702_n1" from="8155" to="8164">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">NOUN</f>
+ <f name="lemma">Fluidität</f>
+ <f name="msd">Gender=Fem|Number=Sing|Person=3</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s1702_n2" from="8165" to="8171">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">VERB</f>
+ <f name="lemma">spielen</f>
+ <f name="msd">Mood=Ind|Number=Sing|Person=3|Tense=Pres|VerbForm=Fin</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s1702_n3" from="8172" to="8176">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">ADV</f>
+ <f name="lemma">auch</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s1702_n4" from="8177" to="8181">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">DET</f>
+ <f name="lemma">eine</f>
+ <f name="msd">Case=Acc|Gender=Fem|Number=Sing|PronType=Art</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s1702_n5" from="8182" to="8187">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">ADJ</f>
+ <f name="lemma">groß</f>
+ <f name="msd">Degree=Pos|Gender=Fem|Number=Sing</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s1702_n6" from="8188" to="8193">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">NOUN</f>
+ <f name="lemma">Rolle</f>
+ <f name="msd">Gender=Fem|Number=Sing|Person=3</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s1702_n7" from="8194" to="8197">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">ADP</f>
+ <f name="lemma">bei</f>
+ <f name="msd">AdpType=Prep|Case=Dat</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s1702_n8" from="8198" to="8201">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">DET</f>
+ <f name="lemma">der</f>
+ <f name="msd">Case=Dat|Gender=Fem|Number=Sing|PronType=Art</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s1702_n9" from="8202" to="8215">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">NOUN</f>
+ <f name="lemma">Angenese</f>
+ <f name="msd">Gender=Fem|Number=Sing|Person=3</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s1702_n10" from="8216" to="8219">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">CCONJ</f>
+ <f name="lemma">und</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s1702_n11" from="8220" to="8223">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">AUX</f>
+ <f name="lemma">sein</f>
+ <f name="msd">Mood=Ind|Number=Sing|Person=3|Tense=Pres|VerbForm=Fin</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s1702_n12" from="8224" to="8231">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">ADJ</f>
+ <f name="lemma">wichtig</f>
+ <f name="msd">Degree=Pos|Variant=Short</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s1702_n13" from="8232" to="8235">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">ADP</f>
+ <f name="lemma">für</f>
+ <f name="msd">AdpType=Prep|Case=Acc</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s1702_n14" from="8236" to="8241">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">ADJ</f>
+ <f name="lemma">viel</f>
+ <f name="msd">Case=Acc|Degree=Pos|Number=Plur|Person=3</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s1702_n15" from="8242" to="8254">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">ADJ</f>
+ <f name="lemma">grundlegend</f>
+ <f name="msd">Degree=Pos|Number=Plur</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s1702_n16" from="8255" to="8263">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">NOUN</f>
+ <f name="lemma">Prozess</f>
+ <f name="msd">Gender=Masc|Number=Plur|Person=3</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s1702_n17" from="8264" to="8267">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">CCONJ</f>
+ <f name="lemma">wie</f>
+ <f name="msd">ConjType=Comp</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s1702_n18" from="8268" to="8279">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">NOUN</f>
+ <f name="lemma">Zellteilung</f>
+ <f name="msd">Gender=Fem|Number=Sing|Person=3</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s1702_n19" from="8279" to="8280">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">PUNCT</f>
+ <f name="lemma">,</f>
+ <f name="msd">PunctType=Comm</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s1702_n20" from="8281" to="8293">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">NOUN</f>
+ <f name="lemma">Wachstum</f>
+ <f name="msd">Gender=Neut|Number=Sing|Person=3</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s1702_n21" from="8293" to="8294">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">PUNCT</f>
+ <f name="lemma">,</f>
+ <f name="msd">PunctType=Comm</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s1702_n22" from="8295" to="8304">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">NOUN</f>
+ <f name="lemma">Sekretion</f>
+ <f name="msd">Gender=Fem|Number=Sing|Person=3</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s1702_n23" from="8304" to="8305">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">PUNCT</f>
+ <f name="lemma">,</f>
+ <f name="msd">PunctType=Comm</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s1702_n24" from="8306" to="8310">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">ADV</f>
+ <f name="lemma">etc.</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s1702_n25" from="8311" to="8318">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">SCONJ</f>
+ <f name="lemma">Während</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s1702_n26" from="8319" to="8322">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">DET</f>
+ <f name="lemma">die</f>
+ <f name="msd">Case=Nom|Gender=Fem|Number=Sing|PronType=Art</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s1702_n27" from="8323" to="8333">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">NOUN</f>
+ <f name="lemma">Temperatur</f>
+ <f name="msd">Gender=Fem|Number=Sing|Person=3</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s1702_n28" from="8334" to="8337">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">ADV</f>
+ <f name="lemma">oft</f>
+ <f name="msd">Degree=Pos</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s1702_n29" from="8338" to="8346">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">VERB</f>
+ <f name="lemma">schwanken</f>
+ <f name="msd">Mood=Ind|Number=Sing|Person=3|Tense=Pres|VerbForm=Fin</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s1702_n30" from="8346" to="8347">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">PUNCT</f>
+ <f name="lemma">,</f>
+ <f name="msd">PunctType=Comm</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s1702_n31" from="8348" to="8355">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">AUX</f>
+ <f name="lemma">mussdie</f>
+ <f name="msd">Mood=Ind|Number=Sing|Person=3|Tense=Pres|VerbForm=Fin</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s1702_n32" from="8356" to="8372">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">NOUN</f>
+ <f name="lemma">Fluidität</f>
+ <f name="msd">Gender=Fem|Number=Sing|Person=3</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s1702_n33" from="8373" to="8378">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">ADV</f>
+ <f name="lemma">dabei</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s1702_n34" from="8379" to="8387">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">ADJ</f>
+ <f name="lemma">konstant</f>
+ <f name="msd">Degree=Pos|Variant=Short</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s1702_n35" from="8388" to="8395">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">VERB</f>
+ <f name="lemma">bleiben</f>
+ <f name="msd">VerbForm=Inf</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s1702_n36" from="8395" to="8396">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">PUNCT</f>
+ <f name="lemma">.</f>
+ <f name="msd">PunctType=Peri</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s1703_n1" from="8397" to="8399">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">SCONJ</f>
+ <f name="lemma">Um</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s1703_n2" from="8400" to="8404">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">PRON</f>
+ <f name="lemma">dies</f>
+ <f name="msd">Case=Acc|Gender=Neut|Number=Sing|Person=3|PronType=Dem</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s1703_n3" from="8405" to="8407">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">PART</f>
+ <f name="lemma">zu</f>
+ <f name="msd">PartType=Inf</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s1703_n4" from="8408" to="8417">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">VERB</f>
+ <f name="lemma">erreichen</f>
+ <f name="msd">VerbForm=Inf</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s1703_n5" from="8417" to="8418">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">PUNCT</f>
+ <f name="lemma">,</f>
+ <f name="msd">PunctType=Comm</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s1703_n6" from="8419" to="8425">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">AUX</f>
+ <f name="lemma">können</f>
+ <f name="msd">Mood=Ind|Number=Plur|Person=3|Tense=Pres|VerbForm=Fin|VerbType=Mod</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s1703_n7" from="8426" to="8429">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">DET</f>
+ <f name="lemma">die</f>
+ <f name="msd">Case=Nom|Number=Plur|PronType=Art</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s1703_n8" from="8430" to="8443">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">NOUN</f>
+ <f name="lemma">Membranlipide</f>
+ <f name="msd">Person=3</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s1703_n9" from="8444" to="8455">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">VERB</f>
+ <f name="lemma">modifizieren</f>
+ <f name="msd">Aspect=Perf|VerbForm=Part</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s1703_n10" from="8456" to="8462">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">AUX</f>
+ <f name="lemma">werden</f>
+ <f name="msd">VerbForm=Inf</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s1703_n11" from="8462" to="8463">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">PUNCT</f>
+ <f name="lemma">:</f>
+ <f name="msd">PunctType=Peri</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s1703_n12" from="8464" to="8471">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">ADJ</f>
+ <f name="lemma">möglich</f>
+ <f name="msd">Degree=Pos|Variant=Short</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s1703_n13" from="8472" to="8475">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">AUX</f>
+ <f name="lemma">sein</f>
+ <f name="msd">Mood=Ind|Number=Sing|Person=3|Tense=Pres|VerbForm=Fin</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s1703_n14" from="8476" to="8479">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">DET</f>
+ <f name="lemma">ein</f>
+ <f name="msd">Case=Nom|Gender=Masc|Number=Sing|PronType=Art</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s1703_n15" from="8480" to="8489">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">NOUN</f>
+ <f name="lemma">Austausch</f>
+ <f name="msd">Gender=Masc|Number=Sing|Person=3</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s1703_n16" from="8490" to="8493">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">ADP</f>
+ <f name="lemma">von</f>
+ <f name="msd">AdpType=Prep|Case=Dat</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s1703_n17" from="8494" to="8508">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">NOUN</f>
+ <f name="lemma">Pholipiden</f>
+ <f name="msd">Gender=Neut|Number=Plur|Person=3</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s1703_n18" from="8508" to="8509">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">PUNCT</f>
+ <f name="lemma">;</f>
+ <f name="msd">PunctType=Peri</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s1703_n19" from="8510" to="8521">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">NOUN</f>
+ <f name="lemma">Rase</f>
+ <f name="msd">Gender=Fem|Number=Plur|Person=3</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s1703_n20" from="8522" to="8528">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">AUX</f>
+ <f name="lemma">können</f>
+ <f name="msd">Mood=Ind|Number=Plur|Person=3|Tense=Pres|VerbForm=Fin|VerbType=Mod</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s1703_n21" from="8529" to="8532">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">ADP</f>
+ <f name="lemma">aus</f>
+ <f name="msd">AdpType=Prep|Case=Dat</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s1703_n22" from="8533" to="8549">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">NOUN</f>
+ <f name="lemma">Bindung</f>
+ <f name="msd">Gender=Fem|Number=Plur|Person=3</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s1703_n23" from="8550" to="8571">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">NOUN</f>
+ <f name="lemma">Bild</f>
+ <f name="msd">Gender=Neut|Number=Plur|Person=3</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s1703_n24" from="8571" to="8572">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">PUNCT</f>
+ <f name="lemma">,</f>
+ <f name="msd">PunctType=Comm</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s1703_n25" from="8573" to="8589">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">NOUN</f>
+ <f name="lemma">Trückgrat</f>
+ <f name="msd">Person=3</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s1703_n26" from="8590" to="8593">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">CCONJ</f>
+ <f name="lemma">und</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s1703_n27" from="8594" to="8607">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">NOUN</f>
+ <f name="lemma">unknown</f>
+ <f name="msd">Gender=Masc|Number=Plur|Person=3</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s1703_n28" from="8608" to="8611">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">DET</f>
+ <f name="lemma">der</f>
+ <f name="msd">Case=Gen|Number=Plur|PronType=Art</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s1703_n29" from="8612" to="8625">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">NOUN</f>
+ <f name="lemma">Pholipid</f>
+ <f name="msd">Gender=Neut|Number=Plur|Person=3</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s1703_n30" from="8626" to="8642">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">VERB</f>
+ <f name="lemma">-</f>
+ <f name="msd">Aspect=Perf|VerbForm=Part</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s1703_n31" from="8643" to="8649">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">AUX</f>
+ <f name="lemma">werden</f>
+ <f name="msd">VerbForm=Inf</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s1703_n32" from="8650" to="8653">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">CCONJ</f>
+ <f name="lemma">und</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s1703_n33" from="8654" to="8656">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">PRON</f>
+ <f name="lemma">es</f>
+ <f name="msd">Case=Nom|Gender=Neut|Number=Sing|Person=3|PronType=Prs</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s1703_n34" from="8657" to="8661">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">AUX</f>
+ <f name="lemma">können</f>
+ <f name="msd">Mood=Ind|Number=Sing|Person=3|Tense=Pres|VerbForm=Fin|VerbType=Mod</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s1703_n35" from="8662" to="8665">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">DET</f>
+ <f name="lemma">ein</f>
+ <f name="msd">Case=Nom|Gender=Masc|Number=Sing|PronType=Art</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s1703_n36" from="8666" to="8673">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">ADJ</f>
+ <f name="lemma">hoch</f>
+ <f name="msd">Case=Nom|Degree=Cmp|Gender=Masc|Number=Sing</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s1703_n37" from="8674" to="8680">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">NOUN</f>
+ <f name="lemma">Anteil</f>
+ <f name="msd">Gender=Masc|Number=Sing|Person=3</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s1703_n38" from="8681" to="8683">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">ADP</f>
+ <f name="lemma">an</f>
+ <f name="msd">AdpType=Prep|Case=Dat</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s1703_n39" from="8684" to="8706">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">NOUN</f>
+ <f name="lemma">UNgesättigtefettsäuren</f>
+ <f name="msd">Gender=Fem|Number=Plur|Person=3</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s1703_n40" from="8707" to="8717">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">VERB</f>
+ <f name="lemma">produzieren</f>
+ <f name="msd">Aspect=Perf|VerbForm=Part</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s1703_n41" from="8718" to="8724">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">AUX</f>
+ <f name="lemma">werden</f>
+ <f name="msd">VerbForm=Inf</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s1703_n42" from="8725" to="8728">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">CCONJ</f>
+ <f name="lemma">als</f>
+ <f name="msd">ConjType=Comp</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s1703_n43" from="8729" to="8735">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">ADV</f>
+ <f name="lemma">vorher</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s1703_n44" from="8735" to="8736">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">PUNCT</f>
+ <f name="lemma">.</f>
+ <f name="msd">PunctType=Peri</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s1704_n1" from="8737" to="8739">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">ADV</f>
+ <f name="lemma">so</f>
+ <f name="msd">Degree=Pos</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s1704_n2" from="8740" to="8743">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">AUX</f>
+ <f name="lemma">sein</f>
+ <f name="msd">Mood=Ind|Number=Sing|Person=3|Tense=Pres|VerbForm=Fin</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s1704_n3" from="8744" to="8752">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">ADJ</f>
+ <f name="lemma">speziell</f>
+ <f name="msd">Degree=Pos|Variant=Short</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s1704_n4" from="8753" to="8766">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">ADJ</f>
+ <f name="lemma">wechselwarmen</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s1704_n5" from="8767" to="8776">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">NOUN</f>
+ <f name="lemma">Lebewesen</f>
+ <f name="msd">Gender=Neut|Number=Plur|Person=3</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s1704_n6" from="8777" to="8781">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">DET</f>
+ <f name="lemma">eine</f>
+ <f name="msd">Case=Nom|Gender=Fem|Number=Sing|PronType=Art</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s1704_n7" from="8782" to="8797">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">NOUN</f>
+ <f name="lemma">Anpassung</f>
+ <f name="msd">Gender=Fem|Number=Sing|Person=3</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s1704_n8" from="8798" to="8805">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">ADJ</f>
+ <f name="lemma">möglich</f>
+ <f name="msd">Degree=Pos|Variant=Short</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s1704_n9" from="8805" to="8806">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">PUNCT</f>
+ <f name="lemma">.</f>
+ <f name="msd">PunctType=Peri</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s1705_n1" from="8808" to="8818">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">NOUN</f>
+ <f name="lemma">Lipidflösse</f>
+ <f name="msd">Gender=Fem|Number=Sing|Person=3</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s1705_n2" from="8820" to="8822">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">ADP</f>
+ <f name="lemma">In</f>
+ <f name="msd">AdpType=Prep|Case=Dat</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s1705_n3" from="8823" to="8826">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">DET</f>
+ <f name="lemma">der</f>
+ <f name="msd">Case=Dat|Gender=Fem|Number=Sing|PronType=Art</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s1705_n4" from="8827" to="8837">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">NOUN</f>
+ <f name="lemma">Bran</f>
+ <f name="msd">Gender=Fem|Number=Sing|Person=3</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s1705_n5" from="8838" to="8842">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">AUX</f>
+ <f name="lemma">sein</f>
+ <f name="msd">Mood=Ind|Number=Plur|Person=3|Tense=Pres|VerbForm=Fin</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s1705_n6" from="8843" to="8856">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">NOUN</f>
+ <f name="lemma">Molekül</f>
+ <f name="msd">Gender=Neut|Number=Plur|Person=3</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s1705_n7" from="8857" to="8873">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">ADJ</f>
+ <f name="lemma">nichtgleichmäßig</f>
+ <f name="msd">Degree=Pos|Variant=Short</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s1705_n8" from="8874" to="8882">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">VERB</f>
+ <f name="lemma">verteilen</f>
+ <f name="msd">Aspect=Perf|VerbForm=Part</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s1705_n9" from="8882" to="8883">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">PUNCT</f>
+ <f name="lemma">,</f>
+ <f name="msd">PunctType=Comm</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s1705_n10" from="8884" to="8891">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">CCONJ</f>
+ <f name="lemma">sondern</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s1705_n11" from="8892" to="8894">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">PRON</f>
+ <f name="lemma">es</f>
+ <f name="msd">Case=Nom|Gender=Neut|Number=Sing|Person=3|PronType=Prs</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s1705_n12" from="8895" to="8905">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">VERB</f>
+ <f name="lemma">existieren</f>
+ <f name="msd">Mood=Ind|Number=Plur|Person=3|Tense=Pres|VerbForm=Fin</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s1705_n13" from="8906" to="8918">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">NOUN</f>
+ <f name="lemma">Domäne</f>
+ <f name="msd">Gender=Fem|Number=Plur|Person=3</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s1705_n14" from="8919" to="8932">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">ADJ</f>
+ <f name="lemma">mitbesondere</f>
+ <f name="msd">Degree=Pos|Gender=Fem|Number=Sing</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s1705_n15" from="8933" to="8953">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">NOUN</f>
+ <f name="lemma">Zusammensetzung</f>
+ <f name="msd">Gender=Fem|Number=Sing|Person=3</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s1705_n16" from="8953" to="8954">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">PUNCT</f>
+ <f name="lemma">.</f>
+ <f name="msd">PunctType=Peri</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s1706_n1" from="8955" to="8963">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">ADJ</f>
+ <f name="lemma">speziell</f>
+ <f name="msd">Degree=Pos|Variant=Short</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s1706_n2" from="8964" to="8975">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">NOUN</f>
+ <f name="lemma">Cholesterin</f>
+ <f name="msd">Gender=Fem|Number=Sing|Person=3</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s1706_n3" from="8976" to="8979">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">CCONJ</f>
+ <f name="lemma">und</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s1706_n4" from="8980" to="8993">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">NOUN</f>
+ <f name="lemma">Sphingolipide</f>
+ <f name="msd">Person=3</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s1706_n5" from="8994" to="9000">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">VERB</f>
+ <f name="lemma">neigen</f>
+ <f name="msd">Mood=Ind|Number=Plur|Person=3|Tense=Pres|VerbForm=Fin</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s1706_n6" from="9001" to="9003">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">ADP</f>
+ <f name="lemma">zu</f>
+ <f name="msd">AdpType=Prep|Case=Dat</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s1706_n7" from="9004" to="9009">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">ADJ</f>
+ <f name="lemma">solch</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s1706_n8" from="9010" to="9030">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">NOUN</f>
+ <f name="lemma">Zusammenschluss</f>
+ <f name="msd">Gender=Masc|Number=Sing|Person=3</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s1706_n9" from="9030" to="9031">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">PUNCT</f>
+ <f name="lemma">.</f>
+ <f name="msd">PunctType=Peri</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s1707_n1" from="9032" to="9038">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">DET</f>
+ <f name="lemma">manch</f>
+ <f name="msd">Case=Nom|Number=Plur|Person=3|PronType=Ind,Neg,Tot</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s1707_n2" from="9039" to="9047">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">NOUN</f>
+ <f name="lemma">Protein</f>
+ <f name="msd">Gender=Neut|Number=Plur|Person=3</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s1707_n3" from="9047" to="9048">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">PUNCT</f>
+ <f name="lemma">,</f>
+ <f name="msd">PunctType=Comm</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s1707_n4" from="9049" to="9052">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">CCONJ</f>
+ <f name="lemma">wie</f>
+ <f name="msd">ConjType=Comp</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s1707_n5" from="9053" to="9059">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">PRON</f>
+ <f name="lemma">solch</f>
+ <f name="msd">Case=Nom|Number=Plur|Person=3|PronType=Ind,Neg,Tot</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s1707_n6" from="9060" to="9063">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">ADP</f>
+ <f name="lemma">mit</f>
+ <f name="msd">AdpType=Prep|Case=Dat</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s1707_n7" from="9064" to="9073">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">NOUN</f>
+ <f name="lemma">Anker</f>
+ <f name="msd">Gender=Masc|Number=Sing|Person=3</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s1707_n8" from="9073" to="9074">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">PUNCT</f>
+ <f name="lemma">,</f>
+ <f name="msd">PunctType=Comm</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s1707_n9" from="9075" to="9082">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">VERB</f>
+ <f name="lemma">sammeln</f>
+ <f name="msd">Mood=Ind|Number=Plur|Person=3|Tense=Pres|VerbForm=Fin</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s1707_n10" from="9083" to="9087">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">PRON</f>
+ <f name="lemma">sich</f>
+ <f name="msd">Case=Acc|Person=3|PronType=Prs|Reflex=Yes</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s1707_n11" from="9088" to="9097">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">ADJ</f>
+ <f name="lemma">insolchen</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s1707_n12" from="9098" to="9107">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">NOUN</f>
+ <f name="lemma">Bereich</f>
+ <f name="msd">Case=Dat|Gender=Masc|Number=Plur|Person=3</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s1707_n13" from="9108" to="9110">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">ADP</f>
+ <f name="lemma">an</f>
+ <f name="msd">PartType=Vbp</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s1707_n14" from="9110" to="9111">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">PUNCT</f>
+ <f name="lemma">,</f>
+ <f name="msd">PunctType=Comm</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s1707_n15" from="9112" to="9119">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">SCONJ</f>
+ <f name="lemma">während</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s1707_n16" from="9120" to="9126">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">PRON</f>
+ <f name="lemma">ander</f>
+ <f name="msd">Case=Nom|Number=Plur|Person=3|PronType=Ind,Neg,Tot</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s1707_n17" from="9127" to="9131">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">ADV</f>
+ <f name="lemma">dort</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s1707_n18" from="9132" to="9141">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">ADV</f>
+ <f name="lemma">besonders</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s1707_n19" from="9142" to="9148">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">ADJ</f>
+ <f name="lemma">selten</f>
+ <f name="msd">Degree=Pos|Variant=Short</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s1707_n20" from="9149" to="9151">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">PART</f>
+ <f name="lemma">zu</f>
+ <f name="msd">PartType=Inf</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s1707_n21" from="9152" to="9162">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">VERB</f>
+ <f name="lemma">findensind</f>
+ <f name="msd">VerbForm=Inf</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s1707_n22" from="9162" to="9163">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">PUNCT</f>
+ <f name="lemma">.</f>
+ <f name="msd">PunctType=Peri</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s1708_n1" from="9164" to="9174">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">ADV</f>
+ <f name="lemma">Vermutlich</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s1708_n2" from="9175" to="9179">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">AUX</f>
+ <f name="lemma">sein</f>
+ <f name="msd">Mood=Ind|Number=Plur|Person=3|Tense=Pres|VerbForm=Fin</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s1708_n3" from="9180" to="9190">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">NOUN</f>
+ <f name="lemma">Lipidflösse</f>
+ <f name="msd">Gender=Masc|Number=Plur|Person=3</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s1708_n4" from="9191" to="9195">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">ADV</f>
+ <f name="lemma">sehr</f>
+ <f name="msd">Degree=Pos</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s1708_n5" from="9196" to="9201">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">ADJ</f>
+ <f name="lemma">klein</f>
+ <f name="msd">Degree=Pos|Variant=Short</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s1708_n6" from="9202" to="9205">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">CCONJ</f>
+ <f name="lemma">und</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s1708_n7" from="9206" to="9208">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">ADP</f>
+ <f name="lemma">in</f>
+ <f name="msd">AdpType=Prep|Case=Dat</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s1708_n8" from="9209" to="9214">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">DET</f>
+ <f name="lemma">einem</f>
+ <f name="msd">Case=Dat|Gender=Masc|Number=Sing|PronType=Art</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s1708_n9" from="9215" to="9231">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">NOUN</f>
+ <f name="lemma">StändigenProzess</f>
+ <f name="msd">Gender=Masc|Number=Sing|Person=3</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s1708_n10" from="9232" to="9235">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">DET</f>
+ <f name="lemma">der</f>
+ <f name="msd">Case=Gen|Gender=Fem|Number=Sing|PronType=Art</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s1708_n11" from="9236" to="9245">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">NOUN</f>
+ <f name="lemma">Auflösung</f>
+ <f name="msd">Gender=Fem|Number=Sing|Person=3</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s1708_n12" from="9246" to="9249">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">CCONJ</f>
+ <f name="lemma">und</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s1708_n13" from="9250" to="9260">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">NOUN</f>
+ <f name="lemma">Neubildung</f>
+ <f name="msd">Gender=Fem|Number=Sing|Person=3</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s1708_n14" from="9261" to="9270">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">VERB</f>
+ <f name="lemma">begreifen</f>
+ <f name="msd">Aspect=Perf|VerbForm=Part</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s1708_n15" from="9270" to="9271">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">PUNCT</f>
+ <f name="lemma">.</f>
+ <f name="msd">PunctType=Peri</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s1709_n1" from="9273" to="9283">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">NOUN</f>
+ <f name="lemma">Geschichte</f>
+ <f name="msd">Gender=Fem|Number=Sing|Person=3</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s1709_n2" from="9285" to="9289">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">PROPN</f>
+ <f name="lemma">mini</f>
+ <f name="msd">Case=Nom|Number=Sing|Person=3</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s1709_n3" from="9289" to="9290">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">X</f>
+ <f name="lemma">|</f>
+ <f name="msd">Foreign=Yes|Person=3</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s1709_n4" from="9290" to="9296">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">NOUN</f>
+ <f name="lemma">Schema</f>
+ <f name="msd">Gender=Neut|Number=Sing|Person=3</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s1709_n5" from="9297" to="9302">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">DET</f>
+ <f name="lemma">einer</f>
+ <f name="msd">Case=Gen|Gender=Fem|Number=Sing|PronType=Art</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s1709_n6" from="9303" to="9322">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">NOUN</f>
+ <f name="lemma">Schicht</f>
+ <f name="msd">Gender=Fem|Number=Sing|Person=3</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s1709_n7" from="9323" to="9326">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">ADP</f>
+ <f name="lemma">mit</f>
+ <f name="msd">AdpType=Prep|Case=Dat</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s1709_n8" from="9327" to="9346">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">PROPN</f>
+ <f name="lemma">PeripherenprOteinen</f>
+ <f name="msd">Person=3</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s1709_n9" from="9347" to="9348">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">PUNCT</f>
+ <f name="lemma">(</f>
+ <f name="msd">PunctType=Brck</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s1709_n10" from="9348" to="9363">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">NOUN</f>
+ <f name="lemma">Modell</f>
+ <f name="msd">Gender=Neut|Number=Sing|Person=3</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s1709_n11" from="9363" to="9364">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">PUNCT</f>
+ <f name="lemma">)</f>
+ <f name="msd">PunctType=Brck</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s1709_n12" from="9365" to="9369">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">PROPN</f>
+ <f name="lemma">mini</f>
+ <f name="msd">Person=3</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s1709_n13" from="9369" to="9370">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">X</f>
+ <f name="lemma">|</f>
+ <f name="msd">Foreign=Yes|Person=3</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s1709_n14" from="9370" to="9375">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">X</f>
+ <f name="lemma">150px</f>
+ <f name="msd">Foreign=Yes|Person=3</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s1709_n15" from="9375" to="9376">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">X</f>
+ <f name="lemma">|</f>
+ <f name="msd">Foreign=Yes|Person=3</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s1709_n16" from="9376" to="9390">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">NOUN</f>
+ <f name="lemma">Schema</f>
+ <f name="msd">Gender=Neut|Number=Sing|Person=3</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s1709_n17" from="9391" to="9394">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">DET</f>
+ <f name="lemma">des</f>
+ <f name="msd">Case=Gen|Gender=Masc|Number=Sing|PronType=Art</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s1709_n18" from="9395" to="9403">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">NOUN</f>
+ <f name="lemma">Versuch</f>
+ <f name="msd">Case=Gen|Gender=Masc|Number=Sing|Person=3</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s1709_n19" from="9404" to="9407">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">ADP</f>
+ <f name="lemma">von</f>
+ <f name="msd">AdpType=Prep|Case=Dat</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s1709_n20" from="9408" to="9411">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">CCONJ</f>
+ <f name="lemma">und</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s1709_n21" from="9412" to="9419">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">X</f>
+ <f name="lemma">von1972</f>
+ <f name="msd">Foreign=Yes|Person=3</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s1709_n22" from="9421" to="9429">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">PROPN</f>
+ <f name="lemma">Weblinks</f>
+ <f name="msd">Case=Gen|Person=3</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ <span id="s1709_n23" from="9432" to="9447">
+ <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+ <f name="lex">
+ <fs>
+ <f name="pos">NOUN</f>
+ <f name="lemma">Nachweis</f>
+ <f name="msd">Gender=Masc|Number=Plur|Person=3</f>
+ </fs>
+ </f>
+ </fs>
+ </span>
+ </spanList>
+</layer>
diff --git a/t/real/rwk.t b/t/real/rwk.t
index efc0b94..d7d6f2a 100644
--- a/t/real/rwk.t
+++ b/t/real/rwk.t
@@ -26,7 +26,7 @@
is($doc->corpus_sigle, 'REDEW', 'Correct corpus sigle');
my $meta = $doc->meta;
-ok(!$meta->{T_title}, 'Title'); # ???
+is($meta->{T_title}, 'Gram', 'Title'); # ???
ok(!$meta->{T_sub_title}, 'SubTitle');
ok(!$meta->{T_author}, 'Author');
ok(!$meta->{A_editor}, 'Editor');
@@ -95,7 +95,7 @@
is($output->{docSigle}, 'REDEW/DOC1', 'Correct document sigle');
is($output->{corpusSigle}, 'REDEW', 'Correct corpus sigle');
-ok(!$output->{title}, 'Title');
+is($output->{title}, 'Gram', 'Title');
ok(!$output->{subTitle}, 'Correct SubTitle');
ok(!$output->{author}, 'Author');
ok(!exists $output->{editor}, 'Publisher');
diff --git a/t/real/udpipe.t b/t/real/udpipe.t
new file mode 100644
index 0000000..9fde91e
--- /dev/null
+++ b/t/real/udpipe.t
@@ -0,0 +1,163 @@
+use strict;
+use warnings;
+use Test::More;
+use Data::Dumper;
+use JSON::XS;
+
+if ($ENV{SKIP_REAL}) {
+ plan skip_all => 'Skip real tests';
+};
+
+use Benchmark qw/:hireswallclock/;
+
+my $t = Benchmark->new;
+
+use utf8;
+use lib 'lib', '../lib';
+
+use File::Basename 'dirname';
+use File::Spec::Functions 'catdir';
+
+use_ok('KorAP::XML::Krill');
+
+my $path = catdir(dirname(__FILE__), 'corpus','ICCGER','DeReKo-WPD17','A00-82293');
+
+ok(my $doc = KorAP::XML::Krill->new( path => $path . '/' ), 'Load Korap::Document');
+ok($doc->parse, 'Parse document');
+
+is($doc->text_sigle, 'ICCGER/DeReKo-WPD17/A00-82293', 'Correct text sigle');
+is($doc->doc_sigle, 'ICCGER/DeReKo-WPD17', 'Correct document sigle');
+is($doc->corpus_sigle, 'ICCGER', 'Correct corpus sigle');
+
+my $meta = $doc->meta;
+
+is($meta->{T_title}, 'WPD17/A00.82293 Abbildungsfehler, In: Wikipedia - URL:http://de.wikipedia.org/wiki/Abbildungsfehler: Wikipedia, 2017 [Extract]', 'Title');
+is($meta->{S_pub_place}, undef, 'PubPlace');
+is($meta->{D_pub_date}, undef, 'Creation Date');
+is($meta->{S_text_type}, undef, 'Text type');
+is($meta->{T_author}, undef, 'Author');
+is($meta->{S_language}, undef, 'Language');
+is($meta->{T_doc_title}, undef, 'Correct Doc title');
+ok(!$meta->{T_doc_sub_title}, 'Correct Doc Sub title');
+ok(!$meta->{T_doc_author}, 'Correct Doc author');
+ok(!$meta->{A_doc_editor}, 'Correct Doc editor');
+
+# Tokenization
+use_ok('KorAP::XML::Tokenizer');
+
+my ($token_base_foundry, $token_base_layer) = (qw/Base tokens/);
+
+# Get tokenization
+my $tokens = KorAP::XML::Tokenizer->new(
+ path => $doc->path,
+ doc => $doc,
+ foundry => $token_base_foundry,
+ layer => $token_base_layer,
+ name => 'tokens'
+);
+
+ok($tokens, 'Token Object is fine');
+ok($tokens->parse, 'Token parsing is fine');
+
+my $output = decode_json( $tokens->to_json );
+
+is(substr($output->{data}->{text}, 0, 100), 'Es ist aber möglich, die Abbildungsfehler gegenüber einem einfachen System aus einer einzelnen Linse', 'Primary Data');
+
+is($output->{data}->{name}, 'tokens', 'tokenName');
+is($output->{data}->{tokenSource}, 'base#tokens', 'tokenSource');
+is($output->{version}, '0.03', 'version');
+
+is($output->{data}->{foundries}, '', 'Foundries');
+is($output->{data}->{layerInfos}, '', 'layerInfos');
+is($output->{data}->{stream}->[0]->[4], 's:Es', 'data');
+
+is($output->{textSigle}, 'ICCGER/DeReKo-WPD17/A00-82293', 'Correct text sigle');
+is($output->{docSigle}, 'ICCGER/DeReKo-WPD17', 'Correct document sigle');
+is($output->{corpusSigle}, 'ICCGER', 'Correct corpus sigle');
+
+is($output->{title}, 'WPD17/A00.82293 Abbildungsfehler, In: Wikipedia - URL:http://de.wikipedia.org/wiki/Abbildungsfehler: Wikipedia, 2017 [Extract]', 'Title');
+ok(!exists $output->{subTitle}, 'Correct SubTitle');
+ok(!exists $output->{author}, 'Author');
+ok(!exists $output->{editor}, 'Publisher');
+
+ok(!exists $output->{pubPlace}, 'PubPlace');
+ok(!exists $output->{publisher}, 'Publisher');
+
+ok(!exists $output->{textType}, 'Correct Text Type');
+ok(!exists $output->{textTypeArt}, 'Correct Text Type Art');
+ok(!exists $output->{textTypeRef}, 'Correct Text Type Ref');
+ok(!exists $output->{textDomain}, 'Correct Text Domain');
+
+ok(!exists $output->{creationDate}, 'Creation date');
+ok(!exists $output->{availability}, 'License');
+
+ok(!exists $output->{pages}, 'Pages');
+ok(!exists $output->{fileEditionStatement}, 'File Statement');
+ok(!exists $output->{biblEditionStatement}, 'Bibl Statement');
+
+ok(!exists $output->{reference}, 'Reference');
+ok(!exists $output->{language}, 'Language');
+
+ok(!exists $output->{corpusTitle}, 'Correct Corpus title');
+ok(!exists $output->{corpusSubTitle}, 'Correct Corpus sub title');
+ok(!exists $output->{corpusAuthor}, 'Correct Corpus author');
+ok(!exists $output->{corpusEditor}, 'Correct Corpus editor');
+
+ok(!exists $output->{docTitle}, 'Correct Doc title');
+ok(!exists $output->{docSubTitle}, 'Correct Doc sub title');
+ok(!exists $output->{docAuthor}, 'Correct Doc author');
+ok(!exists $output->{docEditor}, 'Correct doc editor');
+
+## Base
+$tokens->add('DeReKo', 'Structure');
+
+$output = decode_json( $tokens->to_json );
+
+is($output->{data}->{foundries}, 'dereko dereko/structure', 'Foundries');
+is($output->{data}->{layerInfos}, 'dereko/s=spans', 'layerInfos');
+my $first_token = join('||', @{$output->{data}->{stream}->[0]});
+like($first_token, qr/<>:dereko\/s:s\$<b>64<i>0<i>145<i>21<b>4/, 'data');
+like($first_token, qr/s:Es/, 'data');
+
+# Add annotations
+$tokens->add('UDPipe', 'Dependency');
+$tokens->add('UDPipe', 'Morpho');
+
+$output = decode_json( $tokens->to_json );
+
+my $first = $output->{data}->{stream}->[0];
+
+is('-:tokens$<i>1878', $first->[0]);
+is('<:ud/d:root$<b>34<i>0<i>145<i>21<i>3', $first->[1]);
+is('<>:dereko/s:s$<b>64<i>0<i>145<i>21<b>4', $first->[2]);
+is('<>:dereko/s:p$<b>64<i>0<i>484<i>61<b>3', $first->[3]);
+is('<>:dereko/s:div$<b>64<i>0<i>782<i>96<b>2<s>1', $first->[4]);
+is('<>:base/s:t$<b>64<i>0<i>15402<i>1878<b>0', $first->[5]);
+is('<>:dereko/s:text$<b>64<i>0<i>15402<i>1878<b>0', $first->[6]);
+is('<>:dereko/s:body$<b>64<i>0<i>15402<i>1878<b>1', $first->[7]);
+is('>:ud/d:expl$<b>32<i>3', $first->[8]);
+is('@:dereko/s:type:fix2$<b>17<s>1<i>96', $first->[9]);
+is('_0$<i>0<i>2', $first->[10]);
+is('i:es', $first->[11]);
+is('s:Es', $first->[12]);
+is('ud/l:Es', $first->[13]);
+is('ud/m:case:nom', $first->[14]);
+is('ud/m:gender:neut', $first->[15]);
+is('ud/m:number:sing', $first->[16]);
+is('ud/m:person:3', $first->[17]);
+is('ud/m:prontype:prs', $first->[18]);
+is('ud/p:PRON', $first->[19]);
+ok(!$first->[20]);
+
+my $last = $output->{data}->{stream}->[-1];
+
+is('>:ud/d:advmod$<b>32<i>1876', $last->[0]);
+is('_1877$<i>15397<i>15401', $last->[1]);
+is('i:auch', $last->[2]);
+is('s:auch', $last->[3]);
+is('ud/l:auch', $last->[4]);
+is('ud/p:ADV', $last->[5]);
+ok(!$last->[6]);
+
+done_testing;
+__END__