Lucene Backend is now a module (1)
diff --git a/trunk/CHANGES b/trunk/CHANGES
new file mode 100644
index 0000000..6b7e832
--- /dev/null
+++ b/trunk/CHANGES
@@ -0,0 +1,49 @@
+0.20 2013-11-18
+        - Unboxing from sandbox.
+
+0.11 2013-11-14
+	- JSON file importer (plain and gzip)
+	- [bugfix] Element Query
+	- [bugfix] Sequence Query
+
+0.10 2013-11-11
+        - Added JSON input to indexer.
+
+0.09 2013-11-07
+        - Reconstruction of all wrapper queries using an interface.
+	- Finished KorapQuery (preliminary feature freeze).
+
+0.08 2013-10-18
+        - Changed methods to attributes in KorapMatch.
+	- Changed SimpleJSON to Jackson.
+	- Fixed Highlighting.
+	- Some Refactoring of result classes.
+	- Introduced KorapDocument.
+	- Introduced KorapHTML utility.
+
+0.07 2013-10-14
+        - Added position to offset matching.
+
+0.06 2013-10-01
+        - Added SpanElementQuery for working WithinQeries.
+	- Added KorapResult and KorapMatching.
+
+0.05 2013-09-18
+        - Fixed bug in indexing (MultiTermTokenStream).
+	- Fixed SpanNext.
+	- Added KorapIndex.
+	- First draft for KorapFilter.
+
+0.04 2013-09-01
+        - Introduced optimized SpanNext class (not working atm),
+	  as SpanNear does not always work with nested synonyms.
+
+0.03 2013-08-28
+        - Added within query (not working atm).
+	- Pushed query part to public repo.
+
+0.02 2013-08-26
+        - Added sequences.
+
+0.01 2013-08-20
+        - First version as maven build environment.
diff --git a/trunk/capabilities.org b/trunk/capabilities.org
new file mode 100644
index 0000000..3e44eb1
--- /dev/null
+++ b/trunk/capabilities.org
@@ -0,0 +1,16 @@
+* Old Poliqarp
+** Term: przyszedł
+** Sequence: przyszedł czas
+** Case insensitive: Przyszedł/i
+** Regex: ".*al+"
+** "Ala.*"
+** "Ala.*"/i
+** "(la){3,}"/x
+** [base=korpus]
+** [orth=przyszedł][orth=czas]
+** [orth=minę & base=mina]
+** [orth=minę & base!=mijać]
+** [base=on | base=ja]
+** [base=on | orth=mnie | orth=ciebie]
+** [orth=pora & !(base=por | base=pora)]
+** TODO [orth=się][][][base=bać]
diff --git a/trunk/pom.xml b/trunk/pom.xml
new file mode 100644
index 0000000..4852a90
--- /dev/null
+++ b/trunk/pom.xml
@@ -0,0 +1,130 @@
+<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
+  xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
+  <modelVersion>4.0.0</modelVersion>
+
+  <groupId>de.ids_mannheim.korap</groupId>
+  <artifactId>KorAP-lucene-index</artifactId>
+  <version>0.20</version>
+  <packaging>jar</packaging>
+
+  <name>KorAP-lucene-index</name>
+  <url>http://www.ids-mannheim.de/</url>
+
+  <organization>
+    <name>IDS Mannheim</name>
+    <url>http://www.ids-mannheim.de/</url>
+  </organization>
+
+  <developers>
+    <developer>
+      <name>Nils Diewald</name>
+      <email>diewald@ids-mannheim.de</email>
+      <url>http://nils-diewald.de</url>
+    </developer>
+  </developers>
+
+  <properties>
+    <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
+  </properties>
+
+  <dependencies>
+
+    <!-- junit dependency -->
+    <dependency>
+      <groupId>junit</groupId>
+      <artifactId>junit</artifactId>
+      <version>4.11</version>
+      <scope>test</scope>
+    </dependency>
+
+    <!-- log4j dependency -->
+    <dependency>
+      <groupId>log4j</groupId>
+      <artifactId>log4j</artifactId>
+      <version>1.2.17</version>
+    </dependency>
+    <dependency>
+      <groupId>org.slf4j</groupId>
+      <artifactId>slf4j-log4j12</artifactId>
+      <version>1.7.5</version>
+    </dependency>
+
+    <!-- Lucene core dependency -->
+    <dependency>
+      <artifactId>lucene-core</artifactId>
+      <groupId>org.apache.lucene</groupId>
+      <type>jar</type>
+      <version>4.3.0</version>
+    </dependency>
+
+    <!-- Lucene queryparser dependency -->
+    <dependency>
+      <artifactId>lucene-queryparser</artifactId>
+      <groupId>org.apache.lucene</groupId>
+      <type>jar</type>
+      <version>4.3.0</version>
+    </dependency>
+
+    <!-- Lucene analyzers dependency -->
+    <dependency>
+      <artifactId>lucene-analyzers-common</artifactId>
+      <groupId>org.apache.lucene</groupId>
+      <type>jar</type>
+      <version>4.3.0</version>
+    </dependency>
+
+    <!-- JCache -->
+    <dependency>
+      <groupId>net.sf.jsr107cache</groupId>
+      <artifactId>jsr107cache</artifactId>
+      <version>1.0</version>
+    </dependency>
+
+    <!-- Jackson -->
+    <!-- see https://github.com/FasterXML/jackson-core -->
+    <!-- https://github.com/FasterXML/jackson-databind -->
+    <dependency>
+      <groupId>com.fasterxml.jackson.core</groupId>
+      <artifactId>jackson-databind</artifactId>
+      <version>2.2.2</version>
+    </dependency>
+    <dependency>
+      <groupId>com.fasterxml.jackson.core</groupId>
+      <artifactId>jackson-annotations</artifactId>
+      <version>2.2.2</version>
+    </dependency>
+    <dependency>
+      <groupId>com.fasterxml.jackson.core</groupId>
+      <artifactId>jackson-core</artifactId>
+      <version>2.2.2</version>
+    </dependency>
+
+  </dependencies>
+
+  <build>
+    <sourceDirectory>${basedir}/src/main/java</sourceDirectory>
+    <outputDirectory>${basedir}/bin</outputDirectory>
+    <plugins>
+      <plugin>
+	<artifactId>maven-compiler-plugin</artifactId>
+	<version>2.3.2</version>
+	<configuration>
+	  <source>1.7</source>
+	  <target>1.7</target>
+	</configuration>
+      </plugin>
+<!--
+      <plugin>
+        <artifactId>maven-surefire-plugin</artifactId>
+        <version>2.1.3</version>
+        <configuration>
+          <test>**/*TestSuite*</test>
+          <useFile>false</useFile>
+          <parallel>methods</parallel>
+          <threadCount>10</threadCount>
+        </configuration>
+      </plugin> 
+-->
+    </plugins>
+  </build>
+</project>
diff --git a/trunk/src/main/java/de/ids_mannheim/korap/KorapDocument.java b/trunk/src/main/java/de/ids_mannheim/korap/KorapDocument.java
new file mode 100644
index 0000000..79700ab
--- /dev/null
+++ b/trunk/src/main/java/de/ids_mannheim/korap/KorapDocument.java
@@ -0,0 +1,157 @@
+package de.ids_mannheim.korap;
+
+import java.util.*;
+
+import de.ids_mannheim.korap.util.KorapDate;
+import de.ids_mannheim.korap.document.KorapPrimaryData;
+import de.ids_mannheim.korap.index.FieldDocument;
+
+
+import com.fasterxml.jackson.databind.ObjectMapper;
+import com.fasterxml.jackson.annotation.*;
+
+/* Todo:: Author and textClass may be arrays! */
+
+
+/**
+ * Abstract class representing a document in the KorAP index.
+ *
+ * @author ndiewald
+ */
+public abstract class KorapDocument {
+    private KorapPrimaryData primaryData;
+
+    @JsonIgnore
+    public int internalDocID, localDocID;
+
+    @JsonIgnore
+    public String foundry;
+
+    private String author, textClass, corpusID,
+	           pubPlace, ID, title, subTitle;
+    
+    private KorapDate pubDate;
+
+    /**
+     * Set the publication date of the document the match occurs in.
+     *
+     * @param date The date as a KorapDate compatible string representation.
+     * @return A KorapDate object for chaining.
+     * @see KorapDate#Constructor(String)
+     */
+    public KorapDate setPubDate (String date) {
+	//	ObjectMapper mapper = new ObjectMapper();
+	this.pubDate = new KorapDate(date);
+	return this.pubDate;
+    };
+
+    /**
+     * Set the publication date of the document the match occurs in.
+     *
+     * @param date The date as a KorapDate object.
+     * @return A KorapDate object for chaining.
+     * @see KorapDate
+     */
+    public KorapDate setPubDate (KorapDate date) {
+	return (this.pubDate = date);
+    };
+
+    /**
+     * Get the publication date of the document the match occurs in as a KorapDate object.
+     */
+    @JsonIgnore
+    public KorapDate getPubDate () {
+	return this.pubDate;
+    };
+
+    @JsonProperty("pubDate")
+    public String getPubDateString () {
+	return this.pubDate.toDisplay();
+    };
+
+    public void setAuthor (String author) {
+	this.author = author;
+    };
+
+    public String getAuthor () {
+	return this.author;
+    };
+
+    public void setTextClass (String textClass) {
+	this.textClass = textClass;
+    };
+
+    public String getTextClass () {
+	return this.textClass;
+    };
+
+    public void setPubPlace (String pubPlace) {
+	this.pubPlace = pubPlace;
+    };
+
+    public String getPubPlace () {
+	return this.pubPlace;
+    };
+
+    public void setCorpusID (String corpusID) {
+	this.corpusID = corpusID;
+    };
+
+    @JsonProperty("corpusID")
+    public String getCorpusID () {
+	return this.corpusID;
+    };
+
+    public void setID (String ID) {
+	this.ID = ID;
+    };
+
+    @JsonProperty("ID")
+    public String getID () {
+	return this.ID;
+    };
+
+    public void setTitle (String title) {
+	this.title = title;
+    };
+
+    public String getTitle () {
+	return this.title;
+    };
+
+    public void setSubTitle (String subTitle) {
+	this.subTitle = subTitle;
+    };
+
+    public String getSubTitle () {
+	return this.subTitle;
+    };
+
+    @JsonIgnore
+    public void setPrimaryData (String primary) {
+	this.primaryData = new KorapPrimaryData(primary);
+    };
+
+    public void setPrimaryData (KorapPrimaryData primary) {
+	this.primaryData = primary;
+    };
+
+    public String getPrimaryData () {
+	if (this.primaryData == null)
+	    return "";
+	return this.primaryData.toString();
+    };
+
+    public String getPrimaryData (int startOffset) {
+	return this.primaryData.substring(startOffset);
+    };
+
+    public String getPrimaryData (int startOffset, int endOffset) {
+	return this.primaryData.substring(startOffset, endOffset);
+    };
+
+    @JsonIgnore
+    public int getPrimaryDataLength () {
+	return this.primaryData.length();
+    };
+};
diff --git a/trunk/src/main/java/de/ids_mannheim/korap/KorapFilter.java b/trunk/src/main/java/de/ids_mannheim/korap/KorapFilter.java
new file mode 100644
index 0000000..68153a8
--- /dev/null
+++ b/trunk/src/main/java/de/ids_mannheim/korap/KorapFilter.java
@@ -0,0 +1,172 @@
+package de.ids_mannheim.korap;
+
+import org.apache.lucene.search.Query;
+import org.apache.lucene.search.TermQuery;
+
+import de.ids_mannheim.korap.filter.BooleanFilter;
+import de.ids_mannheim.korap.filter.RegexFilter;
+import de.ids_mannheim.korap.util.KorapDate;
+import org.apache.lucene.index.Term;
+
+
+import org.slf4j.Logger;
+import org.slf4j.LoggerFactory;
+import org.apache.lucene.search.NumericRangeQuery;
+
+
+/*
+  Todo: WildCardFilter!
+  Support: delete boolean etc.
+  Support: supports foundries
+*/
+
+/**
+ * @author Nils Diewald
+ *
+ * KorapFilter implements a simple API for creating meta queries
+ * constituing Virtual Collections.
+ */
+
+/*
+<request>
+  <query>
+    ...XYZ...
+  </query>
+  <filter>
+    <cond><foundry value="Treetagger" /></cond>
+    <cond><foundry value="MATE" /></cond>
+    <condOr>
+      <cond><textClass value="sports" /></cond>
+      <cond><textClass value="news" /></cond>
+    </condOr>
+    <cond><pubDate till="2009" /></cond>
+    <cond><author regex="Peter .+?" /></cond>
+  </filter>
+</request>
+
+Suche XYZ in allen Documenten in den Foundries "Treetagger" und "MATE", die entweder den Texttyp "sports" oder den Texttyp "news" haben, bis höchsten 2009 publiziert wurden und deren Autor auf den regulären Ausdruck "Peter .+?" matcht.
+
+*/
+
+public class KorapFilter {
+    private KorapFilter filter;
+    private Query query;
+
+    // Logger
+    private final static Logger jlog = LoggerFactory.getLogger(KorapFilter.class);
+
+    /**
+     * Search for documents of a specific genre.
+     * @param genre The name of the genre as a string
+     */
+    public BooleanFilter genre (String genre) {
+	return new BooleanFilter("textClass", new TermQuery(
+            new Term("textClass", genre)
+        ));
+    };
+
+    /**
+     * Search for documents of specific genres.
+     * @param genre The name of the genres as a regular expression.
+     */
+    public BooleanFilter genre (RegexFilter genre) {
+	return new BooleanFilter("textClass", genre.toQuery("textClass"));
+    };
+
+    /**
+     * Search for a documents of specific genres.
+     * @param genre The name of the genre as a string
+     * @param genres The names of further genres as strings
+     *
+     * This method is EXPERIMENTAL and may change without warnings!
+     */
+    public BooleanFilter genre (String genre, String ... genres) {
+	BooleanFilter bf = new BooleanFilter("textClass", new TermQuery(
+            new Term("textClass", genre)
+        ));
+	bf = bf.or(genres);
+	return bf;
+    };
+
+    public RegexFilter re (String value) {
+	return new RegexFilter(value);
+    };
+
+    public Query since (String date) {
+	int since = new KorapDate(date).floor();
+	if (since == 0 || since == KorapDate.BEGINNING)
+	    return (Query) null;
+
+	return NumericRangeQuery.newIntRange("pubDate", since, KorapDate.END, true, true);
+    };
+
+
+    public Query till (String date) {
+	try {
+	    int till =  new KorapDate(date).ceil();
+	    if (till == 0 || till == KorapDate.END)
+		return (Query) null;
+
+	    return NumericRangeQuery.newIntRange("pubDate", KorapDate.BEGINNING, till, true, true);
+	}
+	catch (NumberFormatException e) {
+	    jlog.warn("Parameter of till(date) is invalid");
+	};
+	return (Query) null;
+    };
+
+
+    public Query between (String beginStr, String endStr) {
+	KorapDate beginDF = new KorapDate(beginStr);
+
+	int begin = beginDF.floor();
+
+	int end = new KorapDate(endStr).ceil();
+
+	if (end == 0)
+	    return (Query) null;
+
+	if (begin == KorapDate.BEGINNING && end == KorapDate.END)
+	    return (Query) null;
+
+	if (begin == end) {
+	    return new TermQuery(new Term("pubDate", beginDF.toString()));
+	};
+
+	return NumericRangeQuery.newIntRange("pubDate", begin, end, true, true);
+    };
+
+
+    public Query date (String date) {
+	KorapDate dateDF = new KorapDate(date);
+
+	if (dateDF.year() == 0)
+	    return (Query) null;
+
+	if (dateDF.day() == 0 || dateDF.month() == 0) {
+	    int begin = dateDF.floor();
+	    int end = dateDF.ceil();
+
+	    if (end == 0 || (begin == KorapDate.BEGINNING && end == KorapDate.END))
+		return (Query) null;
+	    
+	    return NumericRangeQuery.newIntRange("pubDate", begin, end, true, true);
+	};
+	
+	return new TermQuery(new Term("pubDate", dateDF.toString()));
+    };
+
+
+    /*
+textClass
+id
+title
+subtitle
+author
+corpus
+pubDate
+pubPlace
+    */
+
+
+};
diff --git a/trunk/src/main/java/de/ids_mannheim/korap/KorapIndex.java b/trunk/src/main/java/de/ids_mannheim/korap/KorapIndex.java
new file mode 100644
index 0000000..42349f6
--- /dev/null
+++ b/trunk/src/main/java/de/ids_mannheim/korap/KorapIndex.java
@@ -0,0 +1,671 @@
+package de.ids_mannheim.korap;
+
+import java.io.File;
+import java.io.IOException;
+import java.util.*;
+import java.net.URL;
+
+import java.nio.ByteBuffer;
+import java.util.HashMap;
+import java.util.zip.GZIPInputStream;
+import java.io.FileInputStream;
+
+import org.apache.lucene.index.IndexReader;
+import org.apache.lucene.search.IndexSearcher;
+import org.apache.lucene.search.spans.Spans;
+import org.apache.lucene.search.spans.SpanQuery;
+import org.apache.lucene.search.spans.SpanTermQuery;
+import org.apache.lucene.search.spans.SpanOrQuery;
+import org.apache.lucene.document.Document;
+import org.apache.lucene.index.IndexWriter;
+import org.apache.lucene.index.AtomicReaderContext;
+import org.apache.lucene.index.DirectoryReader;
+import org.apache.lucene.index.DocsAndPositionsEnum;
+import org.apache.lucene.index.Term;
+import org.apache.lucene.index.TermContext;
+import org.apache.lucene.index.Terms;
+import org.apache.lucene.index.TermsEnum;
+import org.apache.lucene.store.FSDirectory;
+import org.apache.lucene.store.Directory;
+import org.apache.lucene.store.RAMDirectory;
+import org.apache.lucene.analysis.standard.StandardAnalyzer;
+import org.apache.lucene.index.IndexWriterConfig;
+import org.apache.lucene.index.IndexWriterConfig.OpenMode;
+
+import com.fasterxml.jackson.annotation.*;
+import com.fasterxml.jackson.databind.ObjectMapper;
+
+import org.apache.lucene.util.Version;
+import org.apache.lucene.util.Bits;
+import org.apache.lucene.util.BytesRef;
+import org.apache.lucene.util.OpenBitSet;
+import org.apache.lucene.search.DocIdSet;
+
+import de.ids_mannheim.korap.index.FieldDocument;
+import de.ids_mannheim.korap.KorapResult;
+import de.ids_mannheim.korap.KorapMatch;
+import de.ids_mannheim.korap.index.PositionsToOffset;
+import de.ids_mannheim.korap.document.KorapPrimaryData;
+
+import org.slf4j.Logger;
+import org.slf4j.LoggerFactory;
+
+import java.nio.ByteBuffer;
+
+/*
+
+  Todo: Use FieldCache!
+
+
+  http://invertedindex.blogspot.co.il/2009/04/lucene-dociduid-mapping-and-payload.html
+  see korap/search.java -> retrieveTokens
+
+  Support multiple indices.
+
+  Support frequency search with regular expressions, so multiple bookkeeping:
+  c<:VVFIN:ging:gehen:past::
+  c>:VVFIN:gnig:neheg:past::
+  -> search for frequencies of VVFIN/gehen
+  -> c:VVFIN:[^:]*?:gehen:past:...
+*/
+
+/**
+ * @author Nils Diewald
+ * 
+ * KorapIndex implements a simple API for searching in and writing to a
+ * Lucene index and equesting several information but the index's nature.
+ */
+public class KorapIndex {
+    private Directory directory;
+
+    // Temp:
+    public IndexReader reader;
+
+    private IndexWriter writer;
+    private IndexSearcher searcher;
+    private boolean readerOpen = false;
+    private int commitCounter = 0;
+    private int autoCommit = 500;
+    private HashMap termContexts;
+    private ObjectMapper mapper = new ObjectMapper();
+
+
+    private static ByteBuffer bb = ByteBuffer.allocate(4);
+    private static ByteBuffer bbOffset = ByteBuffer.allocate(8);
+
+
+    private byte[] pl = new byte[4];
+
+    private Set<String> fieldsToLoad;
+
+    // Logger
+    private final static Logger log = LoggerFactory.getLogger(KorapIndex.class);
+
+    public KorapIndex () throws IOException {
+	this((Directory) new RAMDirectory());
+    };
+
+
+    public KorapIndex (String index) throws IOException {
+	this(FSDirectory.open(new File( index )));
+    };
+
+
+    public KorapIndex (Directory directory) throws IOException {
+	this.directory = directory;
+
+	fieldsToLoad = new HashSet<String>();
+	fieldsToLoad.add("author");
+	fieldsToLoad.add("ID");
+	fieldsToLoad.add("title");
+	fieldsToLoad.add("subTitle");
+	fieldsToLoad.add("textClass");
+	fieldsToLoad.add("pubPlace");
+	fieldsToLoad.add("pubDate");
+	fieldsToLoad.add("corpusID");
+
+	// Base analyzer for searching and indexing
+	StandardAnalyzer analyzer = new StandardAnalyzer(Version.LUCENE_CURRENT);
+
+	// Create configuration with base analyzer
+	IndexWriterConfig config = new IndexWriterConfig(Version.LUCENE_CURRENT, analyzer);
+
+	this.writer = new IndexWriter(this.directory, config);
+    };
+
+
+    public void close () throws IOException {
+	this.closeReader();
+	this.closeWriter();
+    };
+
+
+    public IndexReader reader () {
+	if (!readerOpen)
+	    this.openReader();
+
+	return this.reader;
+    };
+
+    public IndexSearcher searcher () {
+	if (this.searcher == null) {
+	    this.searcher = new IndexSearcher(this.reader());
+	};
+	return this.searcher;
+    };
+
+    public void closeWriter () throws IOException {
+	this.writer.close();
+    };
+
+
+    public void closeReader () throws IOException {
+	if (readerOpen) {
+	    this.reader.close();
+	    readerOpen = false;
+	};
+    };
+
+
+    public void openReader () {
+	try {
+	    this.reader = DirectoryReader.open(this.directory);
+	    readerOpen = true;
+	    if (this.searcher != null) {
+		this.searcher = new IndexSearcher(reader);
+	    };
+	}
+
+	catch (IOException e) {
+	    log.warn( e.getLocalizedMessage() );
+	};
+    };
+
+
+    public FieldDocument addDoc (FieldDocument fd) throws IOException {
+	
+	// Add document to writer
+	this.writer.addDocument( fd.doc );
+	if (++commitCounter > autoCommit) {
+	    this.commit();
+	    commitCounter = 0;
+	};
+	return fd;
+    };
+
+    // Add with file!
+    public FieldDocument addDoc (String json) throws IOException {
+	FieldDocument fd = this.mapper.readValue(json, FieldDocument.class);
+	return this.addDoc(fd);
+    };
+
+    public FieldDocument addDoc (File json) throws IOException {
+	FieldDocument fd = this.mapper.readValue(json, FieldDocument.class);
+	return this.addDoc(fd);
+    };
+
+    public FieldDocument addDocFile(String json) throws IOException {
+	return this.addDocFile(json, false);
+    };
+
+    public FieldDocument addDocFile(String json, boolean gzip) throws IOException {
+	if (gzip) {
+	    FieldDocument fd = this.mapper.readValue(new GZIPInputStream(new FileInputStream(json)), FieldDocument.class);
+	    return this.addDoc(fd);
+	};
+	return this.addDoc(json);
+    };
+
+    public void commit () throws IOException {
+	if (commitCounter > 0) {
+	    this.writer.commit();
+	    commitCounter = 0;
+	    this.closeReader();
+	};
+    };
+
+
+    // Get autoCommit valiue
+    public int autoCommit () {
+	return this.autoCommit;
+    };
+
+
+    // Set autoCommit value
+    public void autoCommit (int number) {
+	this.autoCommit = number;
+    };
+
+
+    // Search for meta information in term vectors
+    private long numberOfAtomic (Bits docvec,
+				 AtomicReaderContext atomic,
+				 Term term) throws IOException {
+
+	// This reimplements docsAndPositionsEnum with payloads
+	final Terms terms = atomic.reader().fields().terms(term.field());
+
+	// No terms were found
+	if (terms != null) {
+	    // Todo: Maybe reuse a termsEnum!
+	    final TermsEnum termsEnum = terms.iterator(null);
+
+	    // Set the positioon in the iterator to the term that is seeked
+	    if (termsEnum.seekExact(term.bytes(), true)) {
+
+		// Start an iterator to fetch all payloads of the term
+		DocsAndPositionsEnum docs = termsEnum.docsAndPositions(
+		    docvec,
+		    null,
+		    DocsAndPositionsEnum.FLAG_PAYLOADS
+		);
+
+		// Iterator is empty
+		if (docs.docID() == DocsAndPositionsEnum.NO_MORE_DOCS) {
+		    return 0;
+		};
+
+		// Init some variables for data copying
+		long occurrences = 0;
+		BytesRef payload;
+
+		// Init nextDoc()
+		while (docs.nextDoc() != DocsAndPositionsEnum.NO_MORE_DOCS) {
+
+		    // Go to first term (initialization phase)
+// TODO: THIS MAY BE WRONG!
+		    docs.nextPosition();
+
+		    // Copy payload with the offset of the BytesRef
+		    payload = docs.getPayload();
+		    System.arraycopy(payload.bytes, payload.offset, pl, 0, 4);
+
+		    // Add payload as integer
+		    occurrences += bb.wrap(pl).getInt();
+		};
+
+		// Return the sum of all occurrences
+		return occurrences;
+	    };
+	};
+
+	// Nothing found
+	return 0;
+    };
+
+
+    /**
+     * Search for the number of occurrences of different types,
+     * e.g. "documents", "sentences" etc.
+     *
+     * @param foundry The foundry to search in.
+     * @param type The type of meta information, e.g. "documents" or "sentences".
+     */
+    public long numberOf (String foundry, String type) {
+	// Short cut for documents
+	if (type.equals("documents")) {
+	    return this.reader().numDocs();
+	};
+    
+	// Create search term
+	Term term = new Term(foundry, "-:" + type);
+	// System.err.println(">> Search for -:" + type + " in " + foundry);
+
+
+	long occurrences = 0;
+	try {
+	    // Iterate over all atomic readers and collect occurrences
+	    for (AtomicReaderContext atomic : this.reader().leaves()) {
+		occurrences += this.numberOfAtomic(
+                    atomic.reader().getLiveDocs(),
+		    atomic,
+		    term
+		);
+	    };
+	}
+
+	// Something went wrong
+	catch (IOException e) {
+	    log.warn( e.getLocalizedMessage() );
+	};
+
+	return occurrences;
+    };
+
+    /**
+     * Search for the number of occurrences of different types,
+     * e.g. "documents", "sentences" etc., in the base foundry.
+     *
+     * @param type The type of meta information, e.g. "documents" or "sentences".
+     *
+     * @see #numberOf(String, String)
+     */
+    public long numberOf (String type) throws IOException {
+	return this.numberOf("base", type);
+    };
+
+
+    /**
+     * Search for the number of occurrences of different types,
+     * e.g. "documents", "sentences" etc., in a specific set of documents.
+     *
+     * @param docvec The document vector for filtering the search space.
+     * @param foundry The foundry to search in.
+     * @param type The type of meta information, e.g. "documents" or "sentences".
+     *
+     * @see #numberOf(String, String)
+     */
+    public long numberOf (Bits docvec, String foundry, String type) throws IOException {
+
+	// Shortcut for documents
+	if (type.equals("documents")) {
+	    OpenBitSet os = (OpenBitSet) docvec;
+	    return os.cardinality();
+	};
+    
+	Term term = new Term(foundry, "-:" + type);
+
+	int occurrences = 0;
+	try {
+	    for (AtomicReaderContext atomic : this.reader().leaves()) {
+		occurrences += this.numberOfAtomic(docvec, atomic, term);
+	    };
+	}
+	catch (IOException e) {
+	    log.warn( e.getLocalizedMessage() );
+	};
+
+	return occurrences;
+    };
+
+
+    // Deprecated
+    public long countDocuments () throws IOException {
+	log.warn("countDocuments() is DEPRECATED in favor of numberOf(\"documents\")!");
+	return this.numberOf("documents");
+    };
+
+
+    // Deprecated
+    public long countAllTokens () throws IOException {
+	log.warn("countAllTokens() is DEPRECATED in favor of numberOf(\"tokens\")!");
+	return this.numberOf("tokens");
+    };
+
+
+    /**
+     * search
+     */
+    public KorapResult search (SpanQuery query) {
+	return this.search((Bits) null, query, 0, (short) 10, true, (short) 6, true, (short) 6);
+    };
+
+    public KorapResult search (SpanQuery query,
+			       short count) {
+	return this.search((Bits) null, query, 0, count, true, (short) 6, true, (short) 6);
+    };
+
+    public KorapResult search (Bits bitset,
+			       SpanQuery query,
+			       short count) {
+	return this.search((Bits) bitset, query, 0, count, true, (short) 6, true, (short) 6);
+    };
+
+    public KorapResult search (SpanQuery query,
+			       int startIndex,
+			       short count,
+			       boolean leftTokenContext,
+			       short leftContext,
+			       boolean rightTokenContext,
+			       short rightContext) {
+	return this.search((Bits) null, query, startIndex, count,
+			   leftTokenContext, leftContext, rightTokenContext, rightContext);
+    };
+
+    public KorapResult search (Bits bitset,
+			       SpanQuery query,
+			       int startIndex,
+			       short count,
+			       boolean leftTokenContext,
+			       short leftContext,
+			       boolean rightTokenContext,
+			       short rightContext) {
+
+	this.termContexts = new HashMap<Term, TermContext>();
+	String foundry = query.getField();
+
+	KorapResult kr = new KorapResult(
+	    query.toString(),
+	    startIndex,
+	    count,
+	    leftTokenContext,
+	    leftContext,
+	    rightTokenContext,
+	    rightContext
+        );
+
+	HashSet<String> fieldsToLoadLocal = new HashSet<>(fieldsToLoad);
+	fieldsToLoadLocal.add(foundry);
+
+	try {
+	    for (AtomicReaderContext atomic : this.reader().leaves()) {
+		if (bitset == null)
+		    bitset = atomic.reader().getLiveDocs();
+
+		PositionsToOffset pto = new PositionsToOffset(atomic, foundry);
+
+		// Spans spans = NearSpansOrdered();
+		Spans spans = query.getSpans(atomic, bitset, termContexts);
+
+		IndexReader lreader = atomic.reader();
+
+		// TODO: Get document information from Cache!
+
+		// See: http://www.ibm.com/developerworks/java/library/j-benchmark1/index.html
+		long t1 = System.nanoTime();
+
+		int i = 0;
+		for (; i < kr.itemsPerPage(); i++) {
+
+		    if (spans.next() != true) {
+			break;
+		    };
+		   
+		    if (startIndex > i)
+			continue;
+
+		    int localDocID = spans.doc();
+		    int docID = atomic.docBase + localDocID;
+
+		    Document doc = lreader.document(docID, fieldsToLoadLocal);
+		    KorapMatch match = new KorapMatch();
+
+		    match.startPos = spans.start();
+		    match.endPos = spans.end();
+		    match.localDocID = localDocID;
+
+		    pto.add(localDocID, match.startPos);
+		    pto.add(localDocID, match.endPos - 1);
+
+		    match.leftContext = leftContext;
+		    match.rightContext = rightContext;
+
+		    match.leftTokenContext = leftTokenContext;
+		    match.rightTokenContext = rightTokenContext;
+
+		    // Add pos for context
+		    if (leftTokenContext) {
+			pto.add(localDocID, match.startPos - leftContext);
+		    };
+
+		    // Add pos for context
+		    if (rightTokenContext) {
+			pto.add(localDocID, match.endPos + rightContext - 1);
+		    };
+
+		    if (spans.isPayloadAvailable()) {
+
+			// TODO: Here are offsets and highlight offsets!
+			// <> payloads have 12 bytes (iii) or 8!?
+			// highlightoffsets have 10 bytes (iis)!
+
+			// 11 bytes!!!
+
+			/*
+			int[] offsets = getOffsetsFromPayload(spans.getPayload());
+			match.startOffset(offsets[0]);
+			match.startOffset(offsets[1]);
+			*/
+
+			try {
+			    ByteBuffer bb = ByteBuffer.allocate(10);
+			    for (byte[] b : spans.getPayload()) {
+
+				log.trace("Found a payload!!! with length {}", b.length);
+
+				// Todo element searches!
+
+				// Highlights!
+				if (b.length == 9) {
+				    bb.put(b);
+				    bb.rewind();
+
+				    int start = bb.getInt();
+				    int end = bb.getInt() -1;
+				    byte number = bb.get();
+
+				    log.trace("Have a payload: {}-{}", start, end);
+
+				    // Add this for offset search
+				    pto.add(localDocID, start);
+				    pto.add(localDocID, end);
+
+				    match.addHighlight(start, end, number);
+				}
+
+				// Element payload for match!
+				// This MAY BE the correct match
+				else if (b.length == 8) {
+				    bb.put(b);
+				    bb.rewind();
+
+				    if (match.potentialStartPosChar == -1) {
+					match.potentialStartPosChar = bb.getInt(0);
+				    }
+				    else {
+					if (bb.getInt(0) < match.potentialStartPosChar)
+					match.potentialStartPosChar = bb.getInt(0);
+				    };
+
+				    if (bb.getInt(4) > match.potentialEndPosChar)
+					match.potentialEndPosChar = bb.getInt(4);
+
+				    log.trace("Element payload from {} to {}",
+					      match.potentialStartPosChar,
+					      match.potentialEndPosChar);
+				}
+
+				else if (b.length == 4) {
+				    bb.put(b);
+				    bb.rewind();
+				    log.debug("Unknown[4]: {}", bb.getInt());
+				};
+
+				bb.clear();
+			    };
+
+			}
+
+			catch (Exception e) {
+			}
+
+			// match.payload(spans.getPayload());
+		    };
+
+
+		    match.internalDocID = docID;
+		    match.foundry = foundry;
+
+		    match.setAuthor(doc.get("author"));
+		    match.setTextClass(doc.get("textClass"));
+		    match.setID(doc.get("ID"));
+		    match.setTitle(doc.get("title"));
+		    match.setSubTitle(doc.get("subTitle"));
+		    match.setPubPlace(doc.get("pubPlace"));
+		    match.setCorpusID(doc.get("corpusID"));
+		    match.setPubDate(doc.get("pubDate"));
+
+		    match.setPrimaryData(
+		      new KorapPrimaryData(doc.get(foundry))
+		    );
+
+		    kr.add(match);
+		};
+
+		long t2 = System.nanoTime();
+
+		kr.setBenchmarkSearchResults(t1, t2);
+
+		while (spans.next() == true) {
+		    i++;
+		};
+
+		kr.setBenchmarkHitCounter(t2, System.nanoTime());
+
+		kr.setTotalResults(i);
+
+		for (KorapMatch km : kr.getMatches()) {
+		    km.processHighlight(pto);
+		};
+	    };
+
+	    // if (spans.isPayloadAvailable()) {
+	    // for (byte[] payload : spans.getPayload()) {
+	    // // retrieve payload for current matching span
+	    // payloadString.append(new String(payload));
+	    // payloadString.append(" | ");
+	    // };
+	    // };
+	}
+	catch (IOException e) {
+	    kr.setError("There was an IO error");
+	    log.warn( e.getLocalizedMessage() );
+	};
+
+	return kr;
+    };
+
+
+	/*
+
+    public void getFoundryStatistics {
+- provides statistical information:
+  - which documents have which foundries
+    - Collect all Bitvectors of each foundry and make the intersections afterwards
+  - ???
+    };
+
+
+    public KorapResult search (Bits bits, KorapQuery query) {
+	//	this.search(bits, query);
+    };
+
+    // countAllTokens
+    public int getNumberOfTokens (String corpus) throws IOException {
+	return this.getNumberOf("token", "base", corpus);
+    };
+
+
+    // retrieveTokens(docname, startOffset, endOffset, layer);
+
+
+    /*
+
+
+    // todo mit pagesize und offset
+
+
+    };
+*/
+
+};
diff --git a/trunk/src/main/java/de/ids_mannheim/korap/KorapMatch.java b/trunk/src/main/java/de/ids_mannheim/korap/KorapMatch.java
new file mode 100644
index 0000000..ed2db88
--- /dev/null
+++ b/trunk/src/main/java/de/ids_mannheim/korap/KorapMatch.java
@@ -0,0 +1,523 @@
+package de.ids_mannheim.korap;
+import java.util.*;
+
+import com.fasterxml.jackson.annotation.*;
+import com.fasterxml.jackson.databind.ObjectMapper;
+
+import de.ids_mannheim.korap.index.PositionsToOffset;
+import static de.ids_mannheim.korap.util.KorapHTML.*;
+
+import org.slf4j.Logger;
+import org.slf4j.LoggerFactory;
+
+/*
+  Todo: The implemented classes and private names are horrible!
+  Refactor, future-me!
+*/
+
+/**
+ * Representation of Matches in a KorapResult.
+ *
+ * @see KorapResult
+ * @author ndiewald
+ */
+public class KorapMatch extends KorapDocument {
+    ObjectMapper mapper = new ObjectMapper();
+
+    // Snippet information
+    @JsonIgnore
+    public short leftContext, rightContext;
+
+    @JsonIgnore
+    public int startPos, endPos;
+
+    @JsonIgnore
+    public int potentialStartPosChar = -1, potentialEndPosChar = -1;
+
+    @JsonIgnore
+    public boolean leftTokenContext, rightTokenContext;
+
+    private String tempSnippet, snippetHTML, snippetBrackets;
+    private HighlightCombinator snippetStack;
+    private boolean startMore = true, endMore = true;
+
+    private Collection<byte[]> payload;
+    private ArrayList<int[]> highlight;
+
+    // Logger
+    private final static Logger log = LoggerFactory.getLogger(KorapMatch.class);
+
+    /**
+     * Insert a highlight for the snippet view by means of positional
+     * offsets and an optional class number.
+     *
+     * @param start  Integer value of a span's positional start offset.
+     * @param end    Integer value of a span's positional end offset.
+     * @param number Optional class number of the highlight.
+     */
+    public void addHighlight (int start, int end, byte number) {
+	this.addHighlight(start, end, (int) number);
+    };
+
+    public void addHighlight (int start, int end, short number) {
+	this.addHighlight(start, end, (int) number);
+    };
+
+    public void addHighlight (int start, int end) {
+	this.addHighlight(start, end, (int) 1);
+    };
+
+    public void addHighlight (int start, int end, int number) {
+	if (this.highlight == null)
+	    this.highlight = new ArrayList<int[]>();
+
+	log.trace("Add highlight of class {} from {} to {}", number, start, end);
+
+	this.highlight.add(new int[]{ start, end, number});
+    };
+
+    /*
+    public JSONObject toJSON() {
+	JSONObject json = new JSONObject();
+	json.put("internalDocID", this.internalDocID);
+	
+	if (this.author != null)
+	    json.put("author", this.author);
+
+	if (this.getPubDate() != null && this.getPubDate().year() > 0)
+	    json.put("pubDate", this.getPubDate().toDisplay());
+
+	if (this.snippetHTML() != null)
+	    json.put("snippet", this.snippetHTML);
+
+	// json.put("primary", this.primary);
+
+	JSONArray pos = new JSONArray();
+	pos.add(this.startPos);
+	pos.add(this.endPos);
+	json.put("position", pos);
+
+	return json;
+    };
+    */
+
+
+    /**
+     * Generates a highlighted snippet for the mach, that can be
+     * retrieved afterwards via snippetHTML() and snippetBrackets().
+     * <p>
+     * The information on offset positions has to be retrieved beforehand
+     * by filling up the PositionsToOffset.
+     *
+     * @param pto The PositionsToOffset object, containing relevant
+     *            positional information for highlighting
+     * @see #snippetHTML()
+     * @see #snippetBrackets()
+     * @see PositionsToOffset
+     */
+    public void processHighlight (PositionsToOffset pto) {
+
+	log.trace("Start highlight processing ...");
+	
+	// Get the list of spans for matches and highlighting
+	LinkedList<int[]> spans = this._processHighlightSpans(
+            pto,
+	    leftTokenContext,
+	    rightTokenContext
+        );
+
+	for (int[] s : spans) {
+	    log.trace(" >> [Spans] Start: {}, End: {}, Class: {}, Dummy: {}", s[0], s[1], s[2], s[3]);
+	};
+
+	ArrayList<int[]> stack = this._processHighlightStack(spans);
+
+	for (int[] s : stack) {
+	    log.trace(" >> [Stack] Start: {}, End: {}, Class: {}, Dummy: {}", s[0], s[1], s[2], s[3]);
+	};
+
+
+	if (this.tempSnippet == null)
+	    return;
+
+	this._processHighlightSnippet(this.tempSnippet, stack);
+
+	/*
+
+	Collection.sort(openList);
+with http://docs.oracle.com/javase/6/docs/api/java/util/Comparator.html
+	*/
+    };
+
+    private class OpeningTagComparator implements Comparator<int[]> {
+	@Override
+	public int compare (int[] arg0, int[] arg1) {
+	    if (arg0[0] > arg1[0]) {
+		return 1;
+	    }
+	    else if (arg0[0] == arg1[0]) {
+		if (arg0[1] > arg1[1])
+		    return -1;
+		return 1;
+	    };
+	    return -1;
+	};
+    };
+
+    private class ClosingTagComparator implements Comparator<int[]> {
+	@Override
+	public int compare (int[] arg0, int[] arg1) {
+	    if (arg0[1] > arg1[1]) {
+		return 1;
+	    }
+	    else if (arg0[1] == arg1[1]) {
+		if (arg0[0] < arg1[0])
+		    return 1;
+		return -1;
+	    };
+	    return -1;
+	};
+    };
+
+    private class HighlightCombinatorElement {
+	private short type;
+	private int number;
+	private String characters;
+
+	public HighlightCombinatorElement (short type, int number) {
+	    this.type = type;
+	    this.number = number;
+	};
+
+	public HighlightCombinatorElement (String characters) {
+	    this.type = 0;
+	    this.characters = characters;
+	};
+
+	public String toHTML () {	    
+	    if (this.type == 1) {
+		StringBuilder sb = new StringBuilder();
+		sb.append("<span class=\"");
+		if (this.number == -1) {
+		    sb.append("korap-match\"");
+		}
+		else {
+		    sb.append("korap-highlight korap-class-")
+			.append(this.number)
+			.append('"');
+		};
+		sb.append('>');
+		return sb.toString();
+	    }
+	    else if (this.type == 2) {
+		return "</span>";
+	    };
+	    return encodeHTML(this.characters);
+	};
+
+	public String toBrackets () {
+	    if (this.type == 1) {
+		StringBuilder sb = new StringBuilder();
+		if (this.number == -1) {
+		    sb.append("[");
+		}
+		else {
+		    sb.append("{");
+		    if (this.number != 0)
+			sb.append(this.number).append(':');
+		};
+		return sb.toString();
+	    }
+	    else if (this.type == 2) {
+		if (this.number == -1) {
+		    return "]";
+		}
+		return "}";
+	    };
+	    return this.characters;
+	};
+
+    };
+
+    private class HighlightCombinator {
+	private LinkedList<HighlightCombinatorElement> combine;
+	private LinkedList<Integer> balanceStack = new LinkedList<>();
+	private ArrayList<Integer> tempStack = new ArrayList<>(32);
+
+	public HighlightCombinator () {
+	    this.combine = new LinkedList<>();
+	};
+
+	public LinkedList<HighlightCombinatorElement> stack () {
+	    return this.combine;
+	};
+
+	public void addString (String characters) {
+	    this.combine.add(new HighlightCombinatorElement(characters));
+	};
+
+	public void addOpen (int number) {
+	    this.combine.add(new HighlightCombinatorElement((short) 1, number));
+	    this.balanceStack.add(number);
+	};
+
+	public void addClose (int number) {
+	    HighlightCombinatorElement lastComb;
+	    this.tempStack.clear();
+	    int eold = this.balanceStack.removeLast();
+	    while (eold != number) {
+		lastComb = this.combine.peekLast();
+		if (lastComb.type == 1 && lastComb.number != eold) {
+		    this.combine.removeLast();
+		}
+		else {
+		    this.combine.add(new HighlightCombinatorElement((short) 2, eold));
+		};
+		tempStack.add(eold);
+		eold = this.balanceStack.removeLast();
+	    };
+	    
+	    lastComb = this.combine.peekLast();
+	    if (lastComb.type == 1 && lastComb.number == number) {
+		this.combine.removeLast();
+	    }
+	    else {
+		this.combine.add(new HighlightCombinatorElement((short) 2, number));
+	    };
+	    
+	    for (int e : tempStack) {
+		combine.add(new HighlightCombinatorElement((short) 1, e));
+		balanceStack.add(e);
+	    };
+	};
+
+	public String toString () {
+	    StringBuilder sb = new StringBuilder();
+	    for (HighlightCombinatorElement e : combine) {
+		sb.append(e.toString()).append("\n");
+	    };
+	    return sb.toString();
+	};
+    };
+
+    private void _processHighlightSnippet (String clean, ArrayList<int[]> stack) {
+	int pos = 0;
+	int oldPos = 0;
+
+	log.trace("Create Snippet");
+
+	this.snippetStack = new HighlightCombinator();
+
+	for (int[] element : stack) {
+	    pos = element[3] != 0 ? element[0] : element[1];
+
+	    if (pos != oldPos) {
+		snippetStack.addString(clean.substring(oldPos, pos));
+
+		oldPos = pos;
+	    };
+
+	    if (element[3] != 0) {
+		snippetStack.addOpen(element[2]);
+	    }
+	    else {
+		snippetStack.addClose(element[2]);
+	    };
+	};
+
+	snippetStack.addString(clean.substring(pos));
+    };
+
+    @Deprecated
+    public String snippetHTML () {
+	return this.getSnippetHTML();
+    };
+
+    @JsonProperty("snippet")
+    public String getSnippetHTML () {
+	if (this.snippetHTML != null)
+	    return this.snippetHTML;
+
+	StringBuilder sb = new StringBuilder();
+	if (startMore)
+	    sb.append("<span class=\"korap-more-left\"></span>");
+
+	for (HighlightCombinatorElement hce : this.snippetStack.stack()) {
+	    sb.append(hce.toHTML());
+	};
+
+	if (endMore)
+	    sb.append("<span class=\"korap-more-right\"></span>");
+
+	return (this.snippetHTML = sb.toString());
+    };
+
+    @Deprecated
+    public String snippetBrackets () {
+	return this.getSnippetBrackets();
+    };
+    
+    @JsonIgnore
+    public String getSnippetBrackets () {
+	if (this.snippetBrackets != null)
+	    return this.snippetBrackets;
+
+	StringBuilder sb = new StringBuilder();
+
+	if (startMore)
+	    sb.append("... ");
+
+	for (HighlightCombinatorElement hce : this.snippetStack.stack()) {
+	    sb.append(hce.toBrackets());
+	};
+
+	if (endMore)
+	    sb.append(" ...");
+
+	return (this.snippetBrackets = sb.toString());
+    };
+
+
+    // Todo: Not very fast - just a direct translation of the perl script
+    private ArrayList<int[]> _processHighlightStack (LinkedList<int[]> spans) {
+
+	log.trace("Create Stack");
+
+
+	LinkedList<int[]> openList  = new LinkedList<int[]>();
+	LinkedList<int[]> closeList = new LinkedList<int[]>();
+
+	openList.addAll(spans);
+	closeList.addAll(spans);
+
+	Collections.sort(openList, new OpeningTagComparator());
+	Collections.sort(closeList, new ClosingTagComparator());
+
+	ArrayList<int[]> stack = new ArrayList<>(openList.size() * 2);
+
+	while (!openList.isEmpty() || !closeList.isEmpty()) {
+
+	    if (openList.isEmpty()) {
+		stack.addAll(closeList);
+		break;
+	    };
+
+	    if (openList.peekFirst()[0] < closeList.peekFirst()[1]) {
+		int[] e = openList.removeFirst().clone();
+		e[3] = 1;
+		stack.add(e);
+	    }
+	    else {
+		stack.add(closeList.removeFirst());
+	    };
+	};
+	return stack;
+    };
+
+
+    private LinkedList<int[]> _processHighlightSpans (PositionsToOffset pto,
+						      boolean leftTokenContext,
+						      boolean rightTokenContext) {
+	int startOffsetChar,
+	    endOffsetChar,
+	    startPosChar,
+	    endPosChar;
+
+	log.trace("Create Spans");
+
+	int ldid = this.localDocID;
+
+	// Match position
+	startPosChar = pto.start(ldid, this.startPos);
+
+	// Check potential differing start characters
+	// e.g. from element spans
+	if (potentialStartPosChar != -1 && startPosChar > potentialStartPosChar)
+	    startPosChar = potentialStartPosChar;
+
+	endPosChar = pto.end(ldid, this.endPos - 1);
+
+	if (endPosChar < potentialEndPosChar)
+	    endPosChar = potentialEndPosChar;
+
+	log.trace("Matchposition: {}-{}", startPosChar, endPosChar);
+
+	// left context
+	if (leftTokenContext) {
+	    startOffsetChar = pto.start(ldid, startPos - this.leftContext);
+	}
+	else {
+	    startOffsetChar = startPosChar - this.leftContext;
+	};
+
+	// right context
+	if (rightTokenContext) {
+	    endOffsetChar = pto.end(ldid, this.endPos + this.rightContext - 1);
+	    log.trace("For endOffset {} pto returns {}", (this.endPos + this.rightContext - 1), endOffsetChar);
+	}
+	else {
+	    if (endPosChar == -1) {
+		endOffsetChar = -1;
+	    }
+	    else {
+		endOffsetChar = endPosChar + this.rightContext;
+	    };
+	};
+
+	// This can happen in case of non-token characters in the match and null offsets
+	if (startOffsetChar > startPosChar) {
+	    startOffsetChar = startPosChar;
+	}
+	else if (startOffsetChar < 0) {
+	    startOffsetChar = 0;
+	};
+
+	// No ... at the beginning
+	if (startOffsetChar == 0) {
+	    startMore = false;
+	};
+
+	if (endOffsetChar != -1 && endOffsetChar < endPosChar)
+	    endOffsetChar = endPosChar;
+
+
+	log.trace("Offsetposition {} till {} with contexts {} and {}", startOffsetChar, endOffsetChar, leftContext, rightContext);
+
+
+	if (endOffsetChar > -1 && endOffsetChar < this.getPrimaryDataLength()) {
+	    this.tempSnippet = this.getPrimaryData(startOffsetChar, endOffsetChar);
+	}
+	else {
+	    this.tempSnippet = this.getPrimaryData(startOffsetChar);
+	    endMore = false;
+	};
+
+	log.trace("Temporary snippet is {}", this.tempSnippet);
+
+        LinkedList<int[]> spans = new LinkedList<int[]>();
+
+	spans.add(new int[]{ startPosChar - startOffsetChar, endPosChar - startOffsetChar, -1, 0});
+
+	// highlights
+	if (this.highlight != null) {
+	    for (int[] highlight : this.highlight) {
+
+		int start = pto.start(ldid, highlight[0]) - startOffsetChar;
+		int end = pto.end(ldid, highlight[1]) - startOffsetChar;
+
+		if (start == -1 & end == -1)
+		    continue;
+
+		spans.add(new int[]{
+			start,
+			end,
+			highlight[2],
+			0 // Dummy value for later
+		    });
+	    };
+	};
+
+	return spans;
+    };
+
+};
diff --git a/trunk/src/main/java/de/ids_mannheim/korap/KorapQuery.java b/trunk/src/main/java/de/ids_mannheim/korap/KorapQuery.java
new file mode 100644
index 0000000..82b67bd
--- /dev/null
+++ b/trunk/src/main/java/de/ids_mannheim/korap/KorapQuery.java
@@ -0,0 +1,233 @@
+package de.ids_mannheim.korap;
+
+import org.apache.lucene.search.spans.SpanQuery;
+
+import de.ids_mannheim.korap.query.wrap.*;
+import org.apache.lucene.util.automaton.RegExp;
+
+import java.util.*;
+
+import org.slf4j.Logger;
+import org.slf4j.LoggerFactory;
+
+/**
+ * @author Nils Diewald
+ *
+ * KorapQuery implements a simple API for wrapping
+ * KorAP Index I specific query classes.
+ */
+public class KorapQuery {
+    private String field;
+
+    // Logger
+    private final static Logger log = LoggerFactory.getLogger(KorapQuery.class);
+
+    /**
+     * Constructs a new base object for query generation.
+     * @param field The specific index field for the query.
+     */
+    public KorapQuery (String field) {
+	this.field = field;
+    };
+
+
+    // SpanSegmentRegexQuery
+    /**
+     * Create a query object based on a regular expression.
+     * @param re The regular expession as a string.
+     */
+    public SpanRegexQueryWrapper re (String re) {
+	return new SpanRegexQueryWrapper(this.field, re, RegExp.ALL, false);
+    };
+
+    /**
+     * Create a query object based on a regular expression.
+     * @param re The regular expession as a string.
+     * @param flas The regular expession flag as an integer.
+     */
+    public SpanRegexQueryWrapper re (String re, int flags) {
+	return new SpanRegexQueryWrapper(this.field, re, flags, false);
+    };
+
+
+    /**
+     * Create a query object based on a regular expression.
+     * @param re The regular expession as a string.
+     * @param flag The regular expession flag.
+     * @param caseinsensitive A boolean value indicating case insensitivity.
+     */
+    public SpanRegexQueryWrapper re (String re, int flags, boolean caseinsensitive) {
+	return new SpanRegexQueryWrapper(this.field, re, flags, caseinsensitive);
+    };
+
+
+    /**
+     * Create a query object based on a regular expression.
+     * @param re The regular expession as a string.
+     * @param caseinsensitive A boolean value indicating case insensitivity.
+     */
+    public SpanRegexQueryWrapper re (String re, boolean caseinsensitive) {
+	return new SpanRegexQueryWrapper(this.field, re, RegExp.ALL, caseinsensitive);
+    };
+
+
+    // SpanSegmentQueries
+    /**
+     * Create a segment query object.
+     */
+    public SpanSegmentQueryWrapper seg () {
+	return new SpanSegmentQueryWrapper(this.field);
+    };
+
+
+    /**
+     * Create a segment query object.
+     * @param terms[] An array of terms, the segment consists of.
+     */
+    public SpanSegmentQueryWrapper seg (SpanRegexQueryWrapper ... terms) {
+	SpanSegmentQueryWrapper ssq = new SpanSegmentQueryWrapper(this.field);
+	for (SpanRegexQueryWrapper t : terms) {
+	    ssq.with(t);
+	};
+	return ssq;
+    };
+
+    public SpanSegmentQueryWrapper seg (SpanAlterQueryWrapper ... terms) {
+	SpanSegmentQueryWrapper ssq = new SpanSegmentQueryWrapper(this.field);
+	for (SpanAlterQueryWrapper t : terms) {
+	    ssq.with(t);
+	};
+	return ssq;
+    };
+
+    public SpanSegmentQueryWrapper seg (String ... terms) {
+	SpanSegmentQueryWrapper ssq = new SpanSegmentQueryWrapper(this.field);
+	for (String t : terms) {
+	    ssq.with(t);
+	};
+	return ssq;
+    };
+
+    // SpanSegmentAlterQueries
+    /**
+     * Create a segment alternation query object.
+     * @param terms[] An array of alternative terms.
+     */
+    public SpanAlterQueryWrapper or (SpanQueryWrapperInterface ... terms) {
+	SpanAlterQueryWrapper ssaq = new SpanAlterQueryWrapper(this.field);
+	for (SpanQueryWrapperInterface t : terms) {
+	    ssaq.or(t);
+	};
+	return ssaq;
+    };
+
+    public SpanAlterQueryWrapper or (String ... terms) {
+	SpanAlterQueryWrapper ssaq = new SpanAlterQueryWrapper(this.field);
+	for (String t : terms) {
+	    ssaq.or(t);
+	};
+	return ssaq;
+    };
+
+
+    // SpanSegmentSequenceQueries
+    /**
+     * Create a sequence of segments query object.
+     */
+    public SpanSequenceQueryWrapper seq () {
+	return new SpanSequenceQueryWrapper(this.field);
+    };
+
+
+    /**
+     * Create a sequence of segments query object.
+     * @param terms[] An array of segment defining terms.
+     */
+    public SpanSequenceQueryWrapper seq (SpanQueryWrapperInterface ... terms) {
+	SpanSequenceQueryWrapper sssq = new SpanSequenceQueryWrapper(this.field);
+	for (SpanQueryWrapperInterface t : terms) {
+	    sssq.append(t);
+	};
+	return sssq;
+    };
+
+
+    /**
+     * Create a sequence of segments query object.
+     * @param re A SpanSegmentRegexQuery, starting the sequence.
+     */
+    public SpanSequenceQueryWrapper seq (SpanRegexQueryWrapper re) {
+	return new SpanSequenceQueryWrapper(this.field, re);
+    };
+
+
+    public SpanSequenceQueryWrapper seq (Object ... terms) {
+	SpanSequenceQueryWrapper ssq = new SpanSequenceQueryWrapper(this.field);
+	for (Object t : terms) {
+	    if (t instanceof SpanQueryWrapperInterface) {
+		ssq.append((SpanQueryWrapperInterface) t);
+	    }
+	    else if (t instanceof SpanRegexQueryWrapper) {
+		ssq.append((SpanRegexQueryWrapper) t);
+	    }
+	    else {
+		log.error("{} is not an acceptable parameter for seq()", t.getClass());
+		return ssq;
+	    };
+	};
+	return ssq;
+    };
+
+    public SpanElementQueryWrapper tag (String element) {
+	return new SpanElementQueryWrapper(this.field, element);
+    };
+
+    /**
+     * Create a wrapping within query object.
+     * @param element A SpanQuery.
+     * @param embedded A SpanQuery that is wrapped in the element.
+     */
+    public SpanWithinQueryWrapper within (SpanQueryWrapperInterface element,
+					  SpanQueryWrapperInterface embedded) {
+	return new SpanWithinQueryWrapper(element, embedded);
+    };
+
+
+
+    // Class
+    public SpanClassQueryWrapper _ (byte number, SpanQueryWrapperInterface element) {
+	return new SpanClassQueryWrapper(element, number);
+    };
+
+    public SpanClassQueryWrapper _ (int number, SpanQueryWrapperInterface element) {
+	return new SpanClassQueryWrapper(element, number);
+    };
+
+    public SpanClassQueryWrapper _ (short number, SpanQueryWrapperInterface element) {
+	return new SpanClassQueryWrapper(element, number);
+    };
+
+    public SpanClassQueryWrapper _ (SpanQueryWrapperInterface element) {
+	return new SpanClassQueryWrapper(element);
+    };
+
+    // MatchModify
+    public SpanMatchModifyQueryWrapper shrink (byte number, SpanQueryWrapperInterface element) {
+	return new SpanMatchModifyQueryWrapper(element, number);
+    };
+
+    public SpanMatchModifyQueryWrapper shrink (int number, SpanQueryWrapperInterface element) {
+	return new SpanMatchModifyQueryWrapper(element, number);
+    };
+
+    public SpanMatchModifyQueryWrapper shrink (short number, SpanQueryWrapperInterface element) {
+	return new SpanMatchModifyQueryWrapper(element, number);
+    };
+
+    public SpanMatchModifyQueryWrapper shrink (SpanQueryWrapperInterface element) {
+	return new SpanMatchModifyQueryWrapper(element);
+    };
+
+    // split
+
+};
diff --git a/trunk/src/main/java/de/ids_mannheim/korap/KorapResult.java b/trunk/src/main/java/de/ids_mannheim/korap/KorapResult.java
new file mode 100644
index 0000000..501092d
--- /dev/null
+++ b/trunk/src/main/java/de/ids_mannheim/korap/KorapResult.java
@@ -0,0 +1,159 @@
+package de.ids_mannheim.korap;
+
+import java.util.*;
+import de.ids_mannheim.korap.KorapMatch;
+
+import org.slf4j.Logger;
+import org.slf4j.LoggerFactory;
+
+import com.fasterxml.jackson.databind.ObjectMapper;
+import com.fasterxml.jackson.databind.SerializationFeature;
+import com.fasterxml.jackson.databind.JsonNode;
+import com.fasterxml.jackson.databind.node.*;
+import com.fasterxml.jackson.annotation.*;
+
+public class KorapResult {
+    ObjectMapper mapper = new ObjectMapper();
+
+    public static final short ITEMS_PER_PAGE = 25;
+    private String query;
+
+    private List<KorapMatch> matches;
+
+    private int totalResults = 0;
+    private int startIndex = 0;
+
+    private short itemsPerPage = ITEMS_PER_PAGE;
+    private short leftContextOffset = 6, rightContextOffset = 6;
+    private boolean leftTokenContext, rightTokenContext;
+
+    private String benchmarkSearchResults = "", benchmarkHitCounter = "0";
+    private String error = null;
+
+    // Logger
+    private final static Logger log = LoggerFactory.getLogger(KorapMatch.class);
+
+    public KorapResult (String query,
+			int startIndex,
+			short itemsPerPage,
+			boolean leftTokenContext,
+			short leftContextOffset,
+			boolean rightTokenContext,
+			short rightContextOffset) {
+
+	mapper.enable(SerializationFeature.INDENT_OUTPUT);
+	// mapper.disable(SerializationFeature.FAIL_ON_EMPTY_BEANS);
+	mapper.disable(SerializationFeature.WRITE_NULL_MAP_VALUES);
+
+	this.matches = new ArrayList<>();
+	this.query = query;
+	this.startIndex = startIndex;
+	this.itemsPerPage = (itemsPerPage > 50 || itemsPerPage < 1) ? ITEMS_PER_PAGE : itemsPerPage;
+	this.leftContextOffset = leftContextOffset;
+	this.rightContextOffset = rightContextOffset;
+
+	this.leftTokenContext = leftTokenContext;
+	this.rightTokenContext = rightTokenContext;
+    };
+
+    public void add (KorapMatch km) {
+	this.matches.add(km);
+    };
+
+    public void setTotalResults (int i) {
+	this.totalResults = i;
+    };
+
+    public int getTotalResults () {
+	return this.totalResults;
+    };
+
+    @Deprecated
+    public int totalResults () {
+	return this.totalResults;
+    };
+
+    public short getItemsPerPage () {
+	return this.itemsPerPage;
+    };
+
+    @Deprecated
+    public short itemsPerPage () {
+	return this.itemsPerPage;
+    };
+
+    public String getError () {
+	return this.error;
+    };
+
+    public void setError (String msg) {
+	this.error = msg;
+    };
+
+    public void setBenchmarkSearchResults (long t1, long t2) {
+	this.benchmarkSearchResults = (t2 - t1) * 1e-6 + " ms";
+    };
+
+    public String getBenchmarkSearchResults () {
+	return this.benchmarkSearchResults;
+    };
+
+    public void setBenchmarkHitCounter (long t1, long t2) {
+	this.benchmarkHitCounter = (t2 - t1) * 1e-6 + " ms";
+    };
+
+    public String getBenchmarkHitCounter () {
+	return this.benchmarkHitCounter;
+    };
+
+    public String getQuery () {
+	return this.query;
+    };
+
+    public KorapMatch getMatch (int index) {
+	return this.matches.get(index);
+    };
+
+    public List<KorapMatch> getMatches () {
+	return this.matches;
+    };
+
+    @Deprecated
+    public KorapMatch match (int index) {
+	return this.matches.get(index);
+    };
+
+    public int getStartIndex () {
+	return startIndex;
+    };
+
+    public String toJSON () {
+	
+	//	ObjectNode json = (ObjectNode) mapper.createObjectNode();
+	// ObjectNode json = (ObjectNode) mapper.treeAsTokens(this);
+
+	ObjectNode json =  (ObjectNode) mapper.valueToTree(this);
+
+	ArrayNode leftContext = mapper.createArrayNode();
+	leftContext.add(this.leftTokenContext ? "token" : "char");
+	leftContext.add(this.leftContextOffset);
+
+	ArrayNode rightContext = mapper.createArrayNode();
+	rightContext.add(this.rightTokenContext ? "token" : "char");
+	rightContext.add(this.rightContextOffset);
+
+	ObjectNode context = mapper.createObjectNode();
+	context.put("left", leftContext);
+	context.put("right", rightContext);
+	json.put("context", context);
+
+	try {
+	    return mapper.writeValueAsString(json); // mapper.writeValueAsString(treeMapper);
+	}
+	catch (Exception e) {
+	    log.warn(e.getLocalizedMessage());
+	};
+
+	return "{}";
+    };
+};
diff --git a/trunk/src/main/java/de/ids_mannheim/korap/analysis/MultiTerm.java b/trunk/src/main/java/de/ids_mannheim/korap/analysis/MultiTerm.java
new file mode 100644
index 0000000..9c9e306
--- /dev/null
+++ b/trunk/src/main/java/de/ids_mannheim/korap/analysis/MultiTerm.java
@@ -0,0 +1,290 @@
+package de.ids_mannheim.korap.analysis;
+
+import static de.ids_mannheim.korap.util.KorapArray.*;
+import org.apache.lucene.util.BytesRef;
+import java.nio.ByteBuffer;
+import java.util.*;
+
+
+/**
+ * @author Nils Diewald
+ * @version 0.2
+ *
+ * MultiTerm represents a term in a MultiTermToken.
+ */
+public class MultiTerm {
+    public int start, end = 0;
+    public String term = null;
+    public Integer posIncr = 1;
+    public boolean storeOffsets = false;
+    public BytesRef payload = null;
+
+    /**
+     * The constructor.
+     *
+     * @param term The term surface.
+              Offsets can be written as an appended and dash separated pair of integers,
+	      payloads can be written following a dollar sign.
+	      payloads can be typed as being a short (s), an integer (i), or a long (l)
+	      in leading angular brackets. All other payloads are treated as being UTF-8
+	      characer sequences.
+	      
+	      Examples:
+	      MultiTerm test = new MultiTerm("test");
+	      MultiTerm test = new MultiTerm("test#0-4");
+	      MultiTerm test = new MultiTerm("test#0-4$Example");
+	      MultiTerm test = new MultiTerm("test#0-4$&lt;i&gt;1278");
+     */
+    public MultiTerm (String term) {
+	/*
+	this.start = this.end = 0;
+	this.storeOffsets = false;
+	this.payload = null;
+	*/
+	_fromString(term);
+    };
+
+    /**
+     * The constructor with a separated prefix.
+     * new MultiTerm('a', "bcd") is equivalent to
+     * new MultiTerm("a:bcd");
+     *
+     * @param prefix A special prefix for the term.
+     * @param term The term surface.
+     *
+     * @see #MultiTerm(String)
+     */
+    public MultiTerm (char prefix, String term) {
+	StringBuilder sb = new StringBuilder();
+	/*
+	this.start = this.end = 0;
+	this.storeOffsets = false;
+	this.payload = null;
+	*/
+	sb.append(prefix).append(':').append(term);
+	_fromString(sb.toString());
+    };
+
+    public void term (String term) {
+	this.term = term;
+    };
+
+    public String term () {
+	return this.term;
+    };
+
+    /**
+     * The constructor.
+     */
+    public MultiTerm () {
+	this.term = "";
+	/*
+	this.start = this.end = 0;
+	this.storeOffsets = false;
+	this.payload = null;
+	*/
+    };
+
+    public void payload (Byte pl) {
+	this.payload = new BytesRef( ByteBuffer.allocate(1).put(pl).array());
+    };
+
+    public void payload (short pl) {
+	this.payload = new BytesRef( ByteBuffer.allocate(2).putShort(pl).array());
+    };
+
+    public void payload (int pl) {
+	this.payload = new BytesRef( ByteBuffer.allocate(4).putInt(pl).array());
+    };
+
+    public void payload (long pl) {
+	this.payload = new BytesRef( ByteBuffer.allocate(8).putLong(pl).array());
+    };
+
+    public void payload (String pl) {
+	this.payload = new BytesRef(pl);
+    };
+
+    public void payload (byte[] pl) {
+	this.payload = new BytesRef(pl);
+    };
+
+    public void payload (BytesRef pl) {
+	this.payload = pl;
+    };
+
+    public BytesRef payload () {
+	return this.payload;
+    };
+
+    public void start (int value) {
+	this.start = value;
+    };
+
+    public int start () {
+	return this.start;
+    };
+
+    public void end (int value) {
+	this.end = value;
+    };
+
+    public int end () {
+	return this.end;
+    };
+
+    public boolean storeOffsets () {
+	return this.storeOffsets;
+    };
+
+    public void storeOffsets (boolean value) {
+	this.storeOffsets = value;
+    };
+
+    private void _fromString (String term) {
+	String[] termSurface = term.split("\\$", 2);
+
+	// Payload is given
+	if (termSurface.length == 2) {
+	    String payloadStr = termSurface[1];
+
+	    // Payload has a type
+	    if (payloadStr.charAt(0) == '<' && payloadStr.charAt(2) == '>') {
+		ByteBuffer bb = ByteBuffer.allocate(8);
+
+		String[] pls = payloadStr.split("(?=<)|(?<=>)");
+		int l = 0;
+
+		for (int i = 1; i < pls.length;) {
+
+		    // Resize the buffer
+		    if ((bb.capacity() - l) < 8) {
+			bb = ByteBuffer.allocate(bb.capacity() + 8).put(bb.array());
+			bb.position(l);
+		    };
+		    switch (pls[i]) {
+		    case "<b>": // byte
+			bb.put(Byte.parseByte(pls[i+1]));
+			l++;
+			break;
+		    case "<s>":
+			bb.putShort(Short.parseShort(pls[i+1]));
+			l+=2;
+			break;
+		    case "<i>":
+			bb.putInt(Integer.parseInt(pls[i+1]));
+			l+=4;
+			break;
+		    case "<l>":
+			bb.putLong(Long.parseLong(pls[i+1]));
+			l+=8;
+			break;
+		    };
+		    i+=2;
+		};
+		byte[] bytes = new byte[l];
+		System.arraycopy(bb.array(), 0, bytes, 0, l);
+		this.payload = new BytesRef(bytes);
+
+
+		/*
+		payloadStr = payloadStr.substring(3, payloadStr.length());
+		switch (type) {
+		case 'b':  // byte
+
+		    System.err.println("bbb");
+		    payloadBytes = ByteBuffer.allocate(1).put(new Byte(payloadStr)).array();
+		    break;
+		case 's':  // short
+		    payloadBytes = ByteBuffer.allocate(2).putShort(
+								   Short.parseShort(payloadStr)
+								   ).array();
+		    break;
+		case 'i': // integer
+		    payloadBytes = ByteBuffer.allocate(4).putInt(
+								 Integer.parseInt(payloadStr)
+								 ).array();
+		    break;
+		case 'l': // long
+		    payloadBytes = ByteBuffer.allocate(8).putLong(
+								  Long.parseLong(payloadStr)
+								  ).array();
+		    break;
+		};
+		TODO:
+		case '?': // arbitrary
+		    payloadStr = 
+		*/
+	    }
+
+	    // Payload is a string
+	    else {
+		this.payload = new BytesRef(payloadStr);
+	    };
+	};
+	String[] stringOffset = termSurface[0].split("\\#", 2);
+	if (stringOffset.length == 2) {
+	    String[] offset = stringOffset[1].split("\\-", 2);
+
+	    if (offset.length == 2 && offset[0].length() > 0) {
+		this.start = Integer.parseInt(offset[0]);
+		this.end   = Integer.parseInt(offset[1]);
+	    /*
+	    }
+	    else {
+		this.storeOffsets(false);
+	    */
+	    };
+	};
+	this.term = stringOffset[0];
+    };
+
+
+    /**
+     * Represent the MultiTerm as a string.
+     * Offsets are attached following a hash sign,
+     * payloads are attached following a dollar sign.
+     * All payloads are written as UTF-8 character sequences.
+     *
+     * @see #toStringShort().
+     */
+    public String toString () {
+	StringBuilder sb = new StringBuilder(this.term);
+	if (this.start != this.end) {
+	    sb.append('#').append(this.start).append('-').append(this.end);
+	/*
+	}
+	else if (!this.storeOffsets()) {
+	    sb.append("#-");
+	*/
+	};
+
+	if (this.payload != null) {
+	    sb.append('$');
+	    try {
+		sb.append(this.payload.utf8ToString());
+	    }
+	    catch (AssertionError e) {
+		sb.append("<?>").append(join(',', this.payload.toString().split(" ")));
+	    };
+	};
+
+	return sb.toString();
+    };
+
+    /**
+     * Represent the MultiTerm as a string.
+     * Payloads are attached following a dollar sign.
+     * All payloads are written as UTF-8 character sequences.
+     * Offsets are neglected.
+     * 
+     * @see #toString().
+     */
+    public String toStringShort () {
+	StringBuilder sb = new StringBuilder(this.term);
+	if (this.payload != null) {
+	    sb.append('$').append(this.payload.utf8ToString());
+	};
+	return sb.toString();
+    };
+};
diff --git a/trunk/src/main/java/de/ids_mannheim/korap/analysis/MultiTermToken.java b/trunk/src/main/java/de/ids_mannheim/korap/analysis/MultiTermToken.java
new file mode 100644
index 0000000..ff70996
--- /dev/null
+++ b/trunk/src/main/java/de/ids_mannheim/korap/analysis/MultiTermToken.java
@@ -0,0 +1,122 @@
+package de.ids_mannheim.korap.analysis;
+
+import de.ids_mannheim.korap.analysis.MultiTerm;
+import java.util.*;
+
+/*
+  Todo:
+  - Always write offsets to payloads!
+  - Offsets can be overwritten!
+  - Check that terms are not ""!!!
+*/
+
+/**
+ * @author Nils Diewald
+ *
+ * MultiTermToken represents a segment in a MultiTermTokenStream.
+ */
+public class MultiTermToken {
+    public int start, end = 0;
+    public List<MultiTerm> terms;
+
+    public MultiTermToken (MultiTerm term, MultiTerm ... moreTerms) {
+	this.terms = new ArrayList<MultiTerm>();
+
+	if (term.start != term.end) {
+	    this.start = term.start;
+	    this.end = term.end;
+	};
+
+	term.posIncr = 1;
+	terms.add( term );
+
+	// Further elements on same position
+	for (int i = 0; i < moreTerms.length; i++) {
+	    term = moreTerms[i];
+	    term.posIncr = 0;
+	    terms.add(term);
+	};
+    };
+
+    public MultiTermToken (char prefix, String surface) {
+	this.terms = new ArrayList<MultiTerm>();
+
+	MultiTerm term = new MultiTerm(prefix, surface);
+
+	if (term.start != term.end) {
+	    this.start = term.start;
+	    this.end = term.end;
+	};
+
+	// First word element
+	term.posIncr = 1;
+	terms.add( term );
+    };
+
+
+    public MultiTermToken (String surface, String ... moreTerms) {
+	this.terms = new ArrayList<MultiTerm>();
+
+	MultiTerm term = new MultiTerm(surface);
+
+	if (term.start != term.end) {
+	    this.start = term.start;
+	    this.end = term.end;
+	};
+
+	// First word element
+	term.posIncr = 1;
+	terms.add( term );
+
+
+	// Further elements on same position
+	for (int i = 0; i < moreTerms.length; i++) {
+
+	    term = new MultiTerm( moreTerms[i] );
+	    term.posIncr = 0;
+	    terms.add(term);
+	};
+    };
+
+    public void add (MultiTerm mt) {
+	terms.add(mt);
+    };
+
+    public void add (String term) {
+	MultiTerm mt = new MultiTerm(term);
+	mt.posIncr = 0;
+	terms.add(mt);
+    };
+
+    public void add (char prefix, String term) {
+	MultiTerm mt = new MultiTerm(prefix, term);
+	mt.posIncr = 0;
+	terms.add(mt);
+    };
+
+    public void offset (int start, int end) {
+	this.start = start;
+	this.end   = end;
+    };
+
+    public String toString () {
+	StringBuffer sb = new StringBuffer();
+
+	sb.append('[');
+	if (this.start != this.end) {
+	    sb.append('(').append(this.start).append('-').append(this.end).append(')');
+	};
+
+	int i = 0;
+	for (; i < this.terms.size() - 1; i++) {
+	    sb.append(this.terms.get(i).toStringShort()).append('|');
+	};
+	sb.append(this.terms.get(i).toStringShort()).append(']');
+
+	return sb.toString();
+    };
+
+    public int size () {
+	return this.terms.size();
+    };
+};
diff --git a/trunk/src/main/java/de/ids_mannheim/korap/analysis/MultiTermTokenStream.java b/trunk/src/main/java/de/ids_mannheim/korap/analysis/MultiTermTokenStream.java
new file mode 100644
index 0000000..f0a155a
--- /dev/null
+++ b/trunk/src/main/java/de/ids_mannheim/korap/analysis/MultiTermTokenStream.java
@@ -0,0 +1,226 @@
+package de.ids_mannheim.korap.analysis;
+
+import de.ids_mannheim.korap.analysis.MultiTerm;
+import de.ids_mannheim.korap.analysis.MultiTermToken;
+import static de.ids_mannheim.korap.util.KorapByte.*;
+import org.apache.lucene.util.BytesRef;
+
+import java.util.*;
+import java.util.regex.*;
+
+import org.apache.lucene.analysis.TokenStream;
+import org.apache.lucene.analysis.tokenattributes.CharTermAttribute;
+// import org.apache.lucene.analysis.tokenattributes.OffsetAttribute;
+import org.apache.lucene.analysis.tokenattributes.PayloadAttribute;
+import org.apache.lucene.analysis.tokenattributes.PositionIncrementAttribute;
+
+import org.slf4j.Logger;
+import org.slf4j.LoggerFactory;
+
+import java.io.IOException;
+
+/*
+  Todo:
+  - Do not use offsetAttr!
+#  - Payload is [4ByteStartOffset][14BitEndOffset-startOffset][1BitBooleanIfSpan][1BitBooleanIfOpen]
+  - Payload is [4ByteOffsetStart][4ByteOffsetStart]
+*/
+
+/**
+ * @author Nils Diewald
+ *
+ * MultiTermTokenStream extends Lucenes TokenStream class to work with MultiTermTokens.
+ *
+ * @see org.apache.lucene.analysis.TokenStream
+ */
+public class MultiTermTokenStream extends TokenStream {
+    private CharTermAttribute charTermAttr;
+    //     private OffsetAttribute offsetAttr;
+    private PositionIncrementAttribute posIncrAttr;
+    private PayloadAttribute payloadAttr;
+
+    private static Pattern pattern = Pattern.compile("\\[(\\(([0-9]+)-([0-9]+)\\))?([^\\]]+?)\\]");
+
+    private List<MultiTermToken> multiTermTokens;
+    private int mttIndex = 0;
+    private int mtIndex  = 0;
+    //    private TokenTextGenerator ttGen = new TokenTextGenerator();
+
+    private final Logger log = LoggerFactory.getLogger(MultiTermTokenStream.class);
+
+    public MultiTermTokenStream () {
+	//	this.offsetAttr   = this.addAttribute(OffsetAttribute.class);
+        this.charTermAttr = this.addAttribute(CharTermAttribute.class);
+        this.posIncrAttr  = this.addAttribute(PositionIncrementAttribute.class);
+	this.payloadAttr = this.addAttribute(PayloadAttribute.class);
+	this.multiTermTokens  = new ArrayList<MultiTermToken>();
+
+	/*
+        if (!indexTokens.isEmpty()){
+            indexTokens.get(indexTokens.size() - 1).setIncrement(false);
+        };
+	*/
+    };
+
+    public MultiTermTokenStream (String stream) {
+	this();
+
+	int pos = 0;
+
+	Matcher matcher = pattern.matcher(stream);
+
+	while (matcher.find()) {
+
+	    String[] seg = matcher.group(4).split("\\|");
+	    MultiTermToken mtt = new MultiTermToken( seg[0] );
+
+	    if (matcher.group(2) != null)
+		mtt.start = Integer.parseInt(matcher.group(2));
+
+	    if (matcher.group(3) != null)
+		mtt.end = Integer.parseInt(matcher.group(3));
+
+	    for (int i = 1; i < seg.length; i++)
+		mtt.add(seg[i]);
+
+	    this.addMultiTermToken(mtt);
+	};
+    };
+
+    public void addMultiTermToken (MultiTermToken mtt) {
+	this.multiTermTokens.add(mtt);
+    };
+
+    public void addMultiTermToken (MultiTerm term, MultiTerm ... moreTerms) {
+	this.addMultiTermToken(new MultiTermToken(term, moreTerms));
+    };
+
+    public void addMultiTermToken (char prefix, String surface) {
+	this.addMultiTermToken(new MultiTermToken(prefix, surface));
+    };
+
+    public void addMultiTermToken (String surface, String ... moreTerms) {
+	this.addMultiTermToken(new MultiTermToken(surface, moreTerms));
+    };
+
+    public void addMeta (String key, String value) {
+	MultiTerm mt = new MultiTerm('-', key);
+	//	mt.storeOffsets(false);
+	mt.payload(value);
+	this.multiTermTokens.get(0).add(mt);
+    };
+
+    public void addMeta (String key, byte[] value) {
+	MultiTerm mt = new MultiTerm('-', key);
+	//	mt.storeOffsets(false);
+	mt.payload(value);
+	this.multiTermTokens.get(0).add(mt);
+    };
+
+
+    public void addMeta (String key, short value) {
+	MultiTerm mt = new MultiTerm('-', key);
+	//	mt.storeOffsets(false);
+	mt.payload(value);
+	this.multiTermTokens.get(0).add(mt);
+    };
+
+    public void addMeta (String key, long value) {
+	MultiTerm mt = new MultiTerm('-', key);
+	//	mt.storeOffsets(false);
+	mt.payload(value);
+	this.multiTermTokens.get(0).add(mt);
+    };
+
+    public void addMeta (String key, int value) {
+	MultiTerm mt = new MultiTerm('-', key);
+	//	mt.storeOffsets(false);
+	mt.payload(value);
+	this.multiTermTokens.get(0).add(mt);
+    };
+
+    @Override
+    public final boolean incrementToken() throws IOException {
+	this.payloadAttr.setPayload(null);
+
+	if (this.multiTermTokens.size() == this.mttIndex) {
+	    reset();
+	    return false;
+	};
+
+	MultiTermToken mtt = this.multiTermTokens.get( this.mttIndex );
+
+	if (mtt.terms.size() == this.mtIndex) {
+	    this.mtIndex = 0;
+	    this.mttIndex++;
+	    if (this.multiTermTokens.size() == this.mttIndex) {
+		reset();
+		return false;
+	    }
+	    else {
+		mtt = this.multiTermTokens.get( this.mttIndex );
+	    };
+	};
+
+	MultiTerm mt = mtt.terms.get(this.mtIndex);
+
+	// Get the current index token
+
+	// Set the relative position to the former term
+        posIncrAttr.setPositionIncrement( mt.posIncr );
+        charTermAttr.setEmpty();
+	charTermAttr.append( mt.term );
+
+	BytesRef payload = new BytesRef();
+	if (mt.start != mt.end) {
+	    log.trace("MultiTerm with payload offset: {}-{}", mt.start, mt.end);
+	    payload.append(new BytesRef(int2byte(mt.start)));
+	    payload.append(new BytesRef(int2byte(mt.end)));
+	    /*
+	      }
+	      else if (mtt.start != mtt.end) {
+	      payload.append(new BytesRef(int2byte(mtt.start)));
+	      payload.append(new BytesRef(int2byte(mtt.end)));
+	    */
+	};
+
+	// Payload
+	if (mt.payload != null) {
+	    payload.append(mt.payload());
+	    log.trace("Create payload[1] {}", payload.toString());
+	};
+
+	if (payload.length > 0) {
+	    log.trace("Set payload[2] {}", payload.toString());
+	    payloadAttr.setPayload(payload);
+	};
+
+	if (log.isTraceEnabled()) {
+	    StringBuilder sb = new StringBuilder("Index: [");
+	    sb.append(mt.term);
+	    if (payload.length > 0)
+		sb.append('$').append(payload.toString());
+	    sb.append(']');
+	    sb.append(" with increment ").append(mt.posIncr);
+	    log.trace(sb.toString());
+	};
+
+	this.mtIndex++;
+
+        return true;
+    };
+
+    public String toString () {
+	StringBuffer sb = new StringBuffer();
+	for (MultiTermToken mtt : this.multiTermTokens) {
+	    sb.append( mtt.toString() );
+	};
+	return sb.toString();
+    };
+
+    @Override
+    public void reset() {
+	this.mttIndex = 0;
+	this.mtIndex = 0;
+    };
+};
diff --git a/trunk/src/main/java/de/ids_mannheim/korap/document/KorapPrimaryData.java b/trunk/src/main/java/de/ids_mannheim/korap/document/KorapPrimaryData.java
new file mode 100644
index 0000000..1ee7022
--- /dev/null
+++ b/trunk/src/main/java/de/ids_mannheim/korap/document/KorapPrimaryData.java
@@ -0,0 +1,25 @@
+package de.ids_mannheim.korap.document;
+
+public class KorapPrimaryData {
+    private String primary;
+
+    public KorapPrimaryData (String text) {
+	this.primary = text;
+    };
+
+    public String substring (int startOffset) {
+	return this.primary.substring(startOffset);
+    };
+
+    public String substring (int startOffset, int endOffset) {
+	return this.primary.substring(startOffset, endOffset);
+    };
+
+    public String toString () {
+	return this.primary;
+    };
+
+    public int length () {
+	return this.primary.length();
+    };
+};
diff --git a/trunk/src/main/java/de/ids_mannheim/korap/filter/BooleanFilter.java b/trunk/src/main/java/de/ids_mannheim/korap/filter/BooleanFilter.java
new file mode 100644
index 0000000..53ffd93
--- /dev/null
+++ b/trunk/src/main/java/de/ids_mannheim/korap/filter/BooleanFilter.java
@@ -0,0 +1,73 @@
+package de.ids_mannheim.korap.filter;
+
+import java.util.*;
+
+import org.apache.lucene.search.BooleanClause;
+import org.apache.lucene.search.BooleanQuery;
+import org.apache.lucene.search.Query;
+import org.apache.lucene.search.TermQuery;
+import org.apache.lucene.search.RegexpQuery;
+import org.apache.lucene.index.Term;
+
+/*
+  Todo: !not
+*/
+
+/**
+ * @author Nil Diewald
+ *
+ * BooleanFilter implements a simple API for boolean operations
+ * on constraints for KorapFilter.
+ */
+public class BooleanFilter {
+    private String type;
+    private Query query;
+
+    public BooleanFilter (String type, Query query) {
+	this.type = type;
+	this.query = query;
+    };
+
+    public BooleanFilter or (String ... values) {
+	BooleanQuery bool = new BooleanQuery();
+	bool.add(this.query, BooleanClause.Occur.SHOULD);
+	for (String val : values) {
+	    bool.add(new TermQuery(new Term(this.type, val)), BooleanClause.Occur.SHOULD);
+	};
+	this.query = bool;
+	return this;
+    };
+
+    public BooleanFilter or (RegexFilter value) {
+	BooleanQuery bool = new BooleanQuery();
+	bool.add(this.query, BooleanClause.Occur.SHOULD);
+	bool.add(value.toQuery(this.type), BooleanClause.Occur.SHOULD);
+	this.query = bool;
+	return this;
+    };
+
+    
+    public BooleanFilter and (String value) {
+	BooleanQuery bool = new BooleanQuery();
+	bool.add(this.query, BooleanClause.Occur.MUST);
+	bool.add(new TermQuery(new Term(this.type, value)), BooleanClause.Occur.MUST);
+	this.query = bool;
+	return this;
+    };
+
+    public BooleanFilter and (RegexFilter value) {
+	BooleanQuery bool = new BooleanQuery();
+	bool.add(this.query, BooleanClause.Occur.MUST);
+	bool.add(value.toQuery(this.type), BooleanClause.Occur.MUST);
+	this.query = bool;
+	return this;
+    };
+    
+    public Query toQuery () {
+	return this.query;
+    };
+
+    public String toString () {
+	return this.query.toString();
+    };
+};
diff --git a/trunk/src/main/java/de/ids_mannheim/korap/filter/RegexFilter.java b/trunk/src/main/java/de/ids_mannheim/korap/filter/RegexFilter.java
new file mode 100644
index 0000000..32aca72
--- /dev/null
+++ b/trunk/src/main/java/de/ids_mannheim/korap/filter/RegexFilter.java
@@ -0,0 +1,27 @@
+package de.ids_mannheim.korap.filter;
+
+import java.util.*;
+
+import org.apache.lucene.search.RegexpQuery;
+import org.apache.lucene.index.Term;
+
+/**
+ * @author Nils Diewald
+ *
+ * RegexFilter implements a helper object for regular expressions used in KorapFilter
+ * constraints.
+ */
+
+public class RegexFilter {
+    String regex;
+
+    public RegexFilter (String regex) {
+	this.regex = regex;
+    };
+
+    public RegexpQuery toQuery (String field) {
+	return new RegexpQuery(
+            new Term(field, this.regex)
+	);
+    };
+};
diff --git a/trunk/src/main/java/de/ids_mannheim/korap/index/FieldDocument.java b/trunk/src/main/java/de/ids_mannheim/korap/index/FieldDocument.java
new file mode 100644
index 0000000..4539b9e
--- /dev/null
+++ b/trunk/src/main/java/de/ids_mannheim/korap/index/FieldDocument.java
@@ -0,0 +1,212 @@
+package de.ids_mannheim.korap.index;
+
+import org.apache.lucene.document.Document;
+import de.ids_mannheim.korap.analysis.MultiTermTokenStream;
+import de.ids_mannheim.korap.analysis.MultiTermToken;
+import de.ids_mannheim.korap.KorapDocument;
+import de.ids_mannheim.korap.util.KorapDate;
+
+import com.fasterxml.jackson.annotation.*;
+import com.fasterxml.jackson.databind.ObjectMapper;
+
+import org.apache.lucene.document.TextField;
+import org.apache.lucene.document.StringField;
+import org.apache.lucene.document.IntField;
+import org.apache.lucene.document.Field;
+import org.apache.lucene.document.FieldType;
+
+import java.util.*;
+
+import org.slf4j.Logger;
+import org.slf4j.LoggerFactory;
+
+/*
+Todo: Store primary data at base/cons field.
+All other Termvectors should have no stored field!
+*/
+
+/**
+ * @author Nils Diewald
+ *
+ * FieldDocument implements a simple API to create documents for storing with KorapIndex.
+ */
+@JsonIgnoreProperties(ignoreUnknown = true)
+public class FieldDocument extends KorapDocument {
+    ObjectMapper mapper = new ObjectMapper();
+
+    private final static Logger log = LoggerFactory.getLogger(FieldDocument.class);
+
+    public Document doc = new Document();
+
+    private FieldType tvField = new FieldType(TextField.TYPE_STORED);
+    private FieldType tvNoField = new FieldType(TextField.TYPE_NOT_STORED);
+
+    //    private HashMap<String, MultiTermTokenStream> termFields;
+
+    {
+	tvField.setStoreTermVectors(true);
+	tvField.setStoreTermVectorPositions(true);
+	tvField.setStoreTermVectorPayloads(true);
+
+	tvNoField.setStoreTermVectors(true);
+	tvNoField.setStoreTermVectorPositions(true);
+	tvNoField.setStoreTermVectorPayloads(true);
+	//	termFields = new HashMap<String, MultiTermTokenStream>();
+    }
+
+    // see http://www.cowtowncoder.com/blog/archives/2011/07/entry_457.html
+
+    /*
+    @JsonCreator
+    public FieldDocument(Map<String,Object> props) {
+      this.id = (String) props.get("id");
+      this.title = (String) props.get("title");
+    };
+
+    public FieldDocument (String json) {
+
+	
+	my $primary = ->{primary}
+	corpus_id, pub_date, id, text_class (Array), author (Array), title, sub_title, pub_place
+
+	foreach (->{fields}) {
+	    foreach (data) {
+		foreach () {
+		}
+	    }
+	};
+created timestamp
+last_modified timestamp or KorapDate
+	
+    };
+*/
+
+    public void addInt (String key, int value) {
+	doc.add(new IntField(key, value, Field.Store.YES));
+    };
+
+    public void addInt (String key, String value) {
+	this.addInt(key, Integer.parseInt(value));
+    };
+
+    public void addText (String key, String value) {
+	doc.add(new TextField(key, value, Field.Store.YES));
+    };
+
+    public void addString (String key, String value) {
+	doc.add(new StringField(key, value, Field.Store.YES));
+    };
+
+    public void addTV (String key, String value, String tsString) {
+	this.addTV(key, value, new MultiTermTokenStream(tsString));
+    };
+
+    public void addTV (String key, String tsString) {
+	this.addTV(key, new MultiTermTokenStream(tsString));
+    };
+
+    public void addTV (String key, String value, MultiTermTokenStream ts) {
+	Field textField = new Field( key, value, tvField );
+	textField.setTokenStream( ts );
+	doc.add(textField);
+    };
+
+    public void addTV (String key, MultiTermTokenStream ts) {
+	Field textField = new Field( key, ts, tvNoField );
+	doc.add(textField);
+    };
+
+    public String toString () {
+	return doc.toString();
+    };
+
+    public MultiTermTokenStream newMultiTermTokenStream (String ts) {
+	return new MultiTermTokenStream(ts);
+    };
+
+    public MultiTermTokenStream newMultiTermTokenStream () {
+	return new MultiTermTokenStream();
+    };
+
+    public void setFields (ArrayList<Map<String,Object>> fields) {
+
+	Map<String,Object> primary = fields.remove(0);
+	this.setPrimaryData((String) primary.get("primaryData"));
+
+	for (Map<String,Object> field : fields) {
+	    String fieldName = (String) field.get("name");
+	    MultiTermTokenStream mtts = this.newMultiTermTokenStream();
+
+	    for (ArrayList<String> token : (ArrayList<ArrayList<String>>) field.get("data")) {
+
+		MultiTermToken mtt = new MultiTermToken(token.remove(0));
+
+		for (String term : token) {
+		    mtt.add(term);
+		};
+
+		mtts.addMultiTermToken(mtt);
+	    };
+
+	    this.addTV(fieldName, this.getPrimaryData(), mtts);
+	};
+    };
+
+    @Override
+    public void setTextClass (String textClass) {
+	super.setTextClass(textClass);
+	this.addText("textClass", textClass);
+    };
+
+    @Override
+    public void setTitle (String title) {
+	super.setTitle(title);
+	this.addText("title", title);
+    };
+
+    @Override
+    public void setSubTitle (String subTitle) {
+	super.setSubTitle(subTitle);
+	this.addText("subTitle", subTitle);
+    };
+
+    @Override
+    public void setAuthor (String author) {
+	super.setAuthor(author);
+	this.addText("author", author);
+    };
+
+    @Override
+    public void setPubPlace (String pubPlace) {
+	super.setPubPlace(pubPlace);
+	this.addString("pubPlace", pubPlace);
+    };
+
+    @JsonProperty("pubDate")
+    @Override
+    public KorapDate setPubDate (String pubDate) {
+	KorapDate date = super.setPubDate(pubDate);
+	this.addInt("pubDate", date.toString());
+	return date;
+    };
+
+    @Override
+    public void setCorpusID (String corpusID) {
+	super.setCorpusID(corpusID);
+	this.addString("corpusID", corpusID);
+    };
+
+    @Override
+    public void setID (String ID) {
+	super.setID(ID);
+	this.addString("ID", ID);
+    };
+
+    public void setFoundries (String foundry) {
+	this.addText("foundries", foundry);
+    };
+
+    public void setTokenization (String tokenization) {
+	this.addString("tokenization", tokenization);
+    };
+};
diff --git a/trunk/src/main/java/de/ids_mannheim/korap/index/PositionsToOffset.java b/trunk/src/main/java/de/ids_mannheim/korap/index/PositionsToOffset.java
new file mode 100644
index 0000000..62eb516
--- /dev/null
+++ b/trunk/src/main/java/de/ids_mannheim/korap/index/PositionsToOffset.java
@@ -0,0 +1,213 @@
+package de.ids_mannheim.korap.index;
+
+import java.util.*;
+import java.io.*;
+
+import java.nio.ByteBuffer;
+
+import org.apache.lucene.index.DocsAndPositionsEnum;
+import org.apache.lucene.index.AtomicReaderContext;
+import org.apache.lucene.index.Terms;
+import org.apache.lucene.index.Term;
+import org.apache.lucene.index.TermsEnum;
+import org.apache.lucene.util.BytesRef;
+
+import org.slf4j.Logger;
+import org.slf4j.LoggerFactory;
+
+
+public class PositionsToOffset {
+    private String field;
+    private AtomicReaderContext atomic;
+    private boolean processed = false;
+    private Integer[] pair;
+    private static ByteBuffer bbOffset = ByteBuffer.allocate(8);
+
+    HashSet<PositionsToOffsetArray> positions;
+    HashMap<PositionsToOffsetArray, Integer[]> offsets;
+
+    private final static Logger log = LoggerFactory.getLogger(PositionsToOffset.class);
+
+    private class PositionsToOffsetArray {
+	public int docID;
+	public int pos;
+   
+	public PositionsToOffsetArray (int docID, int pos) {
+	    this.docID = docID;
+	    this.pos = pos;
+	};
+
+	public int hashCode(){
+	    long hashCode;
+	    hashCode = (docID * Integer.MAX_VALUE) - Integer.MAX_VALUE + pos;
+	    return new Long(hashCode).hashCode();
+	};
+     
+	public boolean equals(Object obj){
+	    if (obj instanceof PositionsToOffsetArray) {
+		PositionsToOffsetArray ptoa = (PositionsToOffsetArray) obj;
+		return (ptoa.docID == this.docID && ptoa.pos == this.pos);
+	    };
+	    return false;
+	};
+    };
+
+    public PositionsToOffset (AtomicReaderContext atomic, String field) {
+	this.field = field;
+	this.atomic = atomic;
+	this.positions = new HashSet<>(64);
+	this.offsets = new HashMap<>(64);
+    };
+
+    public void clear () {
+	this.positions.clear();
+	this.offsets.clear();
+	this.bbOffset.clear();
+	this.processed = false;
+    };
+
+    public void add (int docID, int pos) {
+	this.add(new PositionsToOffsetArray(docID, pos));
+    };
+
+    public void add (PositionsToOffsetArray ptoa) {
+	this.positions.add(ptoa);
+	this.processed = false;
+    };
+
+    public boolean exists (int docID, int pos) {
+	return this.offsets.containsKey(new PositionsToOffsetArray(docID, pos));
+    };
+
+    public boolean exists (PositionsToOffsetArray ptoa) {
+	return this.offsets.containsKey(ptoa);
+    };
+
+    public int start (int docID, int pos) {
+	return this.start(new PositionsToOffsetArray(docID, pos));
+    };
+
+    public int start (PositionsToOffsetArray ptoa) {
+	if (ptoa.pos < 0)
+	    return 0;
+
+	if (!processed)
+	    this.offsets();
+
+	Integer[] pair = this.offsets.get(ptoa);
+
+	if (pair == null)
+	    return 0;
+
+	return pair[0];
+    };
+
+    public int end (int docID, int pos) {
+	return this.end(new PositionsToOffsetArray(docID, pos));
+    };
+
+    public int end (PositionsToOffsetArray ptoa) {
+	if (ptoa.pos < 0)
+	    return -1;
+
+	if (!processed)
+	    this.offsets();
+
+	Integer[] pair = this.offsets.get(ptoa);
+	if (pair == null)
+	    return -1;
+	return  pair[1];
+    };
+
+    public Integer[] span (int docID, int pos) {
+	return this.span(new PositionsToOffsetArray(docID, pos));
+    };
+
+    public Integer[] span (PositionsToOffsetArray ptoa) {
+	if (!processed)
+	    this.offsets();
+	return this.offsets.get(ptoa);
+    };
+
+
+    public HashMap<PositionsToOffsetArray, Integer[]> offsets () {
+	if (processed)
+	    return offsets;
+
+	StringBuilder sb = new StringBuilder().append('_');
+
+	try {
+	    Terms terms = atomic.reader().fields().terms(field);
+
+	    if (terms != null) {
+		// Todo: Maybe reuse a termsEnum!
+
+		final TermsEnum termsEnum = terms.iterator(null);
+
+		for (PositionsToOffsetArray posDoc : positions) {
+		    if (this.exists(posDoc))
+			continue;
+
+		    int docID = posDoc.docID;
+
+		    /*
+		    int pos = posDoc[1];
+		    Integer[] posDoc2 = new Integer[2];
+		    posDoc2[0] = docID;
+		    posDoc2[1] = pos;
+		    */
+
+		    sb.append(posDoc.pos);
+
+		    Term term = new Term(field, sb.toString());
+		    sb.setLength(1);
+
+		    if (termsEnum.seekExact(term.bytes(), true)) {
+			
+			log.trace("Search for {} in doc {} with pos {}", term.toString(), posDoc.docID, posDoc.pos);
+
+			// Start an iterator to fetch all payloads of the term
+			DocsAndPositionsEnum docs = termsEnum.docsAndPositions(
+                            null,
+			    null,
+			    DocsAndPositionsEnum.FLAG_PAYLOADS
+		        );
+
+			if (docs.advance(docID) == docID) {
+			    docs.nextPosition();
+
+			    BytesRef payload = docs.getPayload();
+
+			    if (payload.length == 8) {
+				bbOffset.clear();
+				bbOffset.put(payload.bytes, payload.offset, 8);
+				bbOffset.rewind();
+				Integer[] offsetArray = new Integer[2];
+				offsetArray[0] = bbOffset.getInt();
+				offsetArray[1] = bbOffset.getInt();
+				offsets.put(posDoc, offsetArray);
+
+				log.trace("Found {}-{} for {}", offsetArray[0], offsetArray[1], term.toString());
+			    }
+
+			    else {
+				log.error(
+				    "Doc {} has no offsets stored for {}",
+				    docID,
+				    term.toString()
+				);
+			    };
+			};
+		    };
+		};
+	    };
+	}
+	catch (IOException e) {
+	    // log.warn(e.getLocalizedMessage());
+	};
+
+	processed = true;
+	positions.clear();
+	return offsets;
+    };
+};
diff --git a/trunk/src/main/java/de/ids_mannheim/korap/query/SpanClassQuery.java b/trunk/src/main/java/de/ids_mannheim/korap/query/SpanClassQuery.java
new file mode 100644
index 0000000..5ce4e70
--- /dev/null
+++ b/trunk/src/main/java/de/ids_mannheim/korap/query/SpanClassQuery.java
@@ -0,0 +1,128 @@
+package de.ids_mannheim.korap.query;
+
+import java.io.IOException;
+
+import java.util.Set;
+import java.util.Map;
+
+import org.apache.lucene.search.spans.Spans;
+import org.apache.lucene.search.spans.SpanQuery;
+import org.apache.lucene.search.Query;
+import org.apache.lucene.index.AtomicReaderContext;
+import org.apache.lucene.index.Term;
+import org.apache.lucene.index.IndexReader;
+import org.apache.lucene.index.TermContext;
+import org.apache.lucene.util.Bits;
+import org.apache.lucene.util.ToStringUtils;
+
+import de.ids_mannheim.korap.query.spans.ClassSpans;
+
+
+/**
+ * Marks spans with a special class payload.
+ */
+public class SpanClassQuery extends SpanQuery {
+    public String field;
+    protected byte number;
+    protected SpanQuery highlight;
+
+    public SpanClassQuery (SpanQuery highlight, byte number) {
+	this.field = highlight.getField();
+	this.highlight = highlight;
+	this.number = number;
+    };
+
+    public SpanClassQuery (SpanQuery highlight) {
+	this.field = highlight.getField();
+	this.highlight = highlight;
+	this.number = (byte) 0;
+    };
+
+    public byte number () {
+	return this.number;
+    };
+
+    @Override
+    public String getField () { return field; }
+
+    @Override
+    public void extractTerms (Set<Term> terms) {
+	this.highlight.extractTerms(terms);
+    };
+
+    @Override
+    public String toString (String field) {
+	StringBuffer buffer = new StringBuffer("{");
+	buffer.append((int) this.number).append(": ");
+        buffer.append(this.highlight.toString()).append('}');
+	buffer.append(ToStringUtils.boost(getBoost()));
+	return buffer.toString();
+    };
+
+    @Override
+    public Spans getSpans (final AtomicReaderContext context,
+			   Bits acceptDocs, Map<Term,TermContext> termContexts) throws IOException {
+	return (Spans) new ClassSpans(
+	    this.highlight,
+	    context,
+	    acceptDocs,
+	    termContexts,
+	    number
+        );
+    };
+
+    @Override
+    public Query rewrite (IndexReader reader) throws IOException {
+	SpanClassQuery clone = null;
+	SpanQuery query = (SpanQuery) this.highlight.rewrite(reader);
+
+	if (query != this.highlight) {
+	    if (clone == null)
+		clone = this.clone();
+	    clone.highlight = query;
+	};
+
+	if (clone != null)
+	    return clone;
+
+	return this;
+    };
+
+    @Override
+    public SpanClassQuery clone() {
+	SpanClassQuery spanClassQuery = new SpanClassQuery(
+	    (SpanQuery) this.highlight.clone(),
+	    this.number
+        );
+	spanClassQuery.setBoost(getBoost());
+	return spanClassQuery;
+    };
+
+
+    /** Returns true iff <code>o</code> is equal to this. */
+    @Override
+    public boolean equals(Object o) {
+	if (this == o) return true;
+	if (!(o instanceof SpanClassQuery)) return false;
+	
+	final SpanClassQuery spanClassQuery = (SpanClassQuery) o;
+	
+	if (!highlight.equals(spanClassQuery.highlight)) return false;
+
+	if (this.number != spanClassQuery.number) return false;
+
+	return getBoost() == spanClassQuery.getBoost();
+    };
+
+
+    // I don't know what I am doing here
+    @Override
+    public int hashCode() {
+	int result = 1;
+	result = highlight.hashCode();
+	result += (int) number;
+	result ^= (result << 15) | (result >>> 18);
+	result += Float.floatToRawIntBits(getBoost());
+	return result;
+    };
+};
diff --git a/trunk/src/main/java/de/ids_mannheim/korap/query/SpanElementQuery.java b/trunk/src/main/java/de/ids_mannheim/korap/query/SpanElementQuery.java
new file mode 100644
index 0000000..86c5d56
--- /dev/null
+++ b/trunk/src/main/java/de/ids_mannheim/korap/query/SpanElementQuery.java
@@ -0,0 +1,128 @@
+package de.ids_mannheim.korap.query;
+
+import org.apache.lucene.index.AtomicReaderContext;
+import org.apache.lucene.index.Fields;
+import org.apache.lucene.index.Term;
+import org.apache.lucene.index.DocsAndPositionsEnum;
+import org.apache.lucene.index.TermContext;
+import org.apache.lucene.index.TermState;
+import org.apache.lucene.index.Terms;
+import org.apache.lucene.index.TermsEnum;
+import org.apache.lucene.search.spans.SpanQuery;
+import org.apache.lucene.util.Bits;
+import org.apache.lucene.util.ToStringUtils;
+import org.apache.lucene.search.spans.Spans;
+
+import de.ids_mannheim.korap.query.spans.ElementSpans;
+
+import java.io.IOException;
+import java.util.Map;
+import java.util.Set;
+
+
+/** Matches spans wrapped by an element. */
+public class SpanElementQuery extends SpanQuery {
+    protected Term element;
+    private String elementStr;
+    private String field;
+    
+    /** Constructor. */
+    public SpanElementQuery(String field, String term) {
+	StringBuilder sb = new StringBuilder("<>:");
+	this.field = field;
+	this.elementStr = term;
+	this.element = new Term(field, sb.append(term).toString());
+    };
+
+    /** Return the element whose spans are matched. */
+    public Term getElement() { return element; };
+
+    @Override
+    public String getField() { return element.field(); };
+  
+    @Override
+    public void extractTerms(Set<Term> terms) {
+	terms.add(element);
+    };
+
+    @Override
+    public String toString(String field) {
+	StringBuilder buffer = new StringBuilder("<");
+	buffer.append(this.field).append(':').append(elementStr);
+	buffer.append(ToStringUtils.boost(getBoost()));
+	return buffer.append(" />").toString();
+    };
+
+    @Override
+    public int hashCode() {
+	final int prime = 37; // Instead of 31
+	int result = super.hashCode();
+	result = prime * result + ((element == null) ? 0 : element.hashCode());
+	return result;
+    };
+
+    @Override
+    public boolean equals(Object obj) {
+	if (this == obj)
+	    return true;
+	if (!super.equals(obj))
+	    return false;
+	if (getClass() != obj.getClass())
+	    return false;
+	SpanElementQuery other = (SpanElementQuery) obj;
+	if (element == null) {
+	    if (other.element != null)
+		return false;
+	} else if (!element.equals(other.element))
+	    return false;
+	return true;
+    };
+
+    @Override
+    public Spans getSpans(final AtomicReaderContext context,
+			  Bits acceptDocs,
+			  Map<Term,TermContext> termContexts) throws IOException {
+	TermContext termContext = termContexts.get(element);
+	final TermState state;
+	if (termContext == null) {
+	    // this happens with span-not query,
+	    // as it doesn't include the NOT side in extractTerms()
+	    // so we seek to the term now in this segment...,
+	    // this sucks because its ugly mostly!
+	    final Fields fields = context.reader().fields();
+	    if (fields != null) {
+		final Terms terms = fields.terms(element.field());
+		if (terms != null) {
+		    final TermsEnum termsEnum = terms.iterator(null);
+		    if (termsEnum.seekExact(element.bytes(), true)) { 
+			state = termsEnum.termState();
+		    } else {
+			state = null;
+		    }
+		} else {
+		    state = null;
+		}
+	    } else {
+		state = null;
+	    }
+	} else {
+	    state = termContext.get(context.ord);
+	};
+    
+	if (state == null) { // term is not present in that reader
+	    return ElementSpans.EMPTY_ELEMENT_SPANS;
+	};
+    
+	final TermsEnum termsEnum = context.reader().terms(element.field()).iterator(null);
+	termsEnum.seekExact(element.bytes(), state);
+    
+	final DocsAndPositionsEnum postings = termsEnum.docsAndPositions(acceptDocs, null, DocsAndPositionsEnum.FLAG_PAYLOADS);
+
+	if (postings != null) {
+	    return new ElementSpans(postings, element);
+	};
+
+	// element does exist, but has no positions
+	throw new IllegalStateException("field \"" + element.field() + "\" was indexed without position data; cannot run SpanElementQuery (element=" + element.text() + ")");
+    };
+};
diff --git a/trunk/src/main/java/de/ids_mannheim/korap/query/SpanMatchModifyQuery.java b/trunk/src/main/java/de/ids_mannheim/korap/query/SpanMatchModifyQuery.java
new file mode 100644
index 0000000..d2b7a0b
--- /dev/null
+++ b/trunk/src/main/java/de/ids_mannheim/korap/query/SpanMatchModifyQuery.java
@@ -0,0 +1,121 @@
+package de.ids_mannheim.korap.query;
+
+import java.io.IOException;
+
+import java.util.Set;
+import java.util.Map;
+
+import org.apache.lucene.search.spans.Spans;
+import org.apache.lucene.search.spans.SpanQuery;
+import org.apache.lucene.search.Query;
+import org.apache.lucene.index.AtomicReaderContext;
+import org.apache.lucene.index.Term;
+import org.apache.lucene.index.IndexReader;
+import org.apache.lucene.index.TermContext;
+import org.apache.lucene.util.Bits;
+import org.apache.lucene.util.ToStringUtils;
+
+import de.ids_mannheim.korap.query.spans.MatchModifySpans;
+import de.ids_mannheim.korap.query.SpanClassQuery;
+
+/**
+ * Shrinks spans to a classed span.
+ */
+public class SpanMatchModifyQuery extends SpanClassQuery {
+    private boolean divide = false;
+
+    public SpanMatchModifyQuery (SpanQuery highlight, byte number, boolean divide) {
+	super(highlight, number);
+	this.divide = divide;
+    };
+
+    public SpanMatchModifyQuery (SpanQuery highlight, boolean divide) {
+	this(highlight, (byte) 0, divide);
+    };
+
+    public SpanMatchModifyQuery (SpanQuery highlight, byte number) {
+	this(highlight, number, false);
+    };
+
+    public SpanMatchModifyQuery (SpanQuery highlight) {
+	this(highlight, (byte) 0, false);
+    };
+
+    @Override
+    public String toString (String field) {
+	StringBuffer buffer = new StringBuffer();
+	if (divide) {
+	    buffer.append("split(");
+	}
+	else {
+	    buffer.append("shrink(");
+	};
+	buffer.append((int) this.number).append(": ");
+        buffer.append(this.highlight.toString());
+	buffer.append(')');
+
+	buffer.append(ToStringUtils.boost(getBoost()));
+	return buffer.toString();
+    };
+
+    @Override
+    public Spans getSpans (final AtomicReaderContext context, Bits acceptDocs, Map<Term,TermContext> termContexts) throws IOException {
+	return (Spans) new MatchModifySpans(this.highlight, context, acceptDocs, termContexts, number, divide);
+    };
+
+    @Override
+    public Query rewrite (IndexReader reader) throws IOException {
+	SpanMatchModifyQuery clone = null;
+	SpanQuery query = (SpanQuery) this.highlight.rewrite(reader);
+
+	if (query != this.highlight) {
+	    if (clone == null)
+		clone = this.clone();
+	    clone.highlight = query;
+	};
+
+	if (clone != null)
+	    return clone;
+
+	return this;
+    };
+
+    @Override
+    public SpanMatchModifyQuery clone() {
+	SpanMatchModifyQuery spanMatchQuery = new SpanMatchModifyQuery(
+	    (SpanQuery) this.highlight.clone(),
+	    this.number,
+	    this.divide
+        );
+	spanMatchQuery.setBoost(getBoost());
+	return spanMatchQuery;
+    };
+
+
+    /** Returns true iff <code>o</code> is equal to this. */
+    @Override
+    public boolean equals(Object o) {
+	if (this == o) return true;
+	if (!(o instanceof SpanMatchModifyQuery)) return false;
+	
+	final SpanMatchModifyQuery spanMatchModifyQuery = (SpanMatchModifyQuery) o;
+	
+	if (!highlight.equals(spanMatchModifyQuery.highlight)) return false;
+	if (this.number != spanMatchModifyQuery.number) return false;
+	if (this.divide != spanMatchModifyQuery.divide) return false;
+	return getBoost() == spanMatchModifyQuery.getBoost();
+    };
+
+
+    // I don't know what I am doing here
+    @Override
+    public int hashCode() {
+	int result = 1;
+	result = highlight.hashCode();
+	result += number + 33_333;
+	result += divide ? 1 : 0;
+	result ^= (result << 15) | (result >>> 18);
+	result += Float.floatToRawIntBits(getBoost());
+	return result;
+    };
+};
diff --git a/trunk/src/main/java/de/ids_mannheim/korap/query/SpanNextQuery.java b/trunk/src/main/java/de/ids_mannheim/korap/query/SpanNextQuery.java
new file mode 100644
index 0000000..370be81
--- /dev/null
+++ b/trunk/src/main/java/de/ids_mannheim/korap/query/SpanNextQuery.java
@@ -0,0 +1,172 @@
+package de.ids_mannheim.korap.query;
+
+// Based on SpanNearQuery
+
+/*
+  Todo: Make one Spanarray and switch between the results of A and B.
+*/
+
+import java.io.IOException;
+
+import java.util.List;
+import java.util.ArrayList;
+import java.util.Iterator;
+import java.util.Map;
+import java.util.Set;
+
+import org.apache.lucene.index.AtomicReaderContext;
+import org.apache.lucene.index.IndexReader;
+import org.apache.lucene.index.Term;
+import org.apache.lucene.index.TermContext;
+import org.apache.lucene.search.Query;
+import org.apache.lucene.util.Bits;
+import org.apache.lucene.util.ToStringUtils;
+import org.apache.lucene.search.spans.SpanQuery;
+import org.apache.lucene.index.AtomicReaderContext;
+import org.apache.lucene.search.spans.Spans;
+
+import de.ids_mannheim.korap.query.spans.NextSpans;
+
+import org.slf4j.Logger;
+import org.slf4j.LoggerFactory;
+
+/** Matches spans which are directly next to each other.
+ */
+public class SpanNextQuery extends SpanQuery implements Cloneable {
+    private SpanQuery firstClause;
+    private SpanQuery secondClause;
+    public String field;
+    private boolean collectPayloads;
+
+    // Logger
+    private final static Logger log = LoggerFactory.getLogger(SpanNextQuery.class);
+
+    // Constructor
+    public SpanNextQuery(SpanQuery firstClause,
+			 SpanQuery secondClause) {
+	this(firstClause, secondClause, true);
+    };
+
+    // Constructor  
+    public SpanNextQuery(SpanQuery firstClause,
+			 SpanQuery secondClause,
+			 boolean collectPayloads) {
+
+	this.field = secondClause.getField();
+	if (!firstClause.getField().equals(field)) {
+	    throw new IllegalArgumentException("Clauses must have same field.");
+	};
+
+	this.collectPayloads = collectPayloads;
+	this.firstClause = firstClause;
+	this.secondClause = secondClause;
+    };
+
+
+    @Override
+    public String getField() { return field; }
+
+    public SpanQuery firstClause() { return firstClause; };
+
+    public SpanQuery secondClause() { return secondClause; };
+  
+    @Override
+    public void extractTerms(Set<Term> terms) {
+	firstClause.extractTerms(terms);
+	secondClause.extractTerms(terms);
+    };
+  
+
+    @Override
+    public String toString(String field) {
+	StringBuilder buffer = new StringBuilder();
+	buffer.append("spanNext(");
+	buffer.append(firstClause.toString(field));
+        buffer.append(", ");
+	buffer.append(secondClause.toString(field));
+	buffer.append(")");
+	buffer.append(ToStringUtils.boost(getBoost()));
+	return buffer.toString();
+    };
+
+    @Override
+    public Spans getSpans (final AtomicReaderContext context,
+			   Bits acceptDocs,
+			   Map<Term,TermContext> termContexts) throws IOException {
+
+	log.trace("Get Spans");
+	return (Spans) new NextSpans (
+            this, context, acceptDocs, termContexts, collectPayloads
+	);
+    };
+
+    @Override
+    public Query rewrite (IndexReader reader) throws IOException {
+	// System.err.println(">> Rewrite query");
+
+	SpanNextQuery clone = null;
+
+	// System.err.println(">> Rewrite first clause");
+	SpanQuery query = (SpanQuery) firstClause.rewrite(reader);
+
+	if (query != firstClause) {
+	    if (clone == null)
+		clone = this.clone();
+	    clone.firstClause = query;
+	};
+
+	// System.err.println(">> Rewrite second clause");
+	query = (SpanQuery) secondClause.rewrite(reader);
+	if (query != secondClause) {
+	    if (clone == null)
+		clone = this.clone();
+	    clone.secondClause = query;
+	};
+
+	if (clone != null) {
+	    // System.err.println(">> Clone is not null");
+	    return clone;
+	};
+
+	return this;
+    };
+  
+
+    @Override
+    public SpanNextQuery clone() {
+	SpanNextQuery spanNextQuery = new SpanNextQuery(
+	    (SpanQuery) firstClause.clone(),
+	    (SpanQuery) secondClause.clone(),
+	    this.collectPayloads
+        );
+	spanNextQuery.setBoost(getBoost());
+	return spanNextQuery;
+    };
+
+
+    /** Returns true iff <code>o</code> is equal to this. */
+    @Override
+    public boolean equals(Object o) {
+	if (this == o) return true;
+	if (!(o instanceof SpanNextQuery)) return false;
+	
+	final SpanNextQuery spanNextQuery = (SpanNextQuery) o;
+	
+	if (collectPayloads != spanNextQuery.collectPayloads) return false;
+	if (!firstClause.equals(spanNextQuery.firstClause)) return false;
+	if (!secondClause.equals(spanNextQuery.secondClause)) return false;
+
+	return getBoost() == spanNextQuery.getBoost();
+    };
+
+
+    // I don't know what I am doing here
+    @Override
+    public int hashCode() {
+	int result;
+	result = firstClause.hashCode() + secondClause.hashCode();
+	result ^= (result << 31) | (result >>> 2);  // reversible
+	result += Float.floatToRawIntBits(getBoost());
+	return result;
+    };
+};
diff --git a/trunk/src/main/java/de/ids_mannheim/korap/query/SpanWithinQuery.java b/trunk/src/main/java/de/ids_mannheim/korap/query/SpanWithinQuery.java
new file mode 100644
index 0000000..8e9235d
--- /dev/null
+++ b/trunk/src/main/java/de/ids_mannheim/korap/query/SpanWithinQuery.java
@@ -0,0 +1,196 @@
+package de.ids_mannheim.korap.query;
+
+// Based on SpanNearQuery
+import java.io.IOException;
+
+import java.util.List;
+import java.util.ArrayList;
+import java.util.Iterator;
+import java.util.Map;
+import java.util.Set;
+
+import org.apache.lucene.index.AtomicReaderContext;
+import org.apache.lucene.index.IndexReader;
+import org.apache.lucene.index.Term;
+import org.apache.lucene.index.TermContext;
+import org.apache.lucene.search.Query;
+import org.apache.lucene.util.Bits;
+import org.apache.lucene.util.ToStringUtils;
+import org.apache.lucene.search.spans.SpanQuery;
+import org.apache.lucene.index.AtomicReaderContext;
+import org.apache.lucene.search.spans.Spans;
+import org.apache.lucene.search.spans.SpanTermQuery;
+
+import de.ids_mannheim.korap.query.spans.WithinSpans;
+import de.ids_mannheim.korap.query.SpanElementQuery;
+
+/**
+ * Matches spans that are within certain elements.
+ */
+public class SpanWithinQuery extends SpanQuery implements Cloneable {
+    private SpanQuery wrap;
+    private SpanQuery embedded;
+    public String field;
+    private short flag;
+    private boolean collectPayloads;
+
+    public static final short
+	WITHIN = 0,
+	STARTSWITH = 1,
+	ENDSWITH = 2,
+	MATCH = 3;
+
+    // may support "starting" and "ending"
+
+    // Constructor
+    public SpanWithinQuery (SpanQuery wrap,
+			    SpanQuery embedded,
+			    short flag,
+			    boolean collectPayloads) {
+
+	this.field = embedded.getField();
+	this.embedded = embedded;
+	this.wrap = wrap;
+	this.flag = flag;
+	this.collectPayloads = collectPayloads;
+    };
+
+    // Constructor
+    public SpanWithinQuery(String element,
+			   SpanQuery embedded) {
+	this(element, embedded, (short) 0, true);
+    };
+
+    // Constructor
+    public SpanWithinQuery (String element,
+			    SpanQuery embedded,
+			    short flag,
+			    boolean collectPayloads) {
+	this(
+	     (SpanQuery) new SpanElementQuery(embedded.getField(), element),
+	     embedded,
+	     flag,
+	     collectPayloads
+	);
+    };
+
+
+    // Constructor
+    public SpanWithinQuery(String element,
+			   SpanQuery embedded,
+			   short flag) {
+	this(element, embedded, flag, true);
+    };
+
+    // Constructor
+    public SpanWithinQuery (String element,
+			    SpanQuery embedded,
+			    boolean collectPayloads) {
+	this(element, embedded, (short) 0, collectPayloads);
+    };
+
+
+    // Constructor
+    public SpanWithinQuery(SpanQuery wrap,
+			   SpanQuery embedded,
+			   short flag) {
+	this(wrap, embedded, flag, true);
+    };
+
+    // Constructor
+    public SpanWithinQuery(SpanQuery wrap,
+			   SpanQuery embedded) {
+	this(wrap, embedded, (short) 0, true);
+    };
+
+
+    @Override
+    public String getField()    { return field;    };
+    public SpanQuery wrap()     { return wrap;     };
+    public SpanQuery embedded() { return embedded; };
+    public short flag()         { return flag; };
+  
+    @Override
+    public void extractTerms(Set<Term> terms) {
+	embedded.extractTerms(terms);
+    };
+  
+    @Override
+    public String toString(String field) {
+	StringBuilder buffer = new StringBuilder();
+	buffer.append("spanWithin(");
+        buffer.append(wrap.toString());
+        buffer.append(", ");
+	buffer.append(embedded.toString(field));
+        buffer.append(")");
+	buffer.append(ToStringUtils.boost(getBoost()));
+	return buffer.toString();
+    };
+
+    @Override
+    public Spans getSpans (final AtomicReaderContext context,
+			   Bits acceptDocs,
+			   Map<Term,TermContext> termContexts) throws IOException {
+	return (Spans) new WithinSpans (
+            this, context, acceptDocs, termContexts, this.flag
+	);
+    };
+
+    @Override
+    public Query rewrite (IndexReader reader) throws IOException {
+	SpanWithinQuery clone = null;
+
+	SpanQuery query = (SpanQuery) embedded.rewrite(reader);
+
+	if (query != embedded) {
+	    if (clone == null)
+		clone = this.clone();
+	    clone.embedded = query;
+	};
+
+	if (clone != null)
+	    return clone;
+
+	return this;
+    };
+  
+
+    @Override
+    public SpanWithinQuery clone () {
+	SpanWithinQuery spanWithinQuery = new SpanWithinQuery(
+            (SpanQuery) wrap.clone(),
+	    (SpanQuery) embedded.clone(),
+	    this.flag,
+	    this.collectPayloads
+        );
+	spanWithinQuery.setBoost(getBoost());
+	return spanWithinQuery;
+    };
+
+
+    /** Returns true iff <code>o</code> is equal to this. */
+    @Override
+    public boolean equals(Object o) {
+	if (this == o) return true;
+	if (!(o instanceof SpanWithinQuery)) return false;
+	
+	final SpanWithinQuery spanWithinQuery = (SpanWithinQuery) o;
+	
+	if (collectPayloads != spanWithinQuery.collectPayloads) return false;
+	if (!wrap.equals(spanWithinQuery.wrap)) return false;
+	if (!embedded.equals(spanWithinQuery.embedded)) return false;
+
+	return getBoost() == spanWithinQuery.getBoost();
+    };
+
+    // I don't know what I am doing here
+    @Override
+    public int hashCode() {
+	int result = 1;
+	result = embedded.hashCode();
+	result += wrap.hashCode();
+	result ^= (result << 4) | (result >>> 29);
+	result += Float.floatToRawIntBits(getBoost());
+	return result;
+    };
+};
diff --git a/trunk/src/main/java/de/ids_mannheim/korap/query/spans/ClassSpans.java b/trunk/src/main/java/de/ids_mannheim/korap/query/spans/ClassSpans.java
new file mode 100644
index 0000000..e52ee73
--- /dev/null
+++ b/trunk/src/main/java/de/ids_mannheim/korap/query/spans/ClassSpans.java
@@ -0,0 +1,115 @@
+package de.ids_mannheim.korap.query.spans;
+
+import org.apache.lucene.search.spans.Spans;
+import org.apache.lucene.search.spans.SpanQuery;
+import org.apache.lucene.index.AtomicReaderContext;
+import org.apache.lucene.index.Term;
+import org.apache.lucene.index.TermContext;
+import org.apache.lucene.util.ArrayUtil;
+import org.apache.lucene.util.Bits;
+
+import java.io.IOException;
+
+import java.util.Map;
+import java.util.ArrayList;
+import java.util.*;
+
+import org.slf4j.Logger;
+import org.slf4j.LoggerFactory;
+
+import java.nio.ByteBuffer;
+
+public class ClassSpans extends Spans {
+    private List<byte[]> highlightedPayload;
+    private Collection<byte[]> payload;
+    private final Spans spans;
+    private byte number;
+    private ByteBuffer bb;
+    private SpanQuery highlight;
+    private final Logger log = LoggerFactory.getLogger(ClassSpans.class);
+
+    public ClassSpans (SpanQuery highlight, AtomicReaderContext context, Bits acceptDocs, Map<Term,TermContext> termContexts, byte number) throws IOException {
+	spans = highlight.getSpans(context, acceptDocs, termContexts);
+	this.number = number;
+	this.highlight = highlight;
+	this.highlightedPayload = new ArrayList<byte[]>(6);
+    };
+
+    @Override
+    public Collection<byte[]> getPayload() throws IOException {
+	/*
+	for (byte[] x: highlightedPayload) {
+	    ByteBuffer b = ByteBuffer.wrap(x, 0, x.length);
+	    log.trace(">> Get Payload: {}-{} in class {}", b.getInt(), b.getInt(), b.get());
+	};
+	*/
+	return highlightedPayload;
+    };
+
+    @Override
+    public boolean isPayloadAvailable() {
+	// return highlightedPayload.isEmpty() == false;
+	return true;
+    };
+
+    public int doc() { return spans.doc(); }
+
+    // inherit javadocs
+    @Override
+    public int start() { return spans.start(); }
+
+    // inherit javadocs
+    @Override
+    public int end() { return spans.end(); }
+
+
+    // inherit javadocs
+    @Override
+    public boolean next() throws IOException {
+	log.trace("Forward next");
+
+	if (spans.next()) {
+
+	    highlightedPayload.clear();
+
+	    if (spans.isPayloadAvailable()) {
+		highlightedPayload.addAll(spans.getPayload());
+		log.trace("Found payload");
+	    };
+
+
+	    log.trace("Start to create class {} with span {} - {}",
+		      number,
+		      spans.start(),
+		      spans.end());
+
+	    // Todo: Better allocate using a Factory!
+
+	    bb = ByteBuffer.allocate(9);
+
+	    bb.putInt(spans.start()).putInt(spans.end()).put(number);
+	    // Add highlight information as byte after offsets
+	    highlightedPayload.add(bb.array());
+	    return true;
+	};
+	return false;
+    };
+
+    // inherit javadocs
+    @Override
+    public boolean skipTo(int target) throws IOException {
+	return spans.skipTo(target);
+    };
+
+    @Override
+    public String toString() {
+	return getClass().getName() + "(" + this.highlight.toString() + ")@" +
+	    (doc() + ":" + start() + "-" + end());
+    };
+
+
+    @Override
+    public long cost() {
+	return spans.cost();
+    }
+};
diff --git a/trunk/src/main/java/de/ids_mannheim/korap/query/spans/ElementSpans.java b/trunk/src/main/java/de/ids_mannheim/korap/query/spans/ElementSpans.java
new file mode 100644
index 0000000..902a33b
--- /dev/null
+++ b/trunk/src/main/java/de/ids_mannheim/korap/query/spans/ElementSpans.java
@@ -0,0 +1,505 @@
+package de.ids_mannheim.korap.query.spans;
+
+import org.apache.lucene.index.Term;
+import org.apache.lucene.index.DocsAndPositionsEnum;
+import org.apache.lucene.search.DocIdSetIterator;
+import org.apache.lucene.search.spans.Spans;
+import org.apache.lucene.util.BytesRef;
+
+import java.nio.ByteBuffer;
+
+import org.slf4j.Logger;
+import org.slf4j.LoggerFactory;
+
+import java.io.IOException;
+import java.util.Collections;
+import java.util.Collection;
+import java.util.LinkedList;
+import java.util.ArrayList;
+import java.util.List;
+
+// TODO: Store payloads in 12 byte instead of the complicated ByteBuffer stuff!
+
+import de.ids_mannheim.korap.query.spans.KorapTermSpan;
+
+public class ElementSpans extends Spans {
+    private byte[] payloadByte = new byte[4];
+    private ByteBuffer bb = ByteBuffer.allocate(4);
+
+    protected final DocsAndPositionsEnum postings;
+    protected final Term term;
+    private int doc, freq, count, position, end;
+    protected boolean readPayload;
+
+    private  LinkedList<KorapTermSpan> memory;
+    private ByteBuffer storedPayload = ByteBuffer.allocate(128);
+    boolean hasStoredPayload = false;
+
+    private KorapTermSpan overflow, tempSpan;
+
+    private final static Logger log = LoggerFactory.getLogger(ElementSpans.class);
+
+    public ElementSpans(DocsAndPositionsEnum postings, Term term) {
+	this.postings = postings;
+	this.term = term;
+	this.doc = -1;
+	this.end = -1;
+	storedPayload.clear();
+	hasStoredPayload = false;
+	// storedPayload = null;
+	memory = new LinkedList<KorapTermSpan>();
+	overflow = new KorapTermSpan();
+	tempSpan = new KorapTermSpan();
+    };
+
+    // only for EmptyElementSpans (below)
+    ElementSpans() {
+	term = null;
+	postings = null;
+    };
+
+    @Override
+    public boolean next() throws IOException {
+	end = -1;
+
+	if (memory.size() > 0) {
+	    log.trace("There is a memory entry");
+
+	    _setToCurrent(memory.removeFirst());
+
+	    log.trace("Current1: [{}-{}]", position, end);
+
+	    return true;
+	};
+
+	log.trace("There is no memory entry");
+
+	if (count == freq) {
+	    log.trace("last position in document");
+
+	    // Check for overflow on document boundary
+	    if (overflow.start != -1) {
+		log.trace("  but there is an overflow");
+
+		_setToCurrent(overflow).clear();
+
+		log.trace("Current2: [{}-{}]", position, end);
+
+		return true;
+	    };
+
+	    if (postings == null) {
+		log.trace("no more postings");
+		return false;
+	    };
+
+	    log.trace("Go to next doc");
+
+	    doc = postings.nextDoc();
+
+	    if (doc == DocIdSetIterator.NO_MORE_DOCS) {
+		log.trace("no more docs");
+		return false;
+	    };
+
+	    // New doc!
+	    end = -1;
+	    storedPayload.clear();
+	    hasStoredPayload = false;
+
+	    freq = postings.freq();
+	    count = 0;
+	};
+
+	int pos = overflow.start;
+	
+	while (true) {
+	    /*
+	    if (DEBUG)
+		System.err.println(">> Reset end and payload");
+	    storedPayload.clear();
+	    end = -1;
+	    */
+
+	    log.trace("pos is {}", pos);
+
+	    _log_payloads(1);
+
+	    if (count == freq) {
+		log.trace("last position in document");
+
+		if (postings == null) {
+
+		    log.trace("no more postings");
+
+		    // Check for overflow on document boundary
+		    if (overflow.start != -1) {
+			log.trace("  but there is an overflow");
+
+			_setToCurrent(overflow).clear();
+			log.trace("Current3: [{}-{}]", position, end);
+
+			return true;
+		    };
+
+		    return false;
+		};
+
+		log.trace("go to next doc");
+		_log_payloads(2);
+
+		if (overflow.start != -1) {
+		    log.trace("Storing overflow {} ...", overflow.toString());
+		    log.trace("... in memory with {}-{}", overflow.startChar(), overflow.endChar());
+		    memory.add((KorapTermSpan) overflow.clone());
+		    overflow.clear();
+		};
+		_log_payloads(3);
+
+		if (memory.size() > 0) {
+		    log.trace("sort and return first");
+		    _log_payloads(4);
+		    Collections.sort(memory);
+		    _log_payloads(5);
+		    _setToCurrent(memory.removeFirst());
+		    _log_payloads(6);
+
+		    log.trace("Current4: [{}-{}]]", position, end);
+		    break;
+		};
+
+		doc = postings.nextDoc();
+		// New doc
+		end = -1;
+		pos = -1;
+
+		if (doc == DocIdSetIterator.NO_MORE_DOCS) {
+		    log.trace("no more docs");
+		    return false;
+		};
+
+		freq = postings.freq();
+		count = 0;
+	    };
+
+
+	    log.trace("Forward postings");
+	    position = postings.nextPosition();
+	    // New pos!
+	    end = -1;
+	    _log_payloads(9);
+	    log.trace("CLEAR PAYLOAD");
+	    storedPayload.clear();
+	    hasStoredPayload = false;
+	    _log_payloads(10);
+
+	    count++;
+
+	    log.trace("next position is {}", position);
+
+	    // There was no overflow
+	    if (pos == -1 || pos == position) {
+		if (pos == position) {
+		    log.trace("Add overflow to memory");
+		    memory.add((KorapTermSpan) overflow.clone());
+		}
+
+		else {
+		    log.trace("There was no overflow");
+		    pos = position;
+		};
+
+		_log_payloads(8);
+		log.trace("*****************************");
+		_setCurrentTo(overflow);
+		log.trace("~~~~~~~~~~~~~~~~~~~~~~~~~~~~~");
+
+		log.trace("Set overflow and continue: {} ...", overflow.toString());
+		log.trace("... with {}-{}", overflow.startChar(), overflow.endChar());
+		continue;
+	    }
+
+	    // overflow was older
+	    else if (pos != position) {
+
+		log.trace("Overflow was older");
+
+		// Use memory
+		if (memory.size() > 0) {
+
+		    log.trace("Add overflow to memory");
+
+		    memory.add((KorapTermSpan) overflow.clone());
+
+		    log.trace("Sort memory");
+
+		    // Sort by end position
+		    Collections.sort(memory);
+
+		    // Store current information in overflow
+		    _setCurrentTo(overflow);
+
+		    log.trace("Set new overflow: {}", overflow.toString());
+
+		    log.trace("Get first element from sorted memory");
+
+		    _setToCurrent(memory.removeFirst());
+		}
+
+		// Nothing in memory - use overflow!
+		else {
+
+		    log.trace("There is nothing in memory");
+
+		    /* Make overflow active and store last position in overflow */
+		    _setCurrentTo(tempSpan);
+
+		    log.trace("Temp is now {}", overflow.toString());
+
+		    _setToCurrent(overflow);
+		    
+		    // Store current information in overflow
+		    overflow.copyFrom(tempSpan);
+
+		    log.trace("Overflow is now {}", overflow.toString());
+
+		};
+		break;
+	    };
+	};
+	log.trace("Current4: [{}-{}]", position, end);
+
+	readPayload = false;
+	return true;
+    };
+
+    private KorapTermSpan _setToCurrent (KorapTermSpan act) {
+	if (act.payload != null)
+	    act.payload.rewind();
+	log.trace("Set to current with {}, meaning {} - {}", act.toString(), act.payload.getInt(0), act.payload.getInt(4));
+	if (act.payload != null)
+	    act.payload.rewind();
+
+	position = act.start;
+	end = act.end;
+	storedPayload.clear();
+	hasStoredPayload = false;
+
+	if (act.payload != null) {
+	    log.trace("Payload is not null");
+	    act.payload.rewind();
+	    storedPayload.put(act.payload);
+	    hasStoredPayload = true;
+	}
+	else {
+	    log.trace("Payload is null");
+	};
+
+	return act;
+    };
+
+    private void _log_payloads (int nr) {
+	if (hasStoredPayload) {
+	    log.trace(
+		      "[{}] payload offsets are {}-{}",
+		      nr,
+		      storedPayload.getInt(0),
+		      storedPayload.getInt(4)
+		      );
+	}
+	else {
+	    log.trace("[{}] payload is empty", nr);
+	};
+    };
+
+    private void _setCurrentTo () {
+	overflow.start = position;
+	overflow.end = this.end();
+	overflow.payload.clear();
+	if (hasStoredPayload) {
+	    overflow.payload.put(storedPayload);
+	};
+	log.trace("Set current to Overflow {} with {}-{}", overflow.toString(), overflow.startChar(), overflow.endChar());
+    };
+
+    private void _setCurrentTo (KorapTermSpan o) {
+	_log_payloads(7);
+	o.start = position;
+	o.end = this.end();
+	o.payload.clear();
+	if (hasStoredPayload) {
+	    storedPayload.rewind();
+	    o.payload.put(storedPayload);
+	    log.trace("Object now has offset {}-{}", o.payload.getInt(0), o.payload.getInt(4));
+
+	    // Import:
+	    o.payload.rewind();
+	};
+	log.trace("Set current to object {} ...", o.toString());
+	if (hasStoredPayload) {
+	    log.trace("with {}-{} from {}-{}", o.startChar(), o.endChar(), storedPayload.getInt(0), storedPayload.getInt(4));
+	    storedPayload.rewind();
+	};
+    };
+
+
+    @Override
+    public boolean skipTo(int target) throws IOException {
+	assert target > doc;
+	doc = postings.advance(target);
+
+	end = -1;
+	overflow.clear();
+	storedPayload.clear();
+	hasStoredPayload = false;
+	if (memory != null)
+	    memory.clear();
+
+	if (doc == DocIdSetIterator.NO_MORE_DOCS) {
+	    return false;
+	};
+
+	freq = postings.freq();
+	count = 0;
+	position = postings.nextPosition();
+	count++;
+	readPayload = false;
+	return true;
+    };
+
+    @Override
+    public int doc() {
+	return doc;
+    };
+
+    @Override
+    public int start() {
+	return position;
+    };
+
+    @Override
+    public int end() {
+	if (end >= 0)
+	    return end;
+
+	try {
+	    end = this.getPayloadEndPosition();
+	}
+	catch (Exception e) {
+	    end = position;
+	};
+	return end;
+    };
+
+    @Override
+    public long cost() {
+	return postings.cost();
+    };
+
+    @Override
+    public Collection<byte[]> getPayload() throws IOException {
+	byte[] offsetCharacters = new byte[8];
+
+	if (storedPayload.position() <= 0)
+	    this.getPayloadEndPosition();
+
+	if (hasStoredPayload) {
+	    log.trace("storedPayload: {} - {}", storedPayload.getInt(0), storedPayload.getInt(4));
+	}
+	else {
+	    log.trace("storedPayload is empty");
+	};
+	System.arraycopy(storedPayload.array(), 0, offsetCharacters, 0, 8);
+
+	//	return Collections.singletonList(storedPayload.array());
+	return Collections.singletonList(offsetCharacters);
+    };
+
+    @Override
+    public boolean isPayloadAvailable() throws IOException {
+	return readPayload == false && postings.getPayload() != null;
+    };
+
+    @Override
+    public String toString() {
+	return "spans(" + term.toString() + ")@" +
+            (doc == -1 ? "START" : (doc == Integer.MAX_VALUE) ? "END" : doc + "-" + position);
+    };
+
+    public DocsAndPositionsEnum getPostings() {
+	return postings;
+    };
+
+    private int getPayloadEndPosition () {
+	log.trace("getPayloadEndPosition of element ...");
+
+	try {
+	    BytesRef payload = postings.getPayload();
+
+	    log.trace("  BytesRef: {}", payload.toString());
+	    readPayload = true;
+	    storedPayload.clear();
+	    hasStoredPayload = false;
+	    if (payload != null) {
+		log.trace("Do bit magic");
+		storedPayload.put(payload.bytes, payload.offset, 8);
+		storedPayload.put(payload.bytes, payload.offset + 12, payload.length - 12);
+		System.arraycopy(payload.bytes, payload.offset + 8, payloadByte, 0, 4);
+		hasStoredPayload = true;
+
+		log.trace("~~ Bytes: {}-{}-{}",
+			  storedPayload.getInt(0),
+			  storedPayload.getInt(4),
+			  payloadByte);
+	    }
+
+	    else {
+		log.trace("There's no payload available");
+		payloadByte = null;
+	    };
+
+	    if (payloadByte != null) {
+		bb.clear();
+		int t = bb.wrap(payloadByte).getInt();
+
+		log.trace("   |-> {}", t);
+		return t;
+	    };
+
+	}
+	catch (IOException e) {
+	    log.trace("IOException {}", e);	   
+	};
+	return -1;
+    };
+
+
+    private static final class EmptyElementSpans extends ElementSpans {
+
+	@Override
+	public boolean next() { return false; };
+
+	@Override
+	public boolean skipTo(int target) { return false; };
+
+	@Override
+	public int doc() { return DocIdSetIterator.NO_MORE_DOCS; };
+	
+	@Override
+	public int start() { return -1; };
+
+	@Override
+	public int end() { return -1; };
+
+	@Override
+	public Collection<byte[]> getPayload() { return null; };
+
+	@Override
+	public boolean isPayloadAvailable() { return false; };
+	
+	@Override
+	public long cost() { return 0; };
+    };
+    
+    public static final ElementSpans EMPTY_ELEMENT_SPANS = new EmptyElementSpans();
+};
diff --git a/trunk/src/main/java/de/ids_mannheim/korap/query/spans/KorapLongSpan.java b/trunk/src/main/java/de/ids_mannheim/korap/query/spans/KorapLongSpan.java
new file mode 100644
index 0000000..bd43681
--- /dev/null
+++ b/trunk/src/main/java/de/ids_mannheim/korap/query/spans/KorapLongSpan.java
@@ -0,0 +1,47 @@
+package de.ids_mannheim.korap.query.spans;
+
+import de.ids_mannheim.korap.query.spans.KorapSpan;
+
+import java.util.Collection;
+
+public class KorapLongSpan extends KorapSpan {
+    public Collection<byte[]> payload;
+    
+    @Override
+    public Object clone() {
+	KorapLongSpan span = new KorapLongSpan();
+	span.start = this.start;
+	span.end = this.end;
+	span.doc = this.doc;
+	span.payload.addAll(this.payload);
+	return span;
+    };
+
+    public KorapSpan copyFrom (KorapLongSpan o) {
+	super.copyFrom((KorapSpan) o);
+	this.payload.addAll(o.payload);
+	return this;
+    };
+
+    @Override
+    public void clearPayload () {
+	if (this.payload != null)
+	    this.payload.clear();
+    };
+
+    @Override
+    public void initPayload () {
+    };
+
+    @Override
+    public String toString () {
+	StringBuilder sb = new StringBuilder("[");
+	return sb.append(this.start).append('-')
+	    .append(this.end)
+	    .append('(').append(this.doc).append(')')
+	    //	    .append('$').append(this.payload.toString())
+	    .append(']')
+	    .toString();
+    };
+
+};
diff --git a/trunk/src/main/java/de/ids_mannheim/korap/query/spans/KorapSpan.java b/trunk/src/main/java/de/ids_mannheim/korap/query/spans/KorapSpan.java
new file mode 100644
index 0000000..c8a223e
--- /dev/null
+++ b/trunk/src/main/java/de/ids_mannheim/korap/query/spans/KorapSpan.java
@@ -0,0 +1,62 @@
+package de.ids_mannheim.korap.query.spans;
+
+import java.lang.StringBuilder;
+
+public abstract class KorapSpan implements Comparable<KorapSpan>, Cloneable {
+    public int start, end, doc;
+
+    public KorapSpan () {
+	this.start = -1;
+	this.end = -1;
+	initPayload();
+    };
+
+    public void clear () {
+	this.start = -1;
+	this.end = -1;
+	this.doc = -1;
+	clearPayload();
+    };
+
+    public KorapSpan copyFrom (KorapSpan o) {
+	this.start = o.start;
+	this.end = o.end;
+	this.doc = o.doc;
+	clearPayload();
+	return this;
+    };
+
+    public abstract void clearPayload ();
+    public abstract void initPayload ();
+
+    @Override
+    public int compareTo (KorapSpan o) {
+	/* optimizable for short numbers to return o.end - this.end */
+	if (this.doc < o.doc) {
+	    return -1;
+	}
+	else if (this.doc == o.doc) {
+	    if (this.start < o.start) {
+		return -1;
+	    }
+	    else if (this.start == o.start) {
+		if (this.end < o.end)
+		    return -1;
+	    };
+	};
+	return 1;
+    };
+
+    public String toString () {
+	StringBuilder sb = new StringBuilder("[");
+	return sb.append(this.start).append('-')
+	    .append(this.end)
+	    .append('(').append(this.doc).append(')')
+	    .append(']')
+	    .toString();
+    };
+
+    /*
+equals und hashcode implementieren
+     */
+};
diff --git a/trunk/src/main/java/de/ids_mannheim/korap/query/spans/KorapTermSpan.java b/trunk/src/main/java/de/ids_mannheim/korap/query/spans/KorapTermSpan.java
new file mode 100644
index 0000000..7fc1e57
--- /dev/null
+++ b/trunk/src/main/java/de/ids_mannheim/korap/query/spans/KorapTermSpan.java
@@ -0,0 +1,77 @@
+package de.ids_mannheim.korap.query.spans;
+
+import java.nio.ByteBuffer;
+import de.ids_mannheim.korap.query.spans.KorapSpan;
+
+// TODO: Store payloads in 12 byte instead of the complicated ByteBuffer stuff!
+
+
+import org.slf4j.Logger;
+import org.slf4j.LoggerFactory;
+
+public class KorapTermSpan extends KorapSpan {
+    public ByteBuffer payload;
+
+    private final Logger log = LoggerFactory.getLogger(WithinSpans.class);
+
+    @Override
+    public Object clone() {
+	KorapTermSpan span = new KorapTermSpan();
+	span.start = this.start;
+	span.end = this.end;
+	span.doc = this.doc;
+
+	this.payload.rewind();
+	span.payload.put(this.payload);
+
+	log.trace("Clone payload {} to payload {} ...",
+		  this.payload.toString(),
+		  span.payload.toString());
+	log.trace("... from {}-{} to {}-{}",
+		  this.startChar(),
+		  this.endChar(),
+		  span.startChar(),
+		  span.endChar());
+
+	return span;
+    };
+
+    public KorapSpan copyFrom (KorapTermSpan o) {
+	super.copyFrom((KorapSpan) o);
+	this.payload.put(o.payload);
+	return this;
+    };
+
+    @Override
+    public void clearPayload () {
+	if (this.payload != null) {
+	    this.payload.clear();
+	    this.payload.rewind();
+	};
+    };
+
+    @Override
+    public void initPayload () {
+	this.payload = ByteBuffer.allocate(128);
+    };
+
+
+    @Override
+    public String toString () {
+	StringBuilder sb = new StringBuilder("[");
+	return sb.append(this.start).append('-')
+	    .append(this.end)
+	    .append('(').append(this.doc).append(')')
+	    .append('$').append(this.payload.toString())
+	    .append(']')
+	    .toString();
+    };
+
+    public int startChar () {
+	return this.payload.getInt(0);
+    };
+
+    public int endChar () {
+	return this.payload.getInt(4);
+    };
+};
diff --git a/trunk/src/main/java/de/ids_mannheim/korap/query/spans/MatchModifySpans.java b/trunk/src/main/java/de/ids_mannheim/korap/query/spans/MatchModifySpans.java
new file mode 100644
index 0000000..2d785fa
--- /dev/null
+++ b/trunk/src/main/java/de/ids_mannheim/korap/query/spans/MatchModifySpans.java
@@ -0,0 +1,176 @@
+package de.ids_mannheim.korap.query.spans;
+
+import org.apache.lucene.search.spans.Spans;
+import org.apache.lucene.search.spans.SpanQuery;
+import org.apache.lucene.index.AtomicReaderContext;
+import org.apache.lucene.index.Term;
+import org.apache.lucene.index.TermContext;
+import org.apache.lucene.util.ArrayUtil;
+import org.apache.lucene.util.Bits;
+
+import java.io.IOException;
+
+import java.util.Map;
+import java.util.ArrayList;
+import java.util.*;
+
+import org.slf4j.Logger;
+import org.slf4j.LoggerFactory;
+
+import java.nio.ByteBuffer;
+
+public class MatchModifySpans extends Spans {
+    private List<byte[]> highlightedPayload;
+    private Collection<byte[]> payload;
+    private final Spans spans;
+    private byte number;
+    private boolean divide;
+    private ByteBuffer bb;
+
+    private SpanQuery highlight;
+    private final Logger log = LoggerFactory.getLogger(MatchModifySpans.class);
+
+    private int start = -1, end;
+    private int tempStart, tempEnd = 0;
+
+
+    public MatchModifySpans (SpanQuery highlight,
+		       AtomicReaderContext context,
+		       Bits acceptDocs,
+		       Map<Term,TermContext> termContexts,
+		       byte number,
+		       boolean divide) throws IOException {
+	spans = highlight.getSpans(context, acceptDocs, termContexts);
+	this.number = number;
+	this.divide = divide;
+	this.highlight = highlight;
+	this.highlightedPayload = new ArrayList<byte[]>(6);
+	bb = ByteBuffer.allocate(9);
+    };
+
+    @Override
+    public Collection<byte[]> getPayload() throws IOException {
+	return highlightedPayload;
+    };
+
+    @Override
+    public boolean isPayloadAvailable() {
+	return highlightedPayload.isEmpty() == false;
+    };
+
+    public int doc() { return spans.doc(); }
+
+    // inherit javadocs
+    @Override
+    public int start() { return start; }
+
+    // inherit javadocs
+    @Override
+    public int end() { return end; }
+
+
+    // inherit javadocs
+    @Override
+    public boolean next() throws IOException {
+	log.trace("||> Forward next");
+
+	highlightedPayload.clear();
+
+	/*
+	  Bei divide:
+	  Ist der Speicher leer?
+	  Sonst der nächste Treffer vom Speicher!
+	*/
+
+	if (spans.next()) {
+	    start = -1;
+	    if (spans.isPayloadAvailable()) {
+		end = 0;
+
+		for (byte[] payload : spans.getPayload()) {
+		    bb.clear();
+		    bb.put(payload);
+		    //		    bb = ByteBuffer.wrap(payload, 0, 10);
+		    bb.position(8);
+
+		    // Todo: Implement Divide
+		    if (payload.length == 9 && bb.get() == this.number) {
+			bb.rewind();
+			tempStart = bb.getInt();
+			tempEnd = bb.getInt();
+
+			log.trace("Found matching class {}-{}", tempStart, tempEnd);
+
+			if (start == -1)
+			    start = tempStart;
+			else if (tempStart < start)
+			    start = tempStart;
+
+			if (tempEnd > end)
+			    end = tempEnd;
+		    }
+		    else {
+			log.trace("Remember old payload {}", payload);
+			highlightedPayload.add(payload);
+		    };
+		};
+
+		log.trace("All payload processed, now clean up");
+
+		if (start != -1) {
+		    int i = highlightedPayload.size() - 1;
+
+		    for (; i >= 0; i--) {
+			bb.clear();
+			bb.put(highlightedPayload.get(i),0,8);
+			bb.rewind();
+			if (bb.getInt() < start || bb.getInt() > end) {
+			    bb.rewind();
+			    log.trace("Remove highlight {} with {}-{} for {}-{}", i, bb.getInt(), bb.getInt(), start, end);
+			    highlightedPayload.remove(i);
+			    continue;
+			};
+ 			bb.rewind();
+			log.trace("Highlight {} will stay with {}-{} for {}-{}", i, bb.getInt(), bb.getInt(), start, end);
+		    };
+		    /*
+		     * Todo: SPLIT
+		     * Vorsicht! Bei divide könnten Payloads mehrmals vergeben werden
+		     * müssen!
+		     */
+		};
+	    };
+
+
+	    if (start == -1) {
+		start = spans.start();
+		end = spans.end();
+	    }
+	    else {
+		log.trace("Start to shrink to {} - {} class: {}",
+			  start, end, number);
+	    };
+
+	    return true;
+	};
+	return false;
+    };
+
+    // inherit javadocs
+    @Override
+    public boolean skipTo(int target) throws IOException {
+	return spans.skipTo(target);
+    };
+
+    @Override
+    public String toString() {
+	return getClass().getName() + "(" + this.highlight.toString() + ")@" +
+	    (doc() + ":" + start() + "-" + end());
+    };
+
+
+    @Override
+    public long cost() {
+	return spans.cost();
+    }
+};
diff --git a/trunk/src/main/java/de/ids_mannheim/korap/query/spans/NextSpans.java b/trunk/src/main/java/de/ids_mannheim/korap/query/spans/NextSpans.java
new file mode 100644
index 0000000..b6080fe
--- /dev/null
+++ b/trunk/src/main/java/de/ids_mannheim/korap/query/spans/NextSpans.java
@@ -0,0 +1,408 @@
+package de.ids_mannheim.korap.query.spans;
+
+/* Inspired by NearSpansOrdered
+ *
+ * REIMPLEMENTATION
+ *
+ */
+
+import org.apache.lucene.index.AtomicReaderContext;
+import org.apache.lucene.index.Term;
+import org.apache.lucene.index.TermContext;
+import org.apache.lucene.util.ArrayUtil;
+import org.apache.lucene.util.Bits;
+import org.apache.lucene.search.spans.Spans;
+import org.apache.lucene.search.spans.SpanQuery;
+
+import java.io.IOException;
+import java.util.ArrayList;
+import java.util.Comparator;
+import java.util.HashSet;
+import java.util.LinkedList;
+import java.util.List;
+import java.util.Collection;
+import java.util.Map;
+import java.util.Set;
+
+import de.ids_mannheim.korap.query.SpanNextQuery;
+
+// Todo: Disable the option to discard payloads
+
+import java.util.*;
+import java.io.*;
+
+import org.slf4j.Logger;
+import org.slf4j.LoggerFactory;
+
+/** From Spans.java:
+ * Expert: an enumeration of span matches.  Used to implement span searching.
+ * Each span represents a range of term positions within a document.  Matches
+ * are enumerated in order, by increasing document number, within that by
+ * increasing start position and finally by increasing end position. */
+public class NextSpans extends Spans {
+    private boolean firstTime = true;
+    private boolean more = false;
+
+    // Initialize as invalid
+    private int matchDoc   = -1;
+    private int matchStart = -1;
+    private int matchEnd   = -1;
+
+    /** Indicates that all both spans have the same doc() */
+    private boolean inSameDoc = false;
+
+    // First span
+    private final Spans firstSpans;
+    private final Spans firstSpansByDoc;
+
+    // Second span
+    private final Spans secondSpans;
+    private final Spans secondSpansByDoc;
+
+    private SpanNextQuery query;
+
+    private List<byte[]> matchPayload;
+    private boolean collectPayloads = true;
+
+    private final static Logger log = LoggerFactory.getLogger(NextSpans.class);
+
+    // Constructor
+    public NextSpans (SpanNextQuery spanNextQuery,
+		      AtomicReaderContext context,
+		      Bits acceptDocs,
+		      Map<Term,TermContext> termContexts) throws IOException {
+	this(spanNextQuery, context, acceptDocs, termContexts, true);
+    };
+
+    // Constructor
+    public NextSpans (SpanNextQuery spanNextQuery,
+		      AtomicReaderContext context,
+		      Bits acceptDocs,
+		      Map<Term,TermContext> termContexts,
+		      boolean collectPayloads) throws IOException {
+
+	log.trace("Init NextSpans");
+
+	//	this.collectPayloads = collectPayloads;
+
+	// Init copies
+	matchPayload = new LinkedList<byte[]>();
+
+	firstSpans = spanNextQuery.firstClause().getSpans(
+	    context, acceptDocs, termContexts
+        );
+	firstSpansByDoc = firstSpans; // used in toSameDoc()
+
+	secondSpans = spanNextQuery.secondClause().getSpans(
+            context, acceptDocs, termContexts
+        );
+	secondSpansByDoc = secondSpans; // used in toSameDoc()
+
+	/*
+	if (DEBUG) {
+	    System.err.println("***");
+	    while (subSpans[i].next()) {
+		StringBuffer payloadString = new StringBuffer();
+		int docid = subSpans[i].doc();
+		System.err.println("Span: "+i+" Doc: " + docid + " with " + subSpans[i].start() + "-" + subSpans[i].end() + " || " + payloadString.toString());
+	    };
+	};
+	*/
+	query = spanNextQuery; // kept for toString() only.
+    };
+
+
+    /** Move to the next match, returning true iff any such exists. */
+    @Override
+    public boolean next () throws IOException {
+	log.trace("Next with doc {}", matchDoc);
+
+	// Check for init next
+	if (firstTime) {
+	    log.trace("First retrieval of NextSpans");
+	    firstTime = false;
+	    if (!firstSpans.next() || !secondSpans.next()) {
+		log.trace("No next in firstSpan nor in secondSpan");
+		more = false;
+		return false;
+	    };
+	    log.trace("Spans are initialized");
+	    more = true;
+	};
+
+	//	if (collectPayloads)
+	    matchPayload.clear();
+
+	return advance();
+    };
+
+
+    /** Skips to the first match beyond the current, whose document number is
+     * greater than or equal to <i>target</i>. <p>Returns true iff there is such
+     * a match.  <p>Behaves as if written: <pre class="prettyprint">
+     *   boolean skipTo(int target) {
+     *     do {
+     *       if (!next())
+     *         return false;
+     *     } while (target > doc());
+     *     return true;
+     *   }
+     * </pre>
+     * Most implementations are considerably more efficient than that.
+     */
+    public boolean skipTo (int target) throws IOException {
+	log.trace("skipTo {}", target);
+
+	// Check for init next
+	if (firstTime) {
+	    firstTime = false;
+	    if (!firstSpans.next() && !secondSpans.next()) {
+		more = false;
+		return false;
+	    };
+	    more = true;
+	}
+
+	// There are more spans, but the doc has to be skipped to target
+	// Warning: This only skips firstSpans!
+	//          Maybe that's wrong ...
+	else if (more && (firstSpans.doc() < target)) {
+	    if (firstSpans.skipTo(target)) {
+		inSameDoc = false;
+	    }
+
+	    else {
+		more = false;
+		return false;
+	    };
+	};
+
+	//	if (collectPayloads)
+	    matchPayload.clear();
+
+	return advance();
+    };
+
+
+    /** Advance the subSpans to the same document */
+    private boolean toSameDoc() throws IOException {
+	log.trace("toSameDoc");
+
+	if (firstSpansByDoc.doc() < secondSpansByDoc.doc()) {
+	    if (!firstSpansByDoc.skipTo(secondSpansByDoc.doc())) {
+		more = false;
+		inSameDoc = false;
+		return false;
+	    };
+	}
+	else if (firstSpansByDoc.doc() > secondSpansByDoc.doc()) {
+	    if (!secondSpansByDoc.skipTo( firstSpansByDoc.doc() )) {
+		more = false;
+		inSameDoc = false;
+		return false;
+	    };
+	};
+	inSameDoc = true;
+	return true;
+    };
+
+
+    /** Advances the subSpans to just after an ordered match with a minimum slop
+     * that is smaller than the slop allowed by the SpanNearQuery.
+     * @return true iff there is such a match.
+     */
+    private boolean advance() throws IOException {
+	log.trace("advance");
+	boolean match = false;
+
+	// There are more spans, and both spans are either in the
+	// same doc or can be forwarded to the same doc.
+	while (more && (inSameDoc || toSameDoc())) {
+
+	    log.trace("More spans in the same Doc: {}", firstSpansByDoc.doc());
+	    
+	    /* spans are in the same doc and in the correct order next to each other */
+	    if (match()) {
+
+		// start and end position of last span
+		matchStart = firstSpans.start();
+		matchEnd = secondSpans.end();
+
+		log.trace("Matching: {}-{}", matchStart, matchEnd);
+
+		log.trace("Check for payloads");
+
+
+		//		if (collectPayloads) {
+		    log.trace("copy payloads");
+
+		    if (firstSpans.isPayloadAvailable()) {
+			Collection<byte[]> payload = firstSpans.getPayload();
+			log.trace("Found {} payloads in firstSpans", payload.size());
+			matchPayload.addAll(payload);
+		    };
+		    if (secondSpans.isPayloadAvailable()) {
+			Collection<byte[]> payload = secondSpans.getPayload();
+			log.trace("Found {} payloads in secondSpans", payload.size());
+			matchPayload.addAll(payload);
+		    };
+		    //		};
+
+		log.trace("=> MATCH");
+		match = true;
+		break;
+	    };
+	};
+
+	log.trace("Forward secondSpans");
+	if (!secondSpans.next()) {
+	    log.trace("No more secondSpans");
+	    more = false;
+	};
+	inSameDoc = false;
+	return match;
+    };
+
+
+    /** Returns the document number of the current match.  Initially invalid. */
+    @Override
+    public int doc () {
+	return matchDoc;
+    };
+
+    /** Returns the start position of the current match.  Initially invalid. */
+    @Override
+    public int start () {
+	return matchStart;
+    };
+
+    /** Returns the end position of the current match.  Initially invalid. */
+    @Override
+    public int end () {
+	return matchEnd;
+    };
+
+    /**
+     * Returns the payload data for the current span.
+     * This is invalid until {@link #next()} is called for
+     * the first time.
+     * This method must not be called more than once after each call
+     * of {@link #next()}. However, most payloads are loaded lazily,
+     * so if the payload data for the current position is not needed,
+     * this method may not be called at all for performance reasons. An ordered
+     * SpanQuery does not lazy load, so if you have payloads in your index and
+     * you do not want ordered SpanNearQuerys to collect payloads, you can
+     * disable collection with a constructor option.<br>
+     * <br>
+     * Note that the return type is a collection, thus the ordering should not be relied upon.
+     * <br/>
+     * @lucene.experimental
+     *
+     * @return a List of byte arrays containing the data of this payload, otherwise null if isPayloadAvailable is false
+     * @throws IOException if there is a low-level I/O error
+     */
+    // public abstract Collection<byte[]> getPayload() throws IOException;
+    @Override
+    public Collection<byte[]> getPayload() throws IOException {
+	log.trace("Payload is requested with payload count {}", matchPayload.size());
+	return matchPayload;
+    };
+    
+
+    /**
+     * Checks if a payload can be loaded at this position.
+     * <p/>
+     * Payloads can only be loaded once per call to
+     * {@link #next()}.
+     *
+     * @return true if there is a payload available at this position that can be loaded
+     */
+    @Override
+    public boolean isPayloadAvailable() {
+	log.trace("Check for payload emptyness: {}", matchPayload.isEmpty());
+
+	return matchPayload.isEmpty() == false;
+    };
+
+
+    // Todo: This may be in the wrong version
+    @Override
+    public long cost() {
+	return Math.min(firstSpans.cost(), secondSpans.cost());
+    };
+
+
+    @Override
+    public String toString() {
+	return getClass().getName() + "("+query.toString()+")@"+
+	    (firstTime?"START":(more?(doc()+":"+start()+"-"+end()):"END"));
+    };
+
+
+    public boolean match () throws IOException {
+	matchDoc = firstSpans.doc();
+	log.trace("Check for next match");
+
+	byte check;
+	while (inSameDoc && ((check = docNext(firstSpans, secondSpans)) != (byte) 0)) {
+
+	    log.trace("There's no match");
+
+	    if ((check == (byte) -1) && !secondSpans.next()) {
+		log.trace("No more secondSpans");
+		inSameDoc = false;
+		more = false;
+		break;
+	    }
+	    else if (check == (byte) 1 && !firstSpans.next()) {
+		log.trace("No more firstSpans");
+		inSameDoc = false;
+		more = false;
+		break;
+	    }
+	    else if (matchDoc != secondSpans.doc()) {
+		log.trace("secondSpans has another doc");
+		inSameDoc = false;
+		break;
+	    };
+	};
+	return inSameDoc;
+    };
+
+
+    /** Check whether two Spans in the same document are ordered.
+     * @return true iff spans1 starts before spans2
+     *              or the spans start at the same position,
+     *              and spans1 ends before spans2.
+     */
+    static final byte docNext (Spans spans1, Spans spans2) {
+	// check does
+	int start1 = spans1.start();
+	int start2 = spans2.start();
+
+	//	boolean val = (start1 == start2) ? (spans1.end() < spans2.end()) : (start1 < start2);
+	byte val;
+	if (start1 >= start2) {
+	    val = (byte) -1;
+	}
+	else {
+	    int end1 = spans1.end();
+	    if (end1 == start2) {
+		val = (byte) 0;
+	    }
+	    else if (end1 > start2) {
+		val = (byte) -1;
+	    }
+	    else {
+		val = (byte) 1;
+	    };
+	}
+	// -1: forward secondSpans
+	// 1: forward firstSpans
+
+	log.trace("{}-{} next to {}-{}", start1, spans1.end(), start2, spans2.end());
+	log.trace("docSpansOrdered: {}", val);
+
+	return val;
+    };
+};
diff --git a/trunk/src/main/java/de/ids_mannheim/korap/query/spans/WithinSpans.java b/trunk/src/main/java/de/ids_mannheim/korap/query/spans/WithinSpans.java
new file mode 100644
index 0000000..a2e4b86
--- /dev/null
+++ b/trunk/src/main/java/de/ids_mannheim/korap/query/spans/WithinSpans.java
@@ -0,0 +1,718 @@
+package de.ids_mannheim.korap.query.spans;
+
+import org.apache.lucene.index.AtomicReaderContext;
+import org.apache.lucene.index.Term;
+import org.apache.lucene.index.TermContext;
+import org.apache.lucene.util.ArrayUtil;
+import org.apache.lucene.util.Bits;
+import org.apache.lucene.search.spans.Spans;
+import org.apache.lucene.search.spans.SpanQuery;
+import org.apache.lucene.search.DocIdSetIterator;
+
+import java.nio.ByteBuffer;
+
+import java.io.IOException;
+import java.util.ArrayList;
+import java.util.Comparator;
+import java.util.HashSet;
+import java.util.LinkedList;
+import java.util.List;
+import java.util.Collection;
+import java.util.Map;
+import java.util.Set;
+
+import de.ids_mannheim.korap.query.SpanWithinQuery;
+import de.ids_mannheim.korap.query.spans.KorapLongSpan;
+
+import org.slf4j.Logger;
+import org.slf4j.LoggerFactory;
+
+import java.util.*;
+import java.io.*;
+
+/*
+<a>x<b>y<c>z[1]</c>z[2]</b>z[3]</a>
+
+Erst:
+a mit ?
+-> fetch empty
+-> [].next -> 1
+=> match!
+-> speicher [1]
+a mit ?
+-> fetch gecheckt! (WIE MERKE ICH MIR DAS?)
+-> [].next -> 1
+=> match!
+-> speicher [2]
+a mit [3]
+=> match!
+-> speicher [3]
+b mit ?
+-> fetch [1]
+=> match!
+-> wenn [1].end <= b.end
+   -> speicher [1]
+b mit ?
+-> fetch [2]
+=> match!
+-> wenn [2].end <= b.end
+   -> speicher [2]
+
+Speicher: start, end, payload, wrapStart, wrapEnd
+
+Problem: Es ist nicht garantiert, dass bei
+<a><b><c>x</c>y</b>z</a>
+die Wrapreihenfolge a,b,c rauskommt!
+*/
+
+public class WithinSpans extends Spans {
+    private boolean firstTime = true;
+    private boolean more = false;
+
+    // Initialize as invalid
+    private int matchDoc   = -1;
+    private int matchStart = -1;
+    private int matchEnd   = -1;
+
+    /** Indicates that the wrap and the embedded spans are in the same doc */
+    private boolean inSameDoc = false;
+    private int wrapDoc;
+    private int embeddedDoc;
+    private int wrapStart, wrapEnd, embeddedStart, embeddedEnd;
+    private Collection<byte[]> embeddedPayload;
+
+    // Wrap span
+    private final Spans wrapSpans;
+    private final Spans wrapSpansByDoc; // Necessary?
+
+    // Embedded span
+    private final Spans embeddedSpans;
+    private final Spans embeddedSpansByDoc;
+
+    private SpanWithinQuery query;
+
+    private LinkedList<KorapLongSpan> spanStore1, spanStore2;
+
+    private List<byte[]> matchPayload;
+
+    private short flag;
+
+    private final Logger log = LoggerFactory.getLogger(WithinSpans.class);
+
+    // Constructor
+    public WithinSpans (SpanWithinQuery spanWithinQuery,
+			AtomicReaderContext context,
+			Bits acceptDocs,
+			Map<Term,TermContext> termContexts,
+			short flag) throws IOException {
+
+	log.trace("Init WithinSpans");
+
+	// Init copies
+	this.matchPayload = new LinkedList<byte[]>();
+
+	// Get span
+	this.wrapSpans = spanWithinQuery.wrap().getSpans(context, acceptDocs, termContexts);
+	this.wrapSpansByDoc = wrapSpans; // used in toSameDoc()
+
+	this.embeddedSpans = spanWithinQuery.embedded().getSpans(context, acceptDocs, termContexts);
+	this.embeddedSpansByDoc = embeddedSpans; // used in toSameDoc()
+
+	this.flag = flag;
+
+	this.spanStore1 = new LinkedList<KorapLongSpan>();
+	this.spanStore2 = new LinkedList<KorapLongSpan>();
+	
+	this.query = spanWithinQuery; // kept for toString() only.
+    };
+
+
+    /** Move to the next match, returning true iff any such exists. */
+    @Override
+    public boolean next () throws IOException {
+	log.trace("Next with doc {}", matchDoc);
+
+	// Check for init next
+	if (firstTime) {
+	    firstTime = false;
+	    if (!embeddedSpans.next() || !wrapSpans.next()) {
+		log.trace("No next in firstSpan nor in secondSpan 1");
+		more = false;
+		return false;
+	    };
+	    log.trace("Spans are initialized");
+	    more = true;
+	    wrapStart = wrapSpans.start();
+	    wrapEnd = wrapSpans.end();
+	    wrapDoc = matchDoc = wrapSpans.doc();
+
+	    embeddedStart = embeddedSpans.start();
+	    embeddedEnd = embeddedSpans.end();
+	    embeddedDoc = embeddedSpans.doc();
+
+	    if (embeddedSpans.isPayloadAvailable()) {
+		Collection<byte[]> payload = embeddedSpans.getPayload();
+		embeddedPayload = new ArrayList<byte[]>(payload.size());
+		embeddedPayload.addAll(payload);
+	    };
+
+	    log.trace("Init spans: {}", _actPos());
+
+	    if (embeddedDoc == matchDoc) {
+		inSameDoc = true;
+		log.trace("Is now inSameDoc");
+	    }
+	    else {
+		log.trace("Is not inSameDoc");
+	    };
+	    log.trace("Next with doc {} (wrap) and {} (embedded)", wrapDoc, embeddedDoc);
+	};
+
+	matchPayload.clear();
+	return advanceAfterCheck();
+    };
+
+
+    /** Advances the subSpans to just after a within match.
+     * @return true iff there is such a match.
+     */
+    private boolean advanceAfterCheck() throws IOException {
+	log.trace("advanceAfterChecked inSameDoc: {} and more: {}", inSameDoc, more);
+	log.trace("advanceAfterCheck with doc {} (wrap) and {} (embedded)", wrapDoc, embeddedDoc);
+
+	// There are more spans, and both spans are either in the
+	// same doc or can be forwarded to the same doc.
+	while (more && (inSameDoc || toSameDoc())) {
+
+	    log.trace("There are more spans in doc {}", embeddedDoc);
+	    
+	    /* spans are in the same doc */
+	    if (within()) {
+		return true;
+	    }
+	    else {
+		log.trace("No within");
+	    };
+	};
+
+	log.trace("No more matches");
+
+	return false; // no more matches
+    };
+
+
+    /** Advance the subSpans to the same document */
+    private boolean toSameDoc () throws IOException {
+	log.trace("toSameDoc");
+
+	/*
+	wrapDoc = wrapSpansByDoc.doc();
+	embeddedDoc = embeddedSpansByDoc.doc();
+
+	*/
+
+	if (wrapDoc != embeddedDoc) {
+	    log.trace("Docs not identical: {} vs {}", wrapDoc, embeddedDoc);
+
+	    spanStore1.clear(); // = new LinkedList<KorapLongSpan>();
+	    spanStore2.clear(); // = new LinkedList<KorapLongSpan>();
+
+	    if (wrapDoc < embeddedDoc) {
+		log.trace("Skip wrap from {} to {}", wrapDoc, embeddedDoc);
+		if (!wrapSpansByDoc.skipTo(embeddedDoc)) {
+		    more = false;
+		    inSameDoc = false;
+		    return false;
+		};
+		wrapDoc = wrapSpans.doc();
+	    }
+	    else if (wrapDoc > embeddedDoc) {
+		log.trace("Skip embedded from {} to {}", embeddedSpans.doc(), wrapDoc);
+		//		if (!embeddedSpansByDoc.skipTo( wrapDoc )) {
+		if (wrapDoc != embeddedSpans.doc()) {
+		    if (embeddedSpans.doc() == DocIdSetIterator.NO_MORE_DOCS || !embeddedSpans.skipTo( wrapDoc )) {
+			more = false;
+			inSameDoc = false;
+			return false;
+		    };
+		}
+		else {
+		    _add_current();
+		    //		    embeddedDoc = embeddedSpans.doc();
+		};
+	    };
+	}
+	else {
+	    log.trace("Docs identical");
+	};
+	embeddedStart = embeddedSpans.start();
+	embeddedEnd = embeddedSpans.end();
+	log.trace("The new embedded start is {}-{}", embeddedStart, embeddedEnd);
+	inSameDoc = true;
+	return true;
+    };
+
+
+    /** Skips to the first match beyond the current, whose document number is
+     * greater than or equal to <i>target</i>. <p>Returns true iff there is such
+     * a match.  <p>Behaves as if written: <pre class="prettyprint">
+     *   boolean skipTo(int target) {
+     *     do {
+     *       if (!next())
+     *         return false;
+     *     } while (target > doc());
+     *     return true;
+     *   }
+     * </pre>
+     * Most implementations are considerably more efficient than that.
+     */
+    public boolean skipTo (int target) throws IOException {
+	log.trace("skipTo {}", target);
+
+	// Check for init next
+	if (firstTime) {
+	    firstTime = false;
+	    if (!embeddedSpans.next() || !wrapSpans.next()) {
+		log.trace("No next in firstSpan nor in secondSpan 2");
+		more = false;
+		return false;
+	    };
+	    more = true;
+	    wrapStart = wrapSpans.start();
+	    wrapEnd = wrapSpans.end();
+	    wrapDoc = embeddedSpans.doc();
+	    embeddedStart = embeddedSpans.start();
+	    embeddedEnd = embeddedSpans.end();
+	    embeddedDoc = embeddedSpans.doc();
+	}
+
+	/*
+	  See NextSpans for the same problem!
+	  This should be dealt with in toSameDoc!!!
+	 */
+	else if (more && (embeddedSpans.doc() < target)) {
+	    if (embeddedSpans.skipTo(target)) {
+		inSameDoc = false;
+		embeddedDoc = target;
+	    }
+
+	    // Can't be skipped to target
+	    else {
+		more = false;
+		return false;
+	    };
+	};
+
+	matchPayload.clear();
+	return advanceAfterCheck();
+    };
+
+    private String _actPos () {
+	StringBuilder sb = new StringBuilder();
+	sb.append("<").append(wrapStart).append('-').append(wrapEnd).append('>');
+	sb.append(embeddedStart).append('-').append(embeddedEnd);
+	sb.append("</>");
+	return sb.toString();
+    };
+
+
+    private boolean within () throws IOException {
+	log.trace("within");
+	
+	while (more && inSameDoc) {
+
+	    // Case 1-5
+	    // Case 1
+	    //     |---|
+	    // |-|
+	    // Case 2
+	    //   |---|
+	    // |-|
+	    // Case 3
+	    //   |---|
+	    // |---|
+	    // Case 4
+	    //   |-|
+	    // |---|
+	    // Case 5
+	    //  |-|"
+	    // |---|
+	    if (wrapStart > embeddedStart) {
+		log.trace("[Case] 1-5 with {}", _actPos());
+
+		if (this.fetchNext()) {
+		    continue;
+		};
+
+		// Forward wrapSpan
+		if (wrapSpans.next()) {
+		    wrapDoc = wrapSpans.doc();
+		    if (this.toSameDoc()) {
+			wrapStart = wrapSpans.start();
+			wrapEnd = wrapSpans.end();
+			continue;
+		    };
+		};
+
+		this.more = false;
+		this.inSameDoc = false;
+		return false;
+	    };
+
+	    // Get wrapEnd
+	    // wrapEnd = wrapSpans.end();
+
+	    KorapLongSpan embedded = new KorapLongSpan();
+	    embedded.start = embeddedStart;
+	    embedded.end = embeddedEnd;
+	    embedded.doc = embeddedDoc;
+	    if (embeddedPayload != null)
+		embedded.payload = embeddedPayload;
+
+	    this.spanStore1.add(embedded);
+	    log.trace("pushed to spanStore1: {}", embedded.toString());
+
+
+	    // Case 12
+	    // |---|
+	    //     |-|
+	    // Case 13
+	    // |---|
+	    //       |-|
+	    if (wrapEnd <= embeddedStart) {
+		log.trace("[Case] 12-13 with {}", _actPos());
+
+		// Copy content of spanStores
+		if (!spanStore1.isEmpty()) {
+		    log.trace("First store is not empty - copy to second store!");
+		    spanStore2.addAll(0, (LinkedList<KorapLongSpan>) spanStore1.clone());
+		    spanStore1.clear();
+		    log.trace("Second store is now: {}", spanStore2.toString());
+		};
+
+		// Forward wrapSpan
+		log.trace("Try to forward wrapspan");
+
+		if (wrapSpans.next()) {
+		    wrapDoc = wrapSpans.doc();
+		    log.trace("wrapDoc is now {} while embeddedDoc is {}", wrapDoc, embeddedDoc);
+		    if (this.toSameDoc()) {
+			wrapStart = wrapSpans.start();
+			wrapEnd = wrapSpans.end();
+			if (fetchTwoNext())
+			    continue;
+		    };
+		}
+		else {
+		    log.trace("Unable to forward wrapspan");
+		};
+
+		this.inSameDoc = false;
+		this.more = false;
+		return false;
+	    }
+
+
+	    // Case 6 - 8
+	    else if (wrapStart == embeddedStart) {
+
+		// Case 6
+		// |---|
+		// |-|
+		if (wrapEnd > embeddedEnd) {
+		    log.trace("[Case] 6 with {}", _actPos());
+
+		    // neither match nor endWith
+		    if (this.flag < (short) 2) {
+			_setMatch(embedded);
+			log.trace("MATCH1!! with {}", _actPos());
+			fetchTwoNext();
+			return true;
+		    };
+
+		    fetchTwoNext();
+		    continue;
+		}
+
+		// Case 7
+		// |---|
+		// |---|
+		else if (wrapEnd == embeddedEnd) {
+		    log.trace("[Case] 7 with {}", _actPos());
+
+		    _setMatch(embedded);
+		    log.trace("MATCH2!! with {}", _actPos());
+		    fetchTwoNext();
+		    return true;
+		};
+
+		// Case 8
+		// |-|
+		// |---|
+		// wrapEnd < embeddedEnd
+		log.trace("[Case] 8 with {}", _actPos());
+		fetchTwoNext();
+		continue;
+	    };
+
+	    // Case 9-11
+	    // wrapStart < wrapEnd
+
+	    // Case 9
+	    // |---|
+	    //  |-|
+	    if (wrapEnd > embeddedEnd) {
+		log.trace("[Case] 9 with {}", _actPos());
+
+		// neither match nor endWith
+		if (this.flag == (short) 0) {
+		    _setMatch(embedded);
+		    log.trace("MATCH3!! with {}", _actPos());
+		    fetchTwoNext();
+		    return true;
+		};
+
+		fetchTwoNext();
+		continue;
+	    }
+	    // Case 10
+	    // |---|
+	    //   |-|
+	    else if (wrapEnd == embeddedEnd) {
+		log.trace("[Case] 10 with {}", _actPos());
+
+		// neither match nor endWith
+		if (this.flag == (short) 0 || this.flag == (short) 2) {
+		    _setMatch(embedded);
+		    log.trace("MATCH4!! with {}", _actPos());
+		    fetchTwoNext();
+		    return true;
+		};
+
+		fetchTwoNext();
+		continue;
+	    };
+
+	    // Case 11
+	    // |---|
+	    //   |---|
+	    // wrapEnd < embeddedEnd
+	    log.trace("[Case] 11 with {}", _actPos());
+	    fetchTwoNext();
+	    continue;
+	};
+
+	this.more = false;
+	return false;
+    };
+
+
+    private boolean fetchNext () throws IOException {
+
+	// Fetch span from first store
+	if (spanStore1.isEmpty()) {
+	    log.trace("First store is empty");
+	    return fetchTwoNext();
+	};
+
+	KorapLongSpan current = spanStore1.removeFirst();
+	log.trace("Fetch from first store: {}", current.toString());
+
+	embeddedStart = current.start;
+	embeddedEnd = current.end;
+	embeddedDoc = current.doc;
+	if (current.payload != null)
+	    embeddedPayload = current.payload;
+
+	return true;
+    };
+
+
+    private boolean fetchTwoNext () throws IOException {
+
+	// Fetch span from second store
+	if (spanStore2.isEmpty()) {
+	    log.trace("Second store is empty");
+
+	    // Forward spans
+	    if (this.embeddedSpans.next()) {
+		log.trace("Forwarded embeddedSpans");
+
+		if (this.embeddedSpans.doc() != wrapDoc && !spanStore1.isEmpty()) {
+
+		    log.trace("No docmatch and still stuff in store");
+		    log.trace("First store is not empty - copy to second store!");
+		    spanStore2.addAll(0, (LinkedList<KorapLongSpan>) spanStore1.clone());
+		    spanStore1.clear();
+
+		    _add_current();
+
+		    log.trace("Second store is now: {}", spanStore2.toString());
+		}
+		else {
+		    embeddedStart = embeddedSpans.start();
+		    embeddedEnd = embeddedSpans.end();
+		    embeddedDoc = embeddedSpans.doc();
+
+		    if (embeddedSpans.isPayloadAvailable()) {
+			Collection<byte[]> payload = embeddedSpans.getPayload();
+			// Maybe just clear
+			embeddedPayload = new ArrayList<byte[]>(payload.size());
+			embeddedPayload.addAll(payload);
+		    };
+
+		    return this.toSameDoc();
+		};
+	    }
+	    else {
+		log.trace("Forwarded embeddedSpans failed");
+	    };
+
+	    log.trace("EmbeddedDoc: " + embeddedDoc);
+
+	    // Forward wrapSpan
+	    log.trace("Try to forward wrapspan");
+	    if (wrapSpans.next()) {
+		wrapDoc = wrapSpans.doc();
+		if (this.toSameDoc()) {	    
+		    wrapStart = wrapSpans.start();
+		    wrapEnd = wrapSpans.end();
+
+		    log.trace("WrapSpan forwarded");
+
+		    // Copy content of spanStores
+		    if (!spanStore1.isEmpty()) {
+			log.trace("First store is not empty - copy to second store!");
+			spanStore2.addAll(0, (LinkedList<KorapLongSpan>) spanStore1.clone());
+			spanStore1.clear();
+			log.trace("Second store is now: {}", spanStore2.toString());
+		    };
+
+		    return this.fetchTwoNext();
+		};
+	    };
+
+	    // Don't know.
+	    log.trace("No more fetchNext()");
+
+	    more = false;
+	    return false;
+	};
+
+	KorapLongSpan current = spanStore2.removeFirst();
+	log.trace("Fetch from second store: {}", current.toString());
+
+	embeddedStart = current.start;
+	embeddedEnd = current.end;
+	embeddedDoc = current.doc;
+	embeddedPayload = current.payload;
+
+	return true;
+    };
+
+
+    /*
+TODO: Maybe ignore "embedded" parameter and use embeddedPayload directly
+     */
+    private void _setMatch (KorapLongSpan embedded) throws IOException {
+	matchStart = wrapStart;
+	matchEnd = wrapEnd;
+	matchDoc = embeddedDoc;
+	matchPayload.clear();
+
+	if (embedded.payload != null)
+	    matchPayload.addAll(embedded.payload);
+
+	if (wrapSpans.isPayloadAvailable()) {
+	    Collection<byte[]> payload = wrapSpans.getPayload();
+	    matchPayload.addAll(payload);
+	};
+    };
+
+
+    private void _add_current () throws IOException{
+	KorapLongSpan embedded = new KorapLongSpan();
+	embedded.start = embeddedSpans.start();
+	embedded.end = embeddedSpans.end();
+	embedded.doc = embeddedSpans.doc();
+
+	if (embeddedSpans.isPayloadAvailable()) {
+	    Collection<byte[]> payload = embeddedSpans.getPayload();
+	    embedded.payload = new ArrayList<byte[]>(payload.size());
+	    embedded.payload.addAll(payload);
+	};
+
+	this.spanStore2.add(embedded);	    
+	log.trace("pushed to spanStore2: {}", embedded.toString());  
+    };
+
+
+    /** Returns the document number of the current match.  Initially invalid. */
+    @Override
+    public int doc () {
+	return matchDoc;
+    };
+
+    /** Returns the start position of the embedding wrap.  Initially invalid. */
+    @Override
+    public int start () {
+	return matchStart;
+    };
+
+    /** Returns the end position of the embedding wrap.  Initially invalid. */
+    @Override
+    public int end () {
+	return matchEnd;
+    };
+
+    /**
+     * Returns the payload data for the current span.
+     * This is invalid until {@link #next()} is called for
+     * the first time.
+     * This method must not be called more than once after each call
+     * of {@link #next()}. However, most payloads are loaded lazily,
+     * so if the payload data for the current position is not needed,
+     * this method may not be called at all for performance reasons. An ordered
+     * SpanQuery does not lazy load, so if you have payloads in your index and
+     * you do not want ordered SpanNearQuerys to collect payloads, you can
+     * disable collection with a constructor option.<br>
+     * <br>
+     * Note that the return type is a collection, thus the ordering should not be relied upon.
+     * <br/>
+     * @lucene.experimental
+     *
+     * @return a List of byte arrays containing the data of this payload, otherwise null if isPayloadAvailable is false
+     * @throws IOException if there is a low-level I/O error
+     */
+    // public abstract Collection<byte[]> getPayload() throws IOException;
+    @Override
+    public Collection<byte[]> getPayload() throws IOException {
+	return matchPayload;
+    };
+    
+
+    /**
+     * Checks if a payload can be loaded at this position.
+     * <p/>
+     * Payloads can only be loaded once per call to
+     * {@link #next()}.
+     *
+     * @return true if there is a payload available at this position that can be loaded
+     */
+    @Override
+    public boolean isPayloadAvailable() {
+	return matchPayload.isEmpty() == false;
+    };
+
+    // Todo: This may be in the wrong version
+    @Override
+    public long cost() {
+	return Math.min(wrapSpans.cost(), embeddedSpans.cost());
+    };
+
+    @Override
+    public String toString() {
+	return getClass().getName() + "("+query.toString()+")@"+
+	    (firstTime?"START":(more?(doc()+":"+start()+"-"+end()):"END"));
+    };
+};
diff --git a/trunk/src/main/java/de/ids_mannheim/korap/query/wrap/SpanAlterQueryWrapper.java b/trunk/src/main/java/de/ids_mannheim/korap/query/wrap/SpanAlterQueryWrapper.java
new file mode 100644
index 0000000..ec2d254
--- /dev/null
+++ b/trunk/src/main/java/de/ids_mannheim/korap/query/wrap/SpanAlterQueryWrapper.java
@@ -0,0 +1,59 @@
+package de.ids_mannheim.korap.query.wrap;
+
+import de.ids_mannheim.korap.query.wrap.SpanRegexQueryWrapper;
+import de.ids_mannheim.korap.query.wrap.SpanSegmentQueryWrapper;
+import de.ids_mannheim.korap.query.wrap.SpanQueryWrapperInterface;
+
+import org.apache.lucene.search.spans.SpanQuery;
+import org.apache.lucene.search.spans.SpanTermQuery;
+import org.apache.lucene.search.spans.SpanOrQuery;
+import org.apache.lucene.index.Term;
+
+import java.util.*;
+
+public class SpanAlterQueryWrapper implements SpanQueryWrapperInterface {
+    private String field;
+    private SpanQuery query;
+    private List<SpanQuery> alternatives;
+
+    public SpanAlterQueryWrapper (String field) {
+	this.field = field;
+	this.alternatives = new ArrayList<>();
+    };
+
+    public SpanAlterQueryWrapper (String field, String ... terms) {
+	this.field = field;
+	this.alternatives = new ArrayList<>();
+	for (String term : terms) {
+	    this.alternatives.add(new SpanTermQuery(new Term(this.field, term)));
+	};
+    };
+
+    public SpanAlterQueryWrapper or (String term) {
+	this.alternatives.add(new SpanTermQuery(new Term(this.field, term)));
+	return this;
+    };
+
+    public SpanAlterQueryWrapper or (SpanQueryWrapperInterface term) {
+	this.alternatives.add( term.toQuery() );
+	return this;
+    };
+
+    public SpanAlterQueryWrapper or (SpanRegexQueryWrapper term) {
+	this.alternatives.add( term.toQuery() );
+	return this;
+    };
+
+    public SpanQuery toQuery() {
+	if (this.alternatives.size() == 1) {
+	    return (SpanQuery) this.alternatives.get(0);
+	};
+
+	Iterator<SpanQuery> clause = this.alternatives.iterator();
+	SpanOrQuery soquery = new SpanOrQuery( clause.next() );
+	while (clause.hasNext()) {
+	    soquery.addClause( clause.next() );
+	};
+	return (SpanQuery) soquery;
+    };
+};
diff --git a/trunk/src/main/java/de/ids_mannheim/korap/query/wrap/SpanClassQueryWrapper.java b/trunk/src/main/java/de/ids_mannheim/korap/query/wrap/SpanClassQueryWrapper.java
new file mode 100644
index 0000000..312c005
--- /dev/null
+++ b/trunk/src/main/java/de/ids_mannheim/korap/query/wrap/SpanClassQueryWrapper.java
@@ -0,0 +1,41 @@
+package de.ids_mannheim.korap.query.wrap;
+
+import org.apache.lucene.search.spans.SpanQuery;
+
+import de.ids_mannheim.korap.query.SpanClassQuery;
+import de.ids_mannheim.korap.query.wrap.SpanQueryWrapperInterface;
+
+import java.util.*;
+
+
+public class SpanClassQueryWrapper implements SpanQueryWrapperInterface {
+    private SpanQueryWrapperInterface subquery;
+    private byte number = (byte) 0;
+
+    public SpanClassQueryWrapper (SpanQueryWrapperInterface subquery, byte number) {
+	this.subquery = subquery;
+	this.number = number;
+    };
+
+    public SpanClassQueryWrapper (SpanQueryWrapperInterface subquery, short number) {
+	this.subquery = subquery;
+	this.number = (byte) number;
+    };
+
+    public SpanClassQueryWrapper (SpanQueryWrapperInterface subquery, int number) {
+	this.subquery = subquery;
+	this.number = (byte) number;
+    };
+
+    public SpanClassQueryWrapper (SpanQueryWrapperInterface subquery) {
+	this.subquery = subquery;
+	this.number = (byte) 0;
+    };
+
+    public SpanQuery toQuery () {
+	if (this.number == (byte) 0) {
+	    return new SpanClassQuery((SpanQuery) this.subquery.toQuery());
+	};
+	return new SpanClassQuery((SpanQuery) this.subquery.toQuery(), (byte) this.number);
+    };
+};
diff --git a/trunk/src/main/java/de/ids_mannheim/korap/query/wrap/SpanElementQueryWrapper.java b/trunk/src/main/java/de/ids_mannheim/korap/query/wrap/SpanElementQueryWrapper.java
new file mode 100644
index 0000000..acf0638
--- /dev/null
+++ b/trunk/src/main/java/de/ids_mannheim/korap/query/wrap/SpanElementQueryWrapper.java
@@ -0,0 +1,20 @@
+package de.ids_mannheim.korap.query.wrap;
+
+import org.apache.lucene.search.spans.SpanQuery;
+
+import de.ids_mannheim.korap.query.SpanElementQuery;
+import de.ids_mannheim.korap.query.wrap.SpanQueryWrapperInterface;
+
+public class SpanElementQueryWrapper implements SpanQueryWrapperInterface {
+    String element;
+    String field;
+
+    public SpanElementQueryWrapper (String field, String element) {
+	this.field = field;
+	this.element = element;
+    };
+
+    public SpanQuery toQuery () {
+	return (SpanQuery) new SpanElementQuery(this.field, this.element);
+    };
+};
diff --git a/trunk/src/main/java/de/ids_mannheim/korap/query/wrap/SpanMatchModifyQueryWrapper.java b/trunk/src/main/java/de/ids_mannheim/korap/query/wrap/SpanMatchModifyQueryWrapper.java
new file mode 100644
index 0000000..14bda8b
--- /dev/null
+++ b/trunk/src/main/java/de/ids_mannheim/korap/query/wrap/SpanMatchModifyQueryWrapper.java
@@ -0,0 +1,38 @@
+package de.ids_mannheim.korap.query.wrap;
+
+import org.apache.lucene.search.spans.SpanQuery;
+
+import de.ids_mannheim.korap.query.SpanMatchModifyQuery;
+import de.ids_mannheim.korap.query.wrap.SpanQueryWrapperInterface;
+
+import java.util.*;
+
+
+public class SpanMatchModifyQueryWrapper implements SpanQueryWrapperInterface {
+    private SpanQueryWrapperInterface subquery;
+    private byte number;
+
+    public SpanMatchModifyQueryWrapper (SpanQueryWrapperInterface subquery, byte number) {
+	this.subquery = subquery;
+	this.number = number;
+    };
+
+    public SpanMatchModifyQueryWrapper (SpanQueryWrapperInterface subquery, short number) {
+	this.subquery = subquery;
+	this.number = (byte) number;
+    };
+
+    public SpanMatchModifyQueryWrapper (SpanQueryWrapperInterface subquery, int number) {
+	this.subquery = subquery;
+	this.number = (byte) number;
+    };
+
+    public SpanMatchModifyQueryWrapper (SpanQueryWrapperInterface subquery) {
+	this.subquery = subquery;
+	this.number = (byte) 0;
+    };
+
+    public SpanQuery toQuery () {
+	return new SpanMatchModifyQuery(this.subquery.toQuery(), this.number);
+    };
+};
diff --git a/trunk/src/main/java/de/ids_mannheim/korap/query/wrap/SpanQuantifierQueryWrapper.java b/trunk/src/main/java/de/ids_mannheim/korap/query/wrap/SpanQuantifierQueryWrapper.java
new file mode 100644
index 0000000..521cb0a
--- /dev/null
+++ b/trunk/src/main/java/de/ids_mannheim/korap/query/wrap/SpanQuantifierQueryWrapper.java
@@ -0,0 +1,64 @@
+package de.ids_mannheim.korap.query.wrap;
+
+import java.util.*;
+
+import org.apache.lucene.index.Term;
+import org.apache.lucene.search.Query;
+
+import de.ids_mannheim.korap.query.wrap.SpanQueryWrapperInterface;
+import org.apache.lucene.search.spans.SpanQuery;
+
+public class SpanQuantifierQueryWrapper implements SpanQueryWrapperInterface {
+    private String field;
+
+    public SpanQuantifierQueryWrapper (String field) {
+	this.field = field;
+    };
+
+    public SpanQuery toQuery () {
+	return (SpanQuery) null;
+    };
+
+
+    /*
+
+Only support spans with minimal one occurrence and then
+flag spans with NOT_NECESSARY.
+This unfortunately means to support this in at least spanNextQuery
+Problem: Queries without context:
+
+[]*[s:tree]? -> matches everything!
+
+The any segment is special, it shuld be supported by a special
+spanNextQuery, where it adds a position (or more) to the matching span.
+spanNext(Query1, ANY)
+
+      API idea:
+      opt();
+      star();
+      plus();
+      occ(2);
+      occ(2, this.UNLIMITED);
+      occ(0, 4);
+      occ(5, 8);
+
+      Implementation idea:
+      This query should work similar to NextSpans with looking at all matching spans
+      in order per document, returning matching positions for all sequences in the boundary.
+      All actions should be translated to {x,y} boundaries.
+      ?     -> {0,1}
+      +     -> {1,UNL}
+      *     -> {0,UNL}
+      (2)   -> {2,2}
+      (,3)  -> {0,3}
+      (3,)  -> {3,UNL}
+      (3,4) -> {3,4}
+
+      oldSpanEnd = X;
+      For (i = 0; i < orderedSpans.length; i) {
+      # ...
+      };
+
+    */
+};
+
diff --git a/trunk/src/main/java/de/ids_mannheim/korap/query/wrap/SpanQueryWrapperInterface.java b/trunk/src/main/java/de/ids_mannheim/korap/query/wrap/SpanQueryWrapperInterface.java
new file mode 100644
index 0000000..a4b1fcb
--- /dev/null
+++ b/trunk/src/main/java/de/ids_mannheim/korap/query/wrap/SpanQueryWrapperInterface.java
@@ -0,0 +1,9 @@
+package de.ids_mannheim.korap.query.wrap;
+
+import org.apache.lucene.search.spans.SpanQuery;
+
+// Todo: Make this an abstract class to deal with regexes in a parent abstract class!
+
+public interface SpanQueryWrapperInterface {
+    public SpanQuery toQuery ();
+};
diff --git a/trunk/src/main/java/de/ids_mannheim/korap/query/wrap/SpanRegexQueryWrapper.java b/trunk/src/main/java/de/ids_mannheim/korap/query/wrap/SpanRegexQueryWrapper.java
new file mode 100644
index 0000000..8152a6f
--- /dev/null
+++ b/trunk/src/main/java/de/ids_mannheim/korap/query/wrap/SpanRegexQueryWrapper.java
@@ -0,0 +1,41 @@
+package de.ids_mannheim.korap.query.wrap;
+
+import org.apache.lucene.search.RegexpQuery;
+import org.apache.lucene.search.spans.SpanQuery;
+import org.apache.lucene.search.spans.SpanMultiTermQueryWrapper;
+import org.apache.lucene.util.automaton.RegExp;
+import org.apache.lucene.index.Term;
+
+import java.util.*;
+
+public class SpanRegexQueryWrapper {
+    private SpanQuery query;
+
+    public SpanRegexQueryWrapper (String field, String re) {
+	this(field, re, RegExp.ALL, false);
+    };
+
+    public SpanRegexQueryWrapper (String field, String re, int flags) {
+	this(field, re, flags, false);
+    };
+
+    public SpanRegexQueryWrapper (String field, String re, boolean caseinsensitive) {
+	this(field, re, RegExp.ALL, caseinsensitive);
+    };
+
+    public SpanRegexQueryWrapper (String field, String re, int flags, boolean caseinsensitive) {
+	if (caseinsensitive) {
+	    if (re.startsWith("s:")) {
+		re = re.replaceFirst("s:", "i:");
+	    };
+	    // TODO: This may break things like \N
+	    re = re.toLowerCase();
+	};
+	RegexpQuery requery = new RegexpQuery(new Term(field, re), flags);
+	query = new SpanMultiTermQueryWrapper<RegexpQuery>( requery );
+    };
+
+    public SpanQuery toQuery() {
+	return this.query;
+    };
+};
diff --git a/trunk/src/main/java/de/ids_mannheim/korap/query/wrap/SpanSegmentQueryWrapper.java b/trunk/src/main/java/de/ids_mannheim/korap/query/wrap/SpanSegmentQueryWrapper.java
new file mode 100644
index 0000000..b8d07bc
--- /dev/null
+++ b/trunk/src/main/java/de/ids_mannheim/korap/query/wrap/SpanSegmentQueryWrapper.java
@@ -0,0 +1,168 @@
+package de.ids_mannheim.korap.query.wrap;
+
+import java.util.*;
+
+import org.apache.lucene.index.Term;
+import org.apache.lucene.search.Query;
+import org.apache.lucene.search.spans.SpanQuery;
+import org.apache.lucene.search.spans.SpanTermQuery;
+import org.apache.lucene.search.spans.SpanNearQuery;
+import org.apache.lucene.search.spans.SpanNotQuery;
+import org.apache.lucene.search.spans.SpanOrQuery;
+import de.ids_mannheim.korap.query.wrap.SpanRegexQueryWrapper;
+
+/**
+ * @author Nils Diewald
+ * @version 0.01
+ *
+ * Creates a query object for segments, i.e. terms in a term vector
+ * sharing the same position. A SpanSegment can include simple string terms,
+ * regular expressions and alternatives. These elements can also be excluded.
+ */
+
+public class SpanSegmentQueryWrapper implements SpanQueryWrapperInterface {
+    public ArrayList<SpanQuery> inclusive;
+    public ArrayList<SpanQuery> exclusive;
+    private String field;
+
+    /**
+     * Constructor.
+     *
+     * @param field The field name
+     */
+    public SpanSegmentQueryWrapper (String field) {
+	this.field = field;
+	this.inclusive = new ArrayList<SpanQuery>();
+	this.exclusive = new ArrayList<SpanQuery>();
+    };
+
+    /**
+     * Constructor.
+     *
+     * @param field The field name
+     * @param terms An arbitrary number of terms
+     */
+    public SpanSegmentQueryWrapper (String field, String ... terms) {
+	this(field);
+	for (int i = 0; i < terms.length; i++) {
+	    this.inclusive.add((SpanQuery) new SpanTermQuery(new Term(field, terms[i])));
+	};
+    };
+
+    public SpanSegmentQueryWrapper (String field, SpanRegexQueryWrapper re) {
+	this(field);
+	this.inclusive.add((SpanQuery) re.toQuery());
+    };
+
+    public SpanSegmentQueryWrapper (String field, SpanAlterQueryWrapper alter) {
+	this(field);
+	this.inclusive.add((SpanQuery) alter.toQuery());
+    };
+
+    public SpanSegmentQueryWrapper (String field, SpanSegmentQueryWrapper ssq) {
+	this(field);
+
+	Iterator<SpanQuery> clause = ssq.inclusive.iterator();
+	while (clause.hasNext()) {
+	    this.inclusive.add( (SpanQuery) clause.next().clone() );
+	};
+
+	clause = ssq.exclusive.iterator();
+	while (clause.hasNext()) {
+	    this.exclusive.add( (SpanQuery) clause.next().clone() );
+	};
+    };
+
+    public SpanSegmentQueryWrapper with (String term) {
+	this.inclusive.add(new SpanTermQuery(new Term(field, term)));
+	return this;
+    };
+
+    public SpanSegmentQueryWrapper with (SpanRegexQueryWrapper re) {
+	this.inclusive.add((SpanQuery) re.toQuery());
+	return this;
+    };
+
+    public SpanSegmentQueryWrapper with (SpanAlterQueryWrapper alter) {
+	this.inclusive.add((SpanQuery) alter.toQuery());
+	return this;
+    };
+
+    public SpanSegmentQueryWrapper without (String term) {
+	this.exclusive.add(new SpanTermQuery(new Term(field, term)));
+	return this;
+    };
+
+    public SpanSegmentQueryWrapper without (SpanRegexQueryWrapper re) {
+	this.exclusive.add((SpanQuery) re.toQuery());
+	return this;
+    };
+
+    public SpanSegmentQueryWrapper without (SpanAlterQueryWrapper alter) {
+	this.exclusive.add((SpanQuery) alter.toQuery());
+	return this;
+    };
+
+    public SpanQuery toQuery () {
+	if (this.inclusive.size() + this.exclusive.size() == 0) {
+	    return null;
+	}
+	else if (this.inclusive.size() >= 1 && this.exclusive.size() >= 1) {
+	    return (SpanQuery) new SpanNotQuery(
+		this._listToQuery(this.inclusive),
+	        this._listToOrQuery(this.exclusive)
+            );
+	}
+
+	else if (this.inclusive.size() == 0 && this.exclusive.size() >= 1) {
+	    return (SpanQuery) new SpanNotQuery(
+		new SpanTermQuery(new Term(this.field, "T")),
+	        this._listToOrQuery(this.exclusive)
+            );
+	}
+
+	else if (this.inclusive.size() >= 1 && this.exclusive.size() == 0) {
+	    return (SpanQuery) this._listToQuery(this.inclusive);
+	};
+
+	return (SpanQuery) null;
+    };
+
+
+    private SpanQuery _listToQuery (ArrayList<SpanQuery> list) {
+	SpanQuery query = list.get(0);
+
+	for (int i = 1; i < list.size(); i++) {
+	    query = new SpanNearQuery(
+	        new SpanQuery[] {
+	            query,
+	            list.get(i)
+	        },
+	        -1,
+	        false,
+		false
+            );
+	};
+
+	return (SpanQuery) query;
+    };
+
+
+    private SpanQuery _listToOrQuery (ArrayList<SpanQuery> list) {
+	if (list.size() == 1) {
+	    return (SpanQuery) list.get(0);
+	};
+
+	Iterator<SpanQuery> clause = list.iterator();
+	SpanOrQuery soquery = new SpanOrQuery( clause.next() );
+	while (clause.hasNext()) {
+	    soquery.addClause( clause.next() );
+	};
+	return (SpanQuery) soquery;
+    };
+
+    public SpanSegmentQueryWrapper clone () {
+	return new SpanSegmentQueryWrapper(this.field, this);
+    };
+};
+
diff --git a/trunk/src/main/java/de/ids_mannheim/korap/query/wrap/SpanSequenceQueryWrapper.java b/trunk/src/main/java/de/ids_mannheim/korap/query/wrap/SpanSequenceQueryWrapper.java
new file mode 100644
index 0000000..977b556
--- /dev/null
+++ b/trunk/src/main/java/de/ids_mannheim/korap/query/wrap/SpanSequenceQueryWrapper.java
@@ -0,0 +1,101 @@
+package de.ids_mannheim.korap.query.wrap;
+
+import java.util.*;
+import de.ids_mannheim.korap.query.SpanNextQuery;
+import de.ids_mannheim.korap.query.wrap.SpanSegmentQueryWrapper;
+import de.ids_mannheim.korap.query.wrap.SpanRegexQueryWrapper;
+
+import org.apache.lucene.index.Term;
+import org.apache.lucene.search.spans.SpanQuery;
+import org.apache.lucene.search.spans.SpanTermQuery;
+import de.ids_mannheim.korap.query.wrap.SpanQueryWrapperInterface;
+
+/**
+ * @author Nils Diewald
+ */
+public class SpanSequenceQueryWrapper implements SpanQueryWrapperInterface {
+    private String field;
+    public ArrayList<SpanQuery> segments;
+
+    public SpanSequenceQueryWrapper (String field) {
+	this.field = field;
+	this.segments = new ArrayList<SpanQuery>();
+    };
+
+    public SpanSequenceQueryWrapper (String field, String ... terms) {
+	this(field);
+	for (int i = 0; i < terms.length; i++) {
+	    this.segments.add((SpanQuery) new SpanTermQuery(new Term(field, terms[i])));
+	};
+    };
+
+    public SpanSequenceQueryWrapper (String field, SpanQuery sq) {
+	this(field);
+	this.segments.add((SpanQuery) sq);
+    };
+
+    public SpanSequenceQueryWrapper (String field, SpanQueryWrapperInterface sswq) {
+	this(field);
+	this.segments.add((SpanQuery) sswq.toQuery());
+    };
+
+    public SpanSequenceQueryWrapper (String field, SpanRegexQueryWrapper re) {
+	this(field);
+	this.segments.add((SpanQuery) re.toQuery());
+    };
+
+    public SpanQuery get (int index) {
+	return this.segments.get(index);
+    };
+
+    public void set (int index, SpanQuery sq) {
+	this.segments.set(index, sq);
+    };
+
+    public SpanSequenceQueryWrapper append (String term) {
+	this.segments.add((SpanQuery) new SpanTermQuery(new Term(field, term)));
+	return this;
+    };
+
+    public SpanSequenceQueryWrapper append (SpanQueryWrapperInterface ssq) {
+	this.segments.add((SpanQuery) ssq.toQuery());
+	return this;
+    };
+
+    public SpanSequenceQueryWrapper append (SpanRegexQueryWrapper srqw) {
+	this.segments.add((SpanQuery) srqw.toQuery());
+	return this;
+    };
+
+    public SpanSequenceQueryWrapper prepend (String term) {
+	this.segments.add(0, (SpanQuery) new SpanTermQuery(new Term(field, term)));
+	return this;
+    };
+
+    public SpanSequenceQueryWrapper prepend (SpanSegmentQueryWrapper ssq) {
+	this.segments.add(0, (SpanQuery) ssq.toQuery());
+	return this;
+    };
+
+    public SpanSequenceQueryWrapper prepend (SpanRegexQueryWrapper re) {
+	this.segments.add(0, (SpanQuery) re.toQuery());
+	return this;
+    };
+
+    public SpanQuery toQuery () {
+	if (this.segments.size() == 0) {
+	    return (SpanQuery) null;
+	};
+
+	SpanQuery query = this.segments.get(0);
+
+	for (int i = 1; i < this.segments.size(); i++) {
+	    query = new SpanNextQuery(
+		query,
+	        this.segments.get(i),
+		false
+            );
+	};
+	return (SpanQuery) query;
+    };
+};
diff --git a/trunk/src/main/java/de/ids_mannheim/korap/query/wrap/SpanWithinQueryWrapper.java b/trunk/src/main/java/de/ids_mannheim/korap/query/wrap/SpanWithinQueryWrapper.java
new file mode 100644
index 0000000..33d7386
--- /dev/null
+++ b/trunk/src/main/java/de/ids_mannheim/korap/query/wrap/SpanWithinQueryWrapper.java
@@ -0,0 +1,27 @@
+package de.ids_mannheim.korap.query.wrap;
+
+import de.ids_mannheim.korap.query.SpanWithinQuery;
+import de.ids_mannheim.korap.query.wrap.SpanSegmentQueryWrapper;
+import de.ids_mannheim.korap.query.wrap.SpanRegexQueryWrapper;
+import de.ids_mannheim.korap.query.wrap.SpanSequenceQueryWrapper;
+import de.ids_mannheim.korap.query.wrap.SpanQueryWrapperInterface;
+
+import java.util.*;
+
+import org.apache.lucene.search.spans.SpanQuery;
+
+
+
+public class SpanWithinQueryWrapper implements SpanQueryWrapperInterface {
+    private SpanQueryWrapperInterface element;
+    private SpanQueryWrapperInterface wrap;
+
+    public SpanWithinQueryWrapper (SpanQueryWrapperInterface element, SpanQueryWrapperInterface wrap) {
+	this.element = element;
+	this.wrap = wrap;
+    };
+
+    public SpanQuery toQuery () {
+	return new SpanWithinQuery(this.element.toQuery(), this.wrap.toQuery());
+    };
+};
diff --git a/trunk/src/main/java/de/ids_mannheim/korap/util/KorapArray.java b/trunk/src/main/java/de/ids_mannheim/korap/util/KorapArray.java
new file mode 100644
index 0000000..62d1b8c
--- /dev/null
+++ b/trunk/src/main/java/de/ids_mannheim/korap/util/KorapArray.java
@@ -0,0 +1,52 @@
+package de.ids_mannheim.korap.util;
+
+import java.util.*;
+
+/**
+ * @author Nils Diewald
+ *
+ * A collection of Array specific utilities for the Korap project.
+ */
+public class KorapArray {
+
+    /**
+     * Join a sequence of strings to a single string.
+     *
+     * @param separator String to separate joined segments
+     * @param strings Segments to join
+     */
+    public static String join (String separator, String ... strings) {
+	if (strings.length == 0)
+	    return "";
+
+	StringBuffer sb = new StringBuffer(strings[0]);
+
+	for (int i = 1; i < strings.length; i++) {
+	    sb.append(separator);
+	    sb.append(strings[i]);
+	};
+
+	return sb.toString();
+    };
+
+
+    /**
+     * Join a sequence of strings to a single string.
+     *
+     * @param separator Character to separate joined segments
+     * @param strings Segments to join
+     */
+    public static String join (char separator, String ... strings) {
+	if (strings.length == 0)
+	    return "";
+
+	StringBuffer sb = new StringBuffer(strings[0]);
+
+	for (int i = 1; i < strings.length; i++) {
+	    sb.append(separator);
+	    sb.append(strings[i]);
+	};
+
+	return sb.toString();
+    };
+};
diff --git a/trunk/src/main/java/de/ids_mannheim/korap/util/KorapByte.java b/trunk/src/main/java/de/ids_mannheim/korap/util/KorapByte.java
new file mode 100644
index 0000000..9115ba7
--- /dev/null
+++ b/trunk/src/main/java/de/ids_mannheim/korap/util/KorapByte.java
@@ -0,0 +1,61 @@
+package de.ids_mannheim.korap.util;
+
+import java.util.*;
+
+// Maybe wrong! TEST!
+
+/**
+ * @author Nils Diewald
+ *
+ * A collection of methods to deal with Bytes and Byte arrays.
+ */
+public class KorapByte {
+
+    /**
+     * Convert an integer to a byte array.
+     *
+     * @param number The number to convert.
+     */
+    // Based on http://www.tutorials.de/java/228129-konvertierung-von-integer-byte-array.html
+    public static byte[] int2byte (int number) {
+	byte[] data = new byte[4];
+	for (int i = 0; i < 4; ++i) {
+	    int shift = i << 3; // i * 8
+	    data[3-i] = (byte)((number & (0xff << shift)) >>> shift);
+	};
+	return data;
+    };
+
+    /**
+     * Convert a byte array to an integer.
+     *
+     * @param number The number to convert.
+     */
+    // Based on http://www.tutorials.de/java/228129-konvertierung-von-integer-byte-array.html
+    public static int byte2int (byte[] data, int offset) {
+	int number = 0;   
+	int i = (offset*4);  
+	for (; i < 4; ++i) {
+	    number |= (data[3-i] & 0xff) << (i << 3);
+	};
+	return number;
+    };
+
+    public static int byte2int (byte[] data) {
+	return byte2int(data, 0);
+    };
+
+    /*
+    public static short byte2short (byte[] data, int offset) {
+	short number = 0;
+	number |= (data[3-offset] & 0xff) << (offset << 3);
+	offset--;
+	number |= (data[3-offset] & 0xff) << (offset << 3);
+	return number;
+    };
+
+    public static short byte2short (byte[] data) {
+	return byte2short(datam 0);
+    };
+    */
+};
diff --git a/trunk/src/main/java/de/ids_mannheim/korap/util/KorapDate.java b/trunk/src/main/java/de/ids_mannheim/korap/util/KorapDate.java
new file mode 100644
index 0000000..bc3d717
--- /dev/null
+++ b/trunk/src/main/java/de/ids_mannheim/korap/util/KorapDate.java
@@ -0,0 +1,166 @@
+package de.ids_mannheim.korap.util;
+
+import java.util.*;
+import java.util.regex.*;
+
+/**
+ * @author Nils Diewald
+ *
+ * KorapDate implements a helper object to stringify and parse date strings implemented
+ * for integer range queries.
+ */
+public class KorapDate {
+    /*
+    protected char[] year  = new char[4];
+    protected char[] month = new char[2];
+    protected char[] day   = new char[2];
+    */
+
+    private int year = 0, month = 0, day = 0;
+
+    private static final Pattern datePattern = Pattern.compile(
+	"(\\d\\d\\d\\d)" +
+        "(?:[-/]?(\\d\\d)" +
+        "(?:[-/]?(\\d\\d))?)?"
+    );
+
+    public static int END = 99_999_999;
+    public static int BEGINNING = 0;
+
+    public KorapDate (String dateStr) {
+	if (dateStr == null || dateStr.isEmpty())
+	    return;
+
+	Matcher m = datePattern.matcher(dateStr);
+	if (m.matches()) {
+	    this.year = Integer.parseInt(m.group(1));
+	    if (m.group(2) != null)
+		this.month = Integer.parseInt(m.group(2));
+		if (m.group(3) != null)
+		    this.day   = Integer.parseInt(m.group(3));
+	}
+	else {
+	    return;
+	};
+    };
+
+    private static int ceil (short padding, int nr) {
+	if (nr == 0) {
+	    if (padding == (short) 4) {
+		return 9999;
+	    }
+	    else if (padding == (short) 2) {
+		return 99;
+	    };
+	};
+	return nr;
+    };
+
+    // make yyyy???? become yyyy9999 and yyyymm?? yyyymm99
+    public int ceil () {
+	return
+	    (ceil((short) 4, this.year) * 10_000) +
+	    (ceil((short) 2, this.month) * 100) +
+	    (ceil((short) 2, this.day));
+    };
+
+    // make yyyy???? become yyyy0000 and yyyymm?? yyyymm00
+    public int floor () {
+	int floor = 0;
+	if (this.year == 0) {
+	    return 0;
+	}
+	else {
+	    floor = this.year * 10_000;
+	};
+	if (this.month == 0) {
+	    return floor;
+	}
+	else {
+	    floor += this.month * 100;
+	};
+	if (this.day == 0) {
+	    return floor;
+	};
+	return (floor + this.day);
+    };
+
+
+    public int year () {
+	return this.year;
+    };
+
+    public int month () {
+	return this.month;
+    };
+
+    public int day () {
+	return this.day;
+    };
+
+
+    public String toString() {
+	StringBuilder sb = this.toStringBuilder();
+	if (sb.length() < 4)
+	    return null;
+
+	if (sb.length() < 8) {
+	    sb.append("00");
+	    if (sb.length() < 6) {
+		sb.append("00");
+	    };
+	};
+
+	return sb.toString();
+    };
+
+    public String toDisplay() {
+	StringBuilder sb = this.toStringBuilder();
+	if (sb.length() == 8)
+	    sb.insert(6, '-');
+
+	if (sb.length() > 4)
+	    sb.insert(4, '-');
+
+	return sb.toString();
+    };
+
+    public String toCeilString() {
+	StringBuilder sb = new StringBuilder();
+	return sb.append(this.ceil()).toString();
+    };
+
+    public String toFloorString() {
+	StringBuilder sb = new StringBuilder();
+	return sb.append(this.floor()).toString();
+    };
+
+    // Format date as yyyymmdd
+    private StringBuilder toStringBuilder () {
+	StringBuilder sb = new StringBuilder();
+	if (this.year != 0) {
+
+	    // Append year
+	    if (this.year < 100)
+		sb.append("20");
+
+	    sb.append(this.year);
+	    
+	    if (this.month != 0) {
+
+		// Append month
+		if (this.month < 10)
+		    sb.append('0');
+		sb.append(this.month);
+
+		if (this.day != 0) {
+		    // Append month
+		    if (this.day < 10)
+			sb.append('0');
+		    sb.append(this.day);
+		};
+	    };
+	};
+	return sb;
+    };
+};
diff --git a/trunk/src/main/java/de/ids_mannheim/korap/util/KorapHTML.java b/trunk/src/main/java/de/ids_mannheim/korap/util/KorapHTML.java
new file mode 100644
index 0000000..cadbb11
--- /dev/null
+++ b/trunk/src/main/java/de/ids_mannheim/korap/util/KorapHTML.java
@@ -0,0 +1,22 @@
+package de.ids_mannheim.korap.util;
+
+/**
+ * @author Nils Diewald
+ *
+ * A collection of methods to deal with Bytes and Byte arrays.
+ */
+public class KorapHTML {
+
+    /**
+     * Encode a string HTML secure.
+     *
+     * @param text The string to encode.
+     */
+    public static String encodeHTML (String text) {
+	return
+	    text.replace("&", "&amp;")
+	    .replace("<", "&lt;")
+	    .replace(">", "&gt;")
+	    .replace("\"", "&quot;");
+    };
+};
diff --git a/trunk/src/main/resources/log4j.properties b/trunk/src/main/resources/log4j.properties
new file mode 100644
index 0000000..3a2747e
--- /dev/null
+++ b/trunk/src/main/resources/log4j.properties
@@ -0,0 +1,21 @@
+## logger file can be used with
+
+log4j.rootLogger = DEBUG, stdout
+
+#log4j.logger.de.ids_mannheim.korap.query.spans.ElementSpans = TRACE, stdout
+# log4j.logger.de.ids_mannheim.korap.query.spans.WithinSpans = TRACE, stdout
+#log4j.logger.de.ids_mannheim.korap.query.SpanNextQuery = TRACE, stdout
+# log4j.logger.de.ids_mannheim.korap.query.spans.NextSpans = TRACE, stdout
+#log4j.logger.de.ids_mannheim.korap.query.spans.KorapTermSpan = TRACE, stdout
+#log4j.logger.de.ids_mannheim.korap.query.spans.ClassSpans = TRACE, stdout
+#log4j.logger.de.ids_mannheim.korap.query.spans.MatchSpans = TRACE, stdout
+#log4j.logger.de.ids_mannheim.korap.KorapIndex = TRACE, stdout
+#log4j.logger.de.ids_mannheim.korap.KorapMatch = TRACE, stdout
+
+# log4j.logger.de.ids_mannheim.korap.analysis.MultiTermTokenStream = TRACE, stdout
+
+log4j.appender.stdout=org.apache.log4j.ConsoleAppender
+log4j.appender.stdout.layout=org.apache.log4j.PatternLayout
+log4j.appender.stdout.layout.ConversionPattern = %5p (%F:%L) -> %m%n
+
+# log4j.appender.stdout.Target=System.out
diff --git a/trunk/src/test/java/de/ids_mannheim/korap/Test.java b/trunk/src/test/java/de/ids_mannheim/korap/Test.java
new file mode 100644
index 0000000..0e8d68b
--- /dev/null
+++ b/trunk/src/test/java/de/ids_mannheim/korap/Test.java
@@ -0,0 +1,97 @@
+package de.ids_mannheim.korap;
+
+import java.util.*;
+import java.io.IOException;
+
+import de.ids_mannheim.korap.analysis.MultiTermTokenStream;
+import de.ids_mannheim.korap.analysis.MultiTermToken;
+
+import org.apache.lucene.document.Document;
+import org.apache.lucene.document.TextField;
+import org.apache.lucene.document.StringField;
+import org.apache.lucene.document.IntField;
+import org.apache.lucene.document.Field;
+import org.apache.lucene.document.FieldType;
+import org.apache.lucene.index.IndexWriter;
+
+/**
+ * @author Nils Diewald
+ *
+ * Helper class for testing the KorapIndex framework (Normal).
+ */
+public class Test {
+
+    public static void addDoc(IndexWriter w, Map<String, String> m) throws IOException {
+	Document doc = new Document();
+	String[] strInt = { "pubDate" };
+	String[] strStr = { "id", "corpus", "pubPlace" };
+	String[] strTxt = { "title", "subtitle", "textClass" };
+
+	// Text fields
+	for (String s : strTxt) {
+	    doc.add(new TextField(s, m.get(s), Field.Store.YES));
+	};
+
+	// String fields
+	for (String s : strStr) {
+	    doc.add(new StringField(s, m.get(s), Field.Store.YES));
+	};
+
+	// Integer fields
+	for (String s : strInt) {
+	    doc.add(new IntField(s, Integer.parseInt(m.get(s)), Field.Store.YES));
+	};
+
+	FieldType textFieldWithTermVectors = new FieldType(TextField.TYPE_STORED);
+	textFieldWithTermVectors.setStoreTermVectors(true);
+	textFieldWithTermVectors.setStoreTermVectorOffsets(true);
+	textFieldWithTermVectors.setStoreTermVectorPositions(true);
+	textFieldWithTermVectors.setStoreTermVectorPayloads(true);
+
+
+	Field textFieldAnalyzed = new Field(
+          "text",
+          m.get("textStr"),
+	  textFieldWithTermVectors
+	);
+
+	MultiTermTokenStream ts = getTermVector(m.get("text"));
+
+	textFieldAnalyzed.setTokenStream( ts );
+
+	doc.add(textFieldAnalyzed);
+
+	// Add document to writer
+	w.addDocument(doc);
+    };
+
+    public static MultiTermTokenStream getTermVector (String stream) {
+	MultiTermTokenStream ts = new MultiTermTokenStream();
+
+	int pos = 0;
+	for (String seg : stream.split(" ")) {
+
+	    String[] tokseg = seg.split("\\|");
+
+	    MultiTermToken mtt = new MultiTermToken('s', tokseg[0]);
+
+	    mtt.add("T");
+	    mtt.add('i', tokseg[0].toLowerCase());
+	    mtt.add('p', tokseg[1]);
+	    mtt.add('l', tokseg[2]);
+
+	    if (tokseg.length == 4) {
+		for (String morph : tokseg[3].split(";")) {
+		    mtt.add('m', morph);
+		}
+	    };
+	    if (tokseg.length == 5) {
+		mtt.add('e', tokseg[4]);
+	    };
+
+	    ts.addMultiTermToken(mtt);
+	};
+
+	return ts;
+    };
+};
diff --git a/trunk/src/test/java/de/ids_mannheim/korap/TestSimple.java b/trunk/src/test/java/de/ids_mannheim/korap/TestSimple.java
new file mode 100644
index 0000000..552d5a3
--- /dev/null
+++ b/trunk/src/test/java/de/ids_mannheim/korap/TestSimple.java
@@ -0,0 +1,129 @@
+package de.ids_mannheim.korap;
+
+import java.util.*;
+import java.io.IOException;
+
+import de.ids_mannheim.korap.analysis.MultiTermTokenStream;
+import de.ids_mannheim.korap.analysis.MultiTermToken;
+import static de.ids_mannheim.korap.util.KorapByte.*;
+
+import org.apache.lucene.index.IndexWriter;
+import org.apache.lucene.index.Term;
+import org.apache.lucene.index.TermContext;
+import org.apache.lucene.index.IndexReader;
+import org.apache.lucene.index.AtomicReaderContext;
+
+import org.apache.lucene.document.Document;
+import org.apache.lucene.document.TextField;
+import org.apache.lucene.document.StringField;
+import org.apache.lucene.document.IntField;
+import org.apache.lucene.document.Field;
+import org.apache.lucene.document.FieldType;
+
+import org.apache.lucene.search.spans.Spans;
+import org.apache.lucene.search.spans.SpanQuery;
+
+import org.apache.lucene.util.Bits;
+
+/**
+ * @author Nils Diewald
+ *
+ * Helper class for testing the KorapIndex framework (Simple).
+ */
+public class TestSimple {
+
+    public static void addDoc(IndexWriter w, Map<String, String> m) throws IOException {
+	Document doc = new Document();
+
+	FieldType textFieldWithTermVectors = new FieldType(TextField.TYPE_STORED);
+	textFieldWithTermVectors.setStoreTermVectors(true);
+	/*
+	  No offsets are stored.
+	  textFieldWithTermVectors.setStoreTermVectorOffsets(true);
+	*/
+	textFieldWithTermVectors.setStoreTermVectorPositions(true);
+	textFieldWithTermVectors.setStoreTermVectorPayloads(true);
+
+	Field textFieldAnalyzed = new Field(
+          "text",
+          m.get("textStr"),
+	  textFieldWithTermVectors
+	);
+
+	MultiTermTokenStream ts = getTermVector(m.get("text"));
+
+	textFieldAnalyzed.setTokenStream( ts );
+
+	doc.add(textFieldAnalyzed);
+
+	// Add document to writer
+	w.addDocument(doc);
+    };
+
+
+    public static MultiTermTokenStream getTermVector (String stream) {
+	MultiTermTokenStream ts = new MultiTermTokenStream();
+
+	int pos = 0;
+	for (String seg : stream.split(" ")) {
+	    //	    System.err.println("** Prepare " + seg);
+	    String[] tokens = seg.split("\\|");
+
+	    int i = 0;
+
+	    while (tokens[i].length() == 0)
+		i++;
+
+	    MultiTermToken mtt = new MultiTermToken(tokens[i]);
+	    //	    System.err.println("** Add term " + tokens[i]);
+	    i++;
+	    for (; i < tokens.length; i++) {
+		if (tokens[i].length() == 0)
+		    continue;
+		mtt.add(tokens[i]);
+	    };
+
+	    ts.addMultiTermToken(mtt);
+	};
+
+	return ts;
+    };
+
+    public static List<String> getSpanInfo (IndexReader reader, SpanQuery query) throws IOException {
+	Map<Term, TermContext> termContexts = new HashMap<>();
+	List<String> spanArray = new ArrayList<>();
+
+	for (AtomicReaderContext atomic : reader.leaves()) {
+	    Bits bitset = atomic.reader().getLiveDocs();
+	    // Spans spans = NearSpansOrdered();
+	    Spans spans = query.getSpans(atomic, bitset, termContexts);
+
+	    while (spans.next()) {
+		StringBuffer payloadString = new StringBuffer();
+		int docid = atomic.docBase + spans.doc();
+		if (spans.isPayloadAvailable()) {
+		    for (byte[] payload : spans.getPayload()) {
+			/* retrieve payload for current matching span */
+
+			payloadString.append(byte2int(payload)).append(",");
+			payloadString.append(byte2int(payload, 2));
+			//			payloadString.append(byte2int(payload, 1));
+			payloadString.append(" (" + payload.length + ")");
+			payloadString.append(" | ");
+		    };
+		};
+		spanArray.add(
+		    "Doc: " +
+		    docid +
+		    " with " +
+		    spans.start() +
+		    "-" +
+		    spans.end() +
+		    " || " +
+		    payloadString.toString()
+		);
+	    };
+	};
+	return spanArray;
+    };
+};
diff --git a/trunk/src/test/java/de/ids_mannheim/korap/analysis/TestMultiTerm.java b/trunk/src/test/java/de/ids_mannheim/korap/analysis/TestMultiTerm.java
new file mode 100644
index 0000000..9e33133
--- /dev/null
+++ b/trunk/src/test/java/de/ids_mannheim/korap/analysis/TestMultiTerm.java
@@ -0,0 +1,102 @@
+import java.util.*;
+import de.ids_mannheim.korap.analysis.MultiTerm;
+import java.io.IOException;
+import org.apache.lucene.util.BytesRef;
+
+import static org.junit.Assert.*;
+import org.junit.Test;
+import org.junit.Ignore;
+import org.junit.runner.RunWith;
+import org.junit.runners.JUnit4;
+
+
+@RunWith(JUnit4.class)
+public class TestMultiTerm {
+    @Test
+    public void multiTermSimple () {
+	MultiTerm mt = new MultiTerm("test");
+	assertEquals(mt.term, "test");
+	assertNull(mt.payload);
+	assertEquals(mt.start, 0);
+	assertEquals(mt.end, 0);
+    };
+
+    @Test
+    public void multiTermPayload () {
+	MultiTerm mt = new MultiTerm("test$5");
+	assertEquals("test", mt.term);
+	assertEquals(new BytesRef("5"), mt.payload);
+	assertEquals(mt.start, 0);
+	assertEquals(mt.end, 0);
+    };
+
+    @Test
+    public void multiTermOffset () {
+	MultiTerm mt = new MultiTerm("versuch#2-34");
+	assertEquals(mt.term, "versuch");
+	assertNull(mt.payload);
+	assertEquals(mt.start, 2);
+	assertEquals(mt.end, 34);
+    };
+
+    @Test
+    public void multiTermOffsetPayload () {
+	MultiTerm mt = new MultiTerm("example#6-42$hihi");
+	assertEquals(mt.term, "example");
+	assertEquals(new BytesRef("hihi"), mt.payload);
+	assertEquals(mt.start,6);
+	assertEquals(mt.end, 42);
+    };
+
+    @Test
+    public void multiTermString () {
+	MultiTerm mt = new MultiTerm("example#6-42$hihi");
+	assertEquals("example#6-42$hihi", mt.toString());
+	mt.term = "spassmacher";
+	assertEquals("spassmacher#6-42$hihi", mt.toString());
+    };
+
+    @Test
+    public void multiTermStringPayloadType () {
+	MultiTerm mt = new MultiTerm("example$<i>4000");
+	assertEquals("example$<?>[0,0,f,a0]", mt.toString());
+
+	mt = new MultiTerm("example$<l>757574643438");
+	assertEquals("example$<?>[0,0,0,b0,62,f7,ae,ee]", mt.toString());
+    };
+
+    @Test
+    public void multiTermStringPayloadType2 () {
+	MultiTerm mt = new MultiTerm();
+	mt.term("beispiel");
+	mt.start(40);
+	mt.end(50);
+	mt.payload((int) 4000);
+	assertEquals("beispiel#40-50$<?>[0,0,f,a0]", mt.toString());
+    };
+
+    @Test
+    public void multiTermStringPayloadType3 () {
+	MultiTerm mt = new MultiTerm("example$<b>120");
+	assertEquals("example$x", mt.toString());
+    };
+
+    @Test
+    public void multiTermStringPayloadType4 () {
+	MultiTerm mt = new MultiTerm("example$<i>420<b>120");
+	assertEquals("example$<?>[0,0,1,a4,78]", mt.toString());
+    };
+
+
+    @Test
+    public void multiTermStringPayloadType5 () {
+	MultiTerm mt = new MultiTerm("example$<i>4000");
+	assertEquals("example$<?>[0,0,f,a0]", mt.toString());
+
+	mt = new MultiTerm("example$<i>4000<b>120");
+	assertEquals("example$<?>[0,0,f,a0,78]", mt.toString());
+
+	mt = new MultiTerm("example$<l>4000<b>120");
+	assertEquals("example$<?>[0,0,0,0,0,0,f,a0,78]", mt.toString());
+    };
+};
diff --git a/trunk/src/test/java/de/ids_mannheim/korap/analysis/TestMultiTermToken.java b/trunk/src/test/java/de/ids_mannheim/korap/analysis/TestMultiTermToken.java
new file mode 100644
index 0000000..ab071c2
--- /dev/null
+++ b/trunk/src/test/java/de/ids_mannheim/korap/analysis/TestMultiTermToken.java
@@ -0,0 +1,38 @@
+import java.util.*;
+import de.ids_mannheim.korap.analysis.MultiTermToken;
+import java.io.IOException;
+import org.apache.lucene.util.BytesRef;
+
+import static org.junit.Assert.*;
+import org.junit.Test;
+import org.junit.Ignore;
+import org.junit.runner.RunWith;
+import org.junit.runners.JUnit4;
+
+
+@RunWith(JUnit4.class)
+public class TestMultiTermToken {
+    @Test
+    public void multiTermTokenSimple () {
+	MultiTermToken mtt = new MultiTermToken("t:test", "a:abbruch");
+	assertEquals("[t:test|a:abbruch]", mtt.toString());
+	mtt.add("b:banane");
+	assertEquals("[t:test|a:abbruch|b:banane]", mtt.toString());
+	mtt.add("c:chaos#21-26");
+	assertEquals("[t:test|a:abbruch|b:banane|c:chaos]", mtt.toString());
+	mtt.add("d:dadaismus#21-26$vergleich");
+	assertEquals("[t:test|a:abbruch|b:banane|c:chaos|d:dadaismus$vergleich]", mtt.toString());
+    };
+
+    @Test
+    public void multiTermTokenOffsets () {
+	MultiTermToken mtt = new MultiTermToken("t:test#23-27");
+	assertEquals("[(23-27)t:test]", mtt.toString());
+	mtt.add("b:baum#34-45");
+	assertEquals("[(23-27)t:test|b:baum]", mtt.toString());
+	mtt.add("c:cannonball#34-45$tatsache");
+	assertEquals("[(23-27)t:test|b:baum|c:cannonball$tatsache]", mtt.toString());
+	assertEquals(23, mtt.start);
+	assertEquals(27, mtt.end);
+    };
+};
diff --git a/trunk/src/test/java/de/ids_mannheim/korap/analysis/TestMultiTermTokenStream.java b/trunk/src/test/java/de/ids_mannheim/korap/analysis/TestMultiTermTokenStream.java
new file mode 100644
index 0000000..b80ded6
--- /dev/null
+++ b/trunk/src/test/java/de/ids_mannheim/korap/analysis/TestMultiTermTokenStream.java
Binary files differ
diff --git a/trunk/src/test/java/de/ids_mannheim/korap/cache/TestCache.java b/trunk/src/test/java/de/ids_mannheim/korap/cache/TestCache.java
new file mode 100644
index 0000000..1d15bd0
--- /dev/null
+++ b/trunk/src/test/java/de/ids_mannheim/korap/cache/TestCache.java
@@ -0,0 +1,41 @@
+import java.util.Collections;
+
+import net.sf.jsr107cache.Cache;
+import net.sf.jsr107cache.CacheException;
+import net.sf.jsr107cache.CacheFactory;
+import net.sf.jsr107cache.CacheManager;
+
+
+import static org.junit.Assert.*;
+import org.junit.Test;
+import org.junit.Ignore;
+import org.junit.runner.RunWith;
+import org.junit.runners.JUnit4;
+
+@RunWith(JUnit4.class)
+public class TestCache {
+
+    @Test
+    public void cache1 () {
+
+	Cache cache;
+
+        try {
+            CacheFactory cacheFactory = CacheManager.getInstance().getCacheFactory();
+            cache = cacheFactory.createCache(Collections.emptyMap());
+        }
+
+	catch (CacheException e) {
+            // ...
+	    return;
+        };
+
+	cache.put("beispiel1", "Das ist ein Test");
+	cache.put("beispiel2", "Das ist ein Versuch");
+	cache.put("beispiel3", "Das ist ein Beispiel");
+
+	assertEquals(cache.get("beispiel1"), "Das ist ein Test");
+	assertEquals(cache.get("beispiel2"), "Das ist ein Versuch");
+	assertEquals(cache.get("beispiel3"), "Das ist ein Beispiel");
+    };
+};
diff --git a/trunk/src/test/java/de/ids_mannheim/korap/filter/TestKorapFilter.java b/trunk/src/test/java/de/ids_mannheim/korap/filter/TestKorapFilter.java
new file mode 100644
index 0000000..8ccefa8
--- /dev/null
+++ b/trunk/src/test/java/de/ids_mannheim/korap/filter/TestKorapFilter.java
@@ -0,0 +1,79 @@
+import java.util.*;
+import java.io.*;
+
+import org.apache.lucene.util.Version;
+import org.apache.lucene.util.BytesRef;
+import org.apache.lucene.util.Bits;
+
+import static org.junit.Assert.*;
+import org.junit.Test;
+import org.junit.Ignore;
+import org.junit.runner.RunWith;
+import org.junit.runners.JUnit4;
+
+import de.ids_mannheim.korap.KorapFilter;
+
+@RunWith(JUnit4.class)
+public class TestKorapFilter {
+
+    @Test
+    public void filterExample () throws IOException {
+
+	KorapFilter kf = new KorapFilter();
+
+	assertEquals("textClass:tree", kf.genre("tree").toString());
+	assertEquals("+textClass:tree +textClass:sport", kf.genre("tree").and("sport").toString());
+	assertEquals("(+textClass:tree +textClass:sport) textClass:news", kf.genre("tree").and("sport").or("news").toString());
+	assertEquals("textClass:tree textClass:sport textClass:news", kf.genre("tree", "sport", "news").toString());
+    };
+
+    @Test
+    public void rangeExample () throws IOException {
+
+	KorapFilter kf = new KorapFilter();
+
+	assertEquals("pubDate:[20030604 TO 20030899]", kf.between("2003-06-04", "2003-08-99").toString());
+	assertEquals("pubDate:[0 TO 20030604]", kf.till("2003-06-04").toString());
+	assertEquals("pubDate:[20030604 TO 99999999]", kf.since("2003-06-04").toString());
+	assertEquals("pubDate:20030604", kf.date("2003-06-04").toString());
+    };
+
+    @Test
+    public void rangeLimited () throws IOException {
+
+	KorapFilter kf = new KorapFilter();
+	assertEquals("pubDate:[20050000 TO 20099999]", kf.between("2005", "2009").toString());
+       	assertEquals("pubDate:[20051000 TO 20090899]", kf.between("200510", "200908").toString());
+	assertEquals("pubDate:[20051000 TO 20090899]", kf.between("2005-10", "2009-08").toString());
+	assertEquals("pubDate:[20051006 TO 20090803]", kf.between("2005-1006", "2009-0803").toString());
+	assertEquals("pubDate:[20051006 TO 20090803]", kf.between("2005-10-06", "2009-08-03").toString());
+
+	assertEquals("pubDate:[0 TO 20059999]", kf.till("2005").toString());
+	assertEquals("pubDate:[0 TO 20051099]", kf.till("200510").toString());
+	assertEquals("pubDate:[0 TO 20051099]", kf.till("2005-10").toString());
+	assertEquals("pubDate:[0 TO 20051006]", kf.till("2005-1006").toString());
+	assertEquals("pubDate:[0 TO 20051006]", kf.till("2005-10-06").toString());
+
+	assertEquals("pubDate:[20050000 TO 99999999]", kf.since("2005").toString());
+	assertEquals("pubDate:[20051000 TO 99999999]", kf.since("200510").toString());
+	assertEquals("pubDate:[20051000 TO 99999999]", kf.since("2005-10").toString());
+	assertEquals("pubDate:[20051006 TO 99999999]", kf.since("2005-1006").toString());
+	assertEquals("pubDate:[20051006 TO 99999999]", kf.since("2005-10-06").toString());
+
+	assertEquals("pubDate:[20050000 TO 20059999]", kf.date("2005").toString());
+	assertEquals("pubDate:[20051000 TO 20051099]", kf.date("200510").toString());
+	assertEquals("pubDate:[20051000 TO 20051099]", kf.date("2005-10").toString());
+	assertEquals("pubDate:20051006", kf.date("2005-1006").toString());
+	assertEquals("pubDate:20051006", kf.date("2005-10-06").toString());
+    };
+
+    @Test
+    public void rangeFailure () throws IOException {
+
+	KorapFilter kf = new KorapFilter();
+	assertNull(kf.between("aaaa-bb-cc", "aaaabbcc"));
+	assertNull(kf.till("aaaa-bb-cc"));
+	assertNull(kf.since("aaaa-bb-cc"));
+	assertNull(kf.date("aaaa-bb-cc"));
+    };
+};
diff --git a/trunk/src/test/java/de/ids_mannheim/korap/highlight/TestHighlight.java b/trunk/src/test/java/de/ids_mannheim/korap/highlight/TestHighlight.java
new file mode 100644
index 0000000..bfc6c33
--- /dev/null
+++ b/trunk/src/test/java/de/ids_mannheim/korap/highlight/TestHighlight.java
@@ -0,0 +1,103 @@
+import java.util.*;
+import java.io.IOException;
+
+// import org.apache.lucene.search.postingshighlight.PostingsHighlighter;
+
+import org.apache.lucene.store.Directory;
+import org.apache.lucene.store.RAMDirectory;
+
+import org.apache.lucene.index.IndexReader;
+import org.apache.lucene.index.IndexReaderContext;
+import org.apache.lucene.index.AtomicReaderContext;
+import org.apache.lucene.index.DirectoryReader;
+
+import org.apache.lucene.index.IndexWriter;
+import org.apache.lucene.index.IndexWriterConfig;
+import org.apache.lucene.index.IndexWriterConfig.OpenMode;
+
+import de.ids_mannheim.korap.analysis.MultiTermTokenStream;
+
+import org.apache.lucene.search.IndexSearcher;
+
+import org.apache.lucene.analysis.standard.StandardAnalyzer;
+
+import org.apache.lucene.util.Version;
+
+import org.apache.lucene.document.Document;
+import org.apache.lucene.document.Field;
+import org.apache.lucene.document.FieldType;
+import org.apache.lucene.document.TextField;
+
+import static de.ids_mannheim.korap.Test.*;
+
+import static org.junit.Assert.*;
+import org.junit.Test;
+import org.junit.Ignore;
+import org.junit.runner.RunWith;
+import org.junit.runners.JUnit4;
+
+@RunWith(JUnit4.class)
+public class TestHighlight { // extends LuceneTestCase {
+
+    // Create index in RAM
+    private Directory index = new RAMDirectory();
+
+    StandardAnalyzer analyzer = new StandardAnalyzer(Version.LUCENE_43);
+
+    IndexWriterConfig config = new IndexWriterConfig(Version.LUCENE_43, analyzer);
+
+
+    @Test
+    public void checkHighlights () throws IOException  {
+	// Check directory
+
+	IndexWriter w = new IndexWriter(index, config);
+
+	Document doc = new Document();
+	FieldType textFieldWithTermVectors = new FieldType(TextField.TYPE_STORED);
+	textFieldWithTermVectors.setStoreTermVectors(true);
+	textFieldWithTermVectors.setStoreTermVectorOffsets(true);
+	textFieldWithTermVectors.setStoreTermVectorPositions(true);
+
+	Field textFieldAnalyzed = new Field(
+            "text",
+	    "Er wagte nicht, sich zu ruehren. Er war starr vor Angst.",
+	    textFieldWithTermVectors
+	);
+    
+	MultiTermTokenStream ts = getTermVector(
+            "Er#0-2|PPER|er|c:nom;n:sg;g:masc;p:3|s:<$0-32 " +
+	    "wagte#3-8|VVFIN|wagen|p:3;n:sg;t:past;m:ind| " +
+	    "nicht#9-14|PTKNEG|nicht|| " +
+	    ",#14-15|$,|,|| " +
+	    "sich#16-20|PRF|sich|c:acc;p:3;n:sg| " +
+	    "zu#21-23|PTKZU|zu|| " +
+	    "ruehren#24-31|VVFIN|ruehren|| " +
+	    ".#31-32|$.|.||s:>$0-32 " +
+	    "Er#33-35|PPER|er|c:nom;p:3;n:sg;g:masc|s:<$33-56 " +
+	    "war#36-39|VAFIN|sein|p:3;n:sg;t:past;m:ind| " +
+	    "starr#40-45|ADJD|starr|comp:pos| " +
+	    "vor#46-49|APPR|vor|| " +
+	    "Angst#50-55|NN|angst|c:dat;n:sg;g:fem| " +
+	    ".#55-56|$.|.||s:>$33-56"
+        );
+
+	textFieldAnalyzed.setTokenStream( ts );
+
+	doc.add(textFieldAnalyzed);
+
+	// Add document to writer
+	w.addDocument(doc);
+
+	assertEquals(1, w.numDocs());
+
+	w.close();
+    
+	DirectoryReader reader = DirectoryReader.open( index );
+
+	// Check searcher
+	IndexSearcher searcher = new IndexSearcher( reader );
+
+
+    };
+};
diff --git a/trunk/src/test/java/de/ids_mannheim/korap/index/TestClassIndex.java b/trunk/src/test/java/de/ids_mannheim/korap/index/TestClassIndex.java
new file mode 100644
index 0000000..ff3abaf
--- /dev/null
+++ b/trunk/src/test/java/de/ids_mannheim/korap/index/TestClassIndex.java
@@ -0,0 +1,283 @@
+import java.util.*;
+import java.io.*;
+
+import org.apache.lucene.util.Version;
+import org.apache.lucene.util.BytesRef;
+import org.apache.lucene.util.Bits;
+
+import static org.junit.Assert.*;
+import org.junit.Test;
+import org.junit.Ignore;
+import org.junit.runner.RunWith;
+import org.junit.runners.JUnit4;
+
+import de.ids_mannheim.korap.KorapIndex;
+import de.ids_mannheim.korap.KorapQuery;
+import de.ids_mannheim.korap.KorapResult;
+import de.ids_mannheim.korap.query.SpanNextQuery;
+import de.ids_mannheim.korap.query.SpanClassQuery;
+import de.ids_mannheim.korap.query.SpanElementQuery;
+import de.ids_mannheim.korap.query.SpanWithinQuery;
+import de.ids_mannheim.korap.index.FieldDocument;
+import de.ids_mannheim.korap.analysis.MultiTermTokenStream;
+
+import org.apache.lucene.search.spans.SpanQuery;
+import org.apache.lucene.search.spans.SpanTermQuery;
+import org.apache.lucene.index.Term;
+
+// mvn -Dtest=TestWithinIndex#indexExample1 test
+
+@RunWith(JUnit4.class)
+public class TestClassIndex {
+
+    @Test
+    public void indexExample1 () throws IOException {
+	KorapIndex ki = new KorapIndex();
+
+	// abcabcabac
+	FieldDocument fd = new FieldDocument();
+	fd.addTV("base",
+		 "abcabcabac",
+		 "[(0-1)s:a|i:a|_0#0-1|-:t$<i>10]" +
+		 "[(1-2)s:b|i:b|_1#1-2]" +
+		 "[(2-3)s:c|i:c|_2#2-3]" +
+		 "[(3-4)s:a|i:a|_3#3-4]" +
+		 "[(4-5)s:b|i:b|_4#4-5]" +
+		 "[(5-6)s:c|i:c|_5#5-6]" +
+		 "[(6-7)s:a|i:a|_6#6-7]" +
+		 "[(7-8)s:b|i:b|_7#7-8]" +
+		 "[(8-9)s:a|i:a|_8#8-9]" +
+		 "[(9-10)s:c|i:c|_9#9-10]");
+	ki.addDoc(fd);
+
+	ki.commit();
+
+	SpanQuery sq;
+	KorapResult kr;
+
+	sq = new SpanNextQuery(
+            new SpanTermQuery(new Term("base", "s:b")),
+            new SpanTermQuery(new Term("base", "s:a"))
+        );
+	kr = ki.search(sq, (short) 10);
+
+	assertEquals("totalResults", 1, kr.totalResults());
+	assertEquals("StartPos (0)", 7, kr.match(0).startPos);
+	assertEquals("EndPos (0)", 9, kr.match(0).endPos);
+	assertEquals("SnippetBrackets (0)", "... bcabca[ba]c", kr.match(0).snippetBrackets());
+	assertEquals("SnippetHTML (0)", "<span class=\"korap-more-left\"></span>bcabca<span class=\"korap-match\">ba</span>c", kr.match(0).snippetHTML());
+
+	sq = new SpanTermQuery(new Term("base", "s:b"));
+	kr = ki.search(sq, (short) 10);
+
+	assertEquals("totalResults", 3, kr.totalResults());
+	assertEquals("StartPos (0)", 1, kr.match(0).startPos);
+	assertEquals("EndPos (0)", 2, kr.match(0).endPos);
+	assertEquals("SnippetBrackets (0)", "a[b]cabcab ...", kr.match(0).snippetBrackets());
+
+
+	assertEquals("SnippetHTML (0)", "a<span class=\"korap-match\">b</span>cabcab<span class=\"korap-more-right\"></span>", kr.match(0).snippetHTML());
+
+	assertEquals("StartPos (1)", 4, kr.match(1).startPos);
+	assertEquals("EndPos (1)", 5, kr.match(1).endPos);
+	assertEquals("SnippetBrackets (1)", "abca[b]cabac", kr.match(1).snippetBrackets());
+	assertEquals("StartPos (2)", 7, kr.match(2).startPos);
+	assertEquals("EndPos (2)", 8, kr.match(2).endPos);
+	assertEquals("SnippetBrackets (2)", "... bcabca[b]ac", kr.match(2).snippetBrackets());
+
+	sq = new SpanClassQuery(new SpanTermQuery(new Term("base", "s:b")));
+	kr = ki.search(sq, (short) 10);
+
+	assertEquals("totalResults", 3, kr.totalResults());
+	assertEquals("StartPos (0)", 1, kr.match(0).startPos);
+	assertEquals("EndPos (0)", 2, kr.match(0).endPos);
+	assertEquals("snippetBrackets (0)", "a[{b}]cabcab ...", kr.match(0).snippetBrackets());
+	assertEquals("snippetHTML (0)", "a<span class=\"korap-match\"><span class=\"korap-highlight korap-class-0\">b</span></span>cabcab<span class=\"korap-more-right\"></span>", kr.match(0).snippetHTML());
+
+	assertEquals("StartPos (1)", 4, kr.match(1).startPos);
+	assertEquals("EndPos (1)", 5, kr.match(1).endPos);
+	assertEquals("snippetBrackets (1)", "abca[{b}]cabac", kr.match(1).snippetBrackets());
+	assertEquals("StartPos (2)", 7, kr.match(2).startPos);
+	assertEquals("EndPos (2)", 8, kr.match(2).endPos);
+	assertEquals("snippetBrackets (2)", "... bcabca[{b}]ac", kr.match(2).snippetBrackets());
+
+
+	sq = new SpanNextQuery(
+            new SpanTermQuery(new Term("base", "s:a")),
+            new SpanClassQuery(new SpanTermQuery(new Term("base", "s:b")), (byte) 1)
+        );
+
+	kr = ki.search(sq, (short) 10);
+
+	assertEquals("totalResults", 3, kr.totalResults());
+	assertEquals("StartPos (0)", 0, kr.match(0).startPos);
+	assertEquals("EndPos (0)", 2, kr.match(0).endPos);
+	assertEquals("SnippetBrackets (0)", "[a{1:b}]cabcab ...", kr.match(0).snippetBrackets());
+
+	assertEquals("SnippetHTML (0)", "<span class=\"korap-match\">a<span class=\"korap-highlight korap-class-1\">b</span></span>cabcab<span class=\"korap-more-right\"></span>", kr.match(0).snippetHTML());
+
+	assertEquals("StartPos (1)", 3, kr.match(1).startPos);
+	assertEquals("EndPos (1)", 5, kr.match(1).endPos);
+	assertEquals("SnippetBrackets (1)", "abc[a{1:b}]cabac", kr.match(1).snippetBrackets());
+	assertEquals("StartPos (2)", 6, kr.match(2).startPos);
+	assertEquals("EndPos (2)", 8, kr.match(2).endPos);
+	assertEquals("SnippetBrackets (2)", "abcabc[a{1:b}]ac", kr.match(2).snippetBrackets());
+
+
+	// abcabcabac
+	sq = new SpanNextQuery(
+	    new SpanClassQuery(new SpanTermQuery(new Term("base", "s:a")), (byte) 2),
+            new SpanClassQuery(new SpanTermQuery(new Term("base", "s:b")), (byte) 3)
+        );
+
+	kr = ki.search(sq, (short) 10);
+
+	assertEquals("StartPos (0)", 0, kr.match(0).startPos);
+	assertEquals("EndPos (0)", 2, kr.match(0).endPos);
+	assertEquals("SnippetBrackets (0)", "[{2:a}{3:b}]cabcab ...", kr.match(0).snippetBrackets());
+	assertEquals("StartPos (1)", 3, kr.match(1).startPos);
+	assertEquals("EndPos (1)", 5, kr.match(1).endPos);
+	assertEquals("SnippetBrackets (1)", "abc[{2:a}{3:b}]cabac", kr.match(1).snippetBrackets());
+
+	assertEquals("StartPos (2)", 6, kr.match(2).startPos);
+	assertEquals("EndPos (2)", 8, kr.match(2).endPos);
+	assertEquals("SnippetBrackets (2)", "abcabc[{2:a}{3:b}]ac", kr.match(2).snippetBrackets());
+
+	// abcabcabac
+	sq = new SpanNextQuery(
+            new SpanTermQuery(new Term("base", "s:a")),
+            new SpanClassQuery(
+	        new SpanNextQuery(
+		    new SpanTermQuery(new Term("base", "s:b")),
+	    	    new SpanClassQuery(new SpanTermQuery(new Term("base", "s:a")))
+		), (byte) 2
+	));
+
+	kr = ki.search(sq, (short) 10);
+
+	// System.err.println(kr.toJSON());
+
+	assertEquals("totalResults", 1, kr.totalResults());
+	assertEquals("SnippetBrackets (0)", "abcabc[a{2:b{a}}]c", kr.match(0).snippetBrackets());
+	assertEquals("SnippetHTML (0)", "abcabc<span class=\"korap-match\">a<span class=\"korap-highlight korap-class-2\">b<span class=\"korap-highlight korap-class-0\">a</span></span></span>c", kr.match(0).snippetHTML());
+
+	// Offset tokens
+	kr = ki.search(sq, 0, (short) 10, true, (short) 2, true, (short) 2);
+	assertEquals("totalResults", 1, kr.totalResults());
+	assertEquals("SnippetBrackets (0)", "... bc[a{2:b{a}}]c", kr.match(0).snippetBrackets());
+	assertEquals("SnippetHTML (0)", "<span class=\"korap-more-left\"></span>bc<span class=\"korap-match\">a<span class=\"korap-highlight korap-class-2\">b<span class=\"korap-highlight korap-class-0\">a</span></span></span>c", kr.match(0).snippetHTML());
+
+	// Offset Characters
+	kr = ki.search(sq, 0, (short) 10, false, (short) 2, false, (short) 2);
+	assertEquals("totalResults", 1, kr.totalResults());
+	assertEquals("SnippetBrackets (0)", "... bc[a{2:b{a}}]c", kr.match(0).snippetBrackets());
+	assertEquals("SnippetHTML (0)", "<span class=\"korap-more-left\"></span>bc<span class=\"korap-match\">a<span class=\"korap-highlight korap-class-2\">b<span class=\"korap-highlight korap-class-0\">a</span></span></span>c", kr.match(0).snippetHTML());
+
+
+	// System.err.println(kr.toJSON());
+
+	sq = new SpanNextQuery(
+	    new SpanClassQuery(new SpanTermQuery(new Term("base", "s:b")), (byte) 1),
+            new SpanClassQuery(new SpanTermQuery(new Term("base", "s:c")), (byte) 2)
+        );
+
+	kr = ki.search(sq, (short) 10);
+	
+	assertEquals("totalResults", 2, kr.totalResults());
+	assertEquals("StartPos (0)", 1, kr.match(0).startPos);
+	assertEquals("EndPos (0)", 3, kr.match(0).endPos);
+	assertEquals("StartPos (1)", 4, kr.match(1).startPos);
+	assertEquals("EndPos (1)", 6, kr.match(1).endPos);
+
+	assertEquals("Document count", 1, ki.numberOf("documents"));
+	assertEquals("Token count", 10, ki.numberOf("t"));
+
+
+	sq = new SpanNextQuery(
+            new SpanTermQuery(new Term("base", "s:a")),
+            new SpanClassQuery(
+	      new SpanNextQuery(
+	        new SpanTermQuery(new Term("base", "s:b")),
+	        new SpanTermQuery(new Term("base", "s:c"))
+	      )
+	   )
+        );
+
+	kr = ki.search(sq, (short) 2);
+	
+	assertEquals("totalResults", 2, kr.totalResults());
+	assertEquals("StartPos (0)", 0, kr.match(0).startPos);
+	assertEquals("EndPos (0)", 3, kr.match(0).endPos);
+	assertEquals("StartPos (1)", 3, kr.match(1).startPos);
+	assertEquals("EndPos (1)", 6, kr.match(1).endPos);
+
+	assertEquals(1, ki.numberOf("documents"));
+	assertEquals(10, ki.numberOf("t"));
+    };
+
+
+    @Test
+    public void indexExample2 () throws IOException {
+	KorapIndex ki = new KorapIndex();
+
+	// abcabcabac
+	FieldDocument fd = new FieldDocument();
+	fd.addTV("base",
+		 "abcabcabac",
+		 "[(0-1)s:a|i:a|_0#0-1|-:t$<i>10]" +
+		 "[(1-2)s:b|i:b|_1#1-2]" +
+		 "[(2-3)s:c|i:c|_2#2-3]" +
+		 "[(3-4)s:a|i:a|_3#3-4|<>:x#3-7$<i>7]" +
+		 "[(4-5)s:b|i:b|_4#4-5]" +
+		 "[(5-6)s:c|i:c|_5#5-6]" +
+		 "[(6-7)s:a|i:a|_6#6-7]" +
+		 "[(7-8)s:b|i:b|_7#7-8]" +
+		 "[(8-9)s:a|i:a|_8#8-9]" +
+		 "[(9-10)s:c|i:c|_9#9-10]");
+	ki.addDoc(fd);
+
+	ki.commit();
+
+	SpanQuery sq;
+	KorapResult kr;
+
+	/*
+	sq = new SpanNextQuery(
+	       new SpanTermQuery(new Term("base", "s:c")),
+ 	       new SpanElementQuery("base", "x")
+	);
+	
+	kr = ki.search(sq, (short) 10);
+	assertEquals("ab[cabca]bac", kr.match(0).getSnippetBrackets());
+	System.err.println();
+	*/
+
+	/*
+	sq = new SpanNextQuery(
+	       new SpanElementQuery("base", "x"),
+	       new SpanTermQuery(new Term("base", "s:b"))
+	);
+	
+	kr = ki.search(sq, (short) 10);
+	assertEquals("abc[abcab}ac]", kr.match(0).getSnippetBrackets());
+	System.err.println();
+
+	*/
+
+	/*
+	sq = new SpanWithinQuery(
+            new SpanElementQuery("base", "x"),
+            new SpanClassQuery(
+              new SpanTermQuery(new Term("base", "s:a"))
+            )
+        );
+
+	       //	       new SpanTermQuery(new Term("base", "s:a")),
+	    //            new SpanClassQuery(
+	    //            )
+	    //        );
+
+	*/
+
+    }
+};
diff --git a/trunk/src/test/java/de/ids_mannheim/korap/index/TestElementIndex.java b/trunk/src/test/java/de/ids_mannheim/korap/index/TestElementIndex.java
new file mode 100644
index 0000000..07bafb8
--- /dev/null
+++ b/trunk/src/test/java/de/ids_mannheim/korap/index/TestElementIndex.java
@@ -0,0 +1,325 @@
+import java.util.*;
+import java.io.*;
+
+import org.apache.lucene.util.Version;
+import org.apache.lucene.util.BytesRef;
+import org.apache.lucene.util.Bits;
+
+import static org.junit.Assert.*;
+import org.junit.Test;
+import org.junit.Ignore;
+import org.junit.runner.RunWith;
+import org.junit.runners.JUnit4;
+
+import de.ids_mannheim.korap.KorapIndex;
+import de.ids_mannheim.korap.KorapQuery;
+import de.ids_mannheim.korap.KorapResult;
+import de.ids_mannheim.korap.query.SpanElementQuery;
+import de.ids_mannheim.korap.index.FieldDocument;
+import de.ids_mannheim.korap.analysis.MultiTermTokenStream;
+import org.apache.lucene.search.spans.SpanQuery;
+import org.apache.lucene.index.Term;
+
+
+@RunWith(JUnit4.class)
+public class TestElementIndex {
+
+    // Todo: primary data as a non-indexed field separated.
+
+    @Test
+    public void indexExample1 () throws IOException {
+	KorapIndex ki = new KorapIndex();
+
+	// <a>x<a>y<a>zhij</a>hij</a>hij</a>hij</a>
+	FieldDocument fd = new FieldDocument();
+	fd.addTV("base",
+		 "x  y  z  h  i  j  h  i  j  h  i  j  ",
+		 "[(0-3)s:x|<>:a#0-3$<i>12]" +
+		 "[(3-6)s:y|<>:a#3-6$<i>9]" +
+		 "[(6-9)s:z|<>:a#6-9$<i>6]" +
+		 "[(9-12)s:h]" +
+		 "[(12-15)s:i]" +
+		 "[(15-18)s:j]" +
+		 "[(18-21)s:h]" +
+		 "[(21-24)s:i]" +
+		 "[(24-27)s:j]" +
+		 "[(27-30)s:h]" +
+		 "[(30-33)s:i]" +
+		 "[(33-36)s:j]");
+	ki.addDoc(fd);
+
+	// <a>x<a>y<a>zcde</a>cde</a>cde</a>cde</a>
+	fd = new FieldDocument();
+	fd.addTV("base",
+		 "x  y  z  c  d  e  c  d  e  c  d  e  ",
+		 "[(0-3)s:x|<>:a#0-3$<i>12]" +
+		 "[(3-6)s:y|<>:a#3-6$<i>9]" +
+		 "[(6-9)s:z|<>:a#6-9$<i>6]" +
+		 "[(9-12)s:c]" +
+		 "[(12-15)s:d]" +
+		 "[(15-18)s:e]" +
+		 "[(18-21)s:c]" +
+		 "[(21-24)s:d]" +
+		 "[(24-27)s:e]" +
+		 "[(27-30)s:c]" +
+		 "[(30-33)s:d]" +
+		 "[(33-36)s:e]");
+	ki.addDoc(fd);
+
+	// Save documents
+	ki.commit();
+
+	assertEquals(2, ki.numberOf("documents"));
+
+	SpanQuery sq = new SpanElementQuery("base", "a");
+
+	KorapResult kr = ki.search(sq, (short) 10);
+
+	assertEquals("totalResults", 6, kr.totalResults());
+
+	assertEquals("StartPos (0)", 0, kr.match(0).startPos);
+	assertEquals("EndPos (0)", 12, kr.match(0).endPos);
+	assertEquals("StartPos (1)", 1, kr.match(1).startPos);
+	assertEquals("EndPos (1)", 9, kr.match(1).endPos);
+	assertEquals("StartPos (2)", 2, kr.match(2).startPos);
+	assertEquals("EndPos (2)", 6, kr.match(2).endPos);
+
+	assertEquals("StartPos (0)", 0, kr.match(3).startPos);
+	assertEquals("EndPos (0)", 12, kr.match(3).endPos);
+	assertEquals("StartPos (1)", 1, kr.match(4).startPos);
+	assertEquals("EndPos (1)", 9, kr.match(4).endPos);
+	assertEquals("StartPos (2)", 2, kr.match(5).startPos);
+	assertEquals("EndPos (2)", 6, kr.match(5).endPos);
+
+	// System.err.println(kr.toJSON());
+    };
+
+    @Test
+    public void indexExample2 () throws IOException {
+	KorapIndex ki = new KorapIndex();
+
+	// <a><a><a>h</a>hhij</a>hij</a>hij</a>
+	FieldDocument fd = new FieldDocument();
+	fd.addTV("base",
+		 "h  h        i  j   h  i  j  h  i  j  ",
+		 "[(0-3)s:h|<>:a#0-27$<i>6|<>:a#0-18$<i>3|<>:a#0-36$<i>9]" +
+		 "[(3-6)s:h]" +
+		 "[(12-15)s:i]" +
+		 "[(15-18)s:j]" +
+		 "[(18-21)s:h]" +
+		 "[(21-24)s:i]" +
+		 "[(24-27)s:j]" +
+		 "[(27-30)s:h]" +
+		 "[(30-33)s:i]" +
+		 "[(33-36)s:j]");
+	ki.addDoc(fd);
+
+	// Save documents
+	ki.commit();
+
+	assertEquals(1, ki.numberOf("documents"));
+
+	SpanQuery sq = new SpanElementQuery("base", "a");
+
+	KorapResult kr = ki.search(sq, (short) 10);
+
+	assertEquals("totalResults", 3, kr.totalResults());
+	assertEquals("StartPos (0)", 0, kr.match(0).startPos);
+	assertEquals("EndPos (0)", 3, kr.match(0).endPos);
+	assertEquals("StartPos (1)", 0, kr.match(1).startPos);
+	assertEquals("EndPos (1)", 6, kr.match(1).endPos);
+	assertEquals("StartPos (2)", 0, kr.match(2).startPos);
+	assertEquals("EndPos (2)", 9, kr.match(2).endPos);
+    };
+
+    @Test
+    public void indexExample3 () throws IOException {
+	KorapIndex ki = new KorapIndex();
+
+	// <a><a><a>u</a></a></a>
+	FieldDocument fd = new FieldDocument();
+	fd.addTV("base",
+		 "xyz",
+		 "[(0-3)s:xyz|<>:a#0-3$<i>0|<>:a#0-3$<i>0|<>:a#0-3$<i>0|<>:b#0-3$<i>0]");
+	ki.addDoc(fd);
+
+	// <a><b>x<a>y<a>zcde</a>cde</a>cde</b></a>
+	fd = new FieldDocument();
+	fd.addTV("base",
+		 "x  y  z  c  d  e  c  d  e  c  d  e  ",
+		 "[(0-3)s:x|<>:a#0-36$<i>12|<>:b#0-36$<i>12]" +
+		 "[(3-6)s:y|<>:a#3-27$<i>9]" +
+		 "[(6-9)s:z|<>:a#6-18$<i>6]" +
+		 "[(9-12)s:c]" +
+		 "[(12-15)s:d]" +
+		 "[(15-18)s:e]" +
+		 "[(18-21)s:c]" +
+		 "[(21-24)s:d]" +
+		 "[(24-27)s:e]" +
+		 "[(27-30)s:c]" +
+		 "[(30-33)s:d]" +
+		 "[(33-36)s:e]");
+	ki.addDoc(fd);
+
+	// xyz
+	fd = new FieldDocument();
+	fd.addTV("base",
+		 "x  y  z  ",
+		 "[(0-3)s:x]" +
+		 "[(3-6)s:y]" +
+		 "[(6-9)s:z]");
+	ki.addDoc(fd);
+
+	// <a>x<a><b>y<a>zcde</a>cde</b></a>cde</a>
+	fd = new FieldDocument();
+	fd.addTV("base",
+		 "x  y  z  k  l  m  k  l  m  k  l  m  ",
+		 "[(0-3)s:x|<>:a#0-3$<i>12]" +
+		 "[(3-6)s:y|<>:a#3-6$<i>9|<>:b#3-6$<i>9]" +
+		 "[(6-9)s:z|<>:a#6-9$<i>6]" +
+		 "[(9-12)s:k]" +
+		 "[(12-15)s:l]" +
+		 "[(15-18)s:m]" +
+		 "[(18-21)s:k]" +
+		 "[(21-24)s:l]" +
+		 "[(24-27)s:m]" +
+		 "[(27-30)s:k]" +
+		 "[(30-33)s:l]" +
+		 "[(33-36)s:m]");
+	ki.addDoc(fd);
+
+	// <a><a><a>h</a>hhij</a>hij</a>hij</a>
+	fd = new FieldDocument();
+	fd.addTV("base",
+		 "h  h        i  j  h  i  j  h  i  j  ",
+		 "[(0-3)s:h|<>:a#0-27$<i>6|<>:a#0-18$<i>3|<>:a#0-36$<i>9]" +
+		 "[(3-6)s:h]" +
+		 "[(12-15)s:i]" +
+		 "[(15-18)s:j]" +
+		 "[(18-21)s:h]" +
+		 "[(21-24)s:i]" +
+		 "[(24-27)s:j]" +
+		 "[(27-30)s:h]" +
+		 "[(30-33)s:i]" +
+		 "[(33-36)s:j]");
+	ki.addDoc(fd);
+
+	// xyz
+	fd = new FieldDocument();
+	fd.addTV("base",
+		 "a  b  c  ",
+		 "[(0-3)s:a]" +
+		 "[(3-6)s:b]" +
+		 "[(6-9)s:c]");
+	ki.addDoc(fd);
+
+
+	// Save documents
+	ki.commit();
+
+	assertEquals(6, ki.numberOf("documents"));
+
+	SpanQuery sq = new SpanElementQuery("base", "a");
+
+	KorapResult kr = ki.search(sq, (short) 15);
+
+	// System.err.println(kr.toJSON());
+
+	assertEquals("totalResults", 12, kr.totalResults());
+
+	assertEquals("StartPos (0)", 0, kr.match(0).startPos);
+	assertEquals("EndPos (0)", 0, kr.match(0).endPos);
+	assertEquals("StartPos (1)", 0, kr.match(1).startPos);
+	assertEquals("EndPos (1)", 0, kr.match(1).endPos);
+	assertEquals("StartPos (2)", 0, kr.match(2).startPos);
+	assertEquals("EndPos (2)", 0, kr.match(2).endPos);
+
+	assertEquals("StartPos (3)", 0, kr.match(3).startPos);
+	assertEquals("EndPos (3)", 12, kr.match(3).endPos);
+	assertEquals("StartPos (4)", 1, kr.match(4).startPos);
+	assertEquals("EndPos (4)", 9, kr.match(4).endPos);
+	assertEquals("StartPos (5)", 2, kr.match(5).startPos);
+	assertEquals("EndPos (5)", 6, kr.match(5).endPos);
+
+	assertEquals("StartPos (6)", 0, kr.match(6).startPos);
+	assertEquals("EndPos (6)", 12, kr.match(6).endPos);
+	assertEquals("StartPos (7)", 1, kr.match(7).startPos);
+	assertEquals("EndPos (7)", 9, kr.match(7).endPos);
+	assertEquals("StartPos (8)", 2, kr.match(8).startPos);
+	assertEquals("EndPos (8)", 6, kr.match(8).endPos);
+
+	assertEquals("StartPos (9)", 0, kr.match(9).startPos);
+	assertEquals("EndPos (9)", 3, kr.match(9).endPos);
+	assertEquals("StartPos (10)", 0, kr.match(10).startPos);
+	assertEquals("EndPos (10)", 6, kr.match(10).endPos);
+	assertEquals("StartPos (11)", 0, kr.match(11).startPos);
+	assertEquals("EndPos (11)", 9, kr.match(11).endPos);
+    };
+
+
+    @Test
+    public void indexExample4 () throws IOException {
+	KorapIndex ki = new KorapIndex();
+
+	FieldDocument fd = new FieldDocument();
+	fd.addTV("base",
+		 "111111ccc222222fff333333iiijjj",
+		 "[(0-3)s:a|_0#0-3]" +
+		 "[(3-6)s:b|_1#3-6]" +
+		 "[(6-9)s:c|_2#6-9]" +
+		 "[(9-12)s:d|_3#9-12|<>:a#9-15$<i>4]" +
+		 "[(12-15)s:e|_4#12-15]" +
+		 "[(15-18)s:f|_5#15-18]" +
+		 "[(18-21)s:g|_6#18-21|<>:a#18-24$<i>8]" +
+		 "[(21-24)s:h|_7#21-24]" +
+		 "[(24-27)s:i|_8#24-27]" +
+		 "[(27-30)s:j|_9#27-30]");
+	ki.addDoc(fd);
+
+	// Save documents
+	ki.commit();
+
+	assertEquals(1, ki.numberOf("documents"));
+
+	SpanQuery sq = new SpanElementQuery("base", "a");
+
+	KorapResult kr = ki.search(sq, 0, (short) 15, false, (short) 3, false, (short) 3);
+	
+	assertEquals("... ccc[222222]fff ...", kr.match(0).getSnippetBrackets());
+	assertEquals("... fff[333333]iii ...", kr.match(1).getSnippetBrackets());
+    };
+
+
+    @Test
+    public void indexExample5 () throws IOException {
+	KorapIndex ki = new KorapIndex();
+
+	FieldDocument fd = new FieldDocument();
+	fd.addTV("base",
+		 "111111ccc222222fff333333iiijjj",
+		 "[(0-3)s:a|_0#0-3|<>:a#0-6$<i>1]" +
+		 "[(3-6)s:b|_1#3-6]" +
+		 "[(6-9)s:c|_2#6-9]" +
+		 "[(9-12)s:d|_3#9-12|<>:a#9-15$<i>4]" +
+		 "[(12-15)s:e|_4#12-15]" +
+		 "[(15-18)s:f|_5#15-18]" +
+		 "[(18-21)s:g|_6#18-21|<>:a#18-24$<i>8]" +
+		 "[(21-24)s:h|_7#21-24]" +
+		 "[(24-27)s:i|_8#24-27]" +
+		 "[(27-30)s:j|_9#27-30]");
+	ki.addDoc(fd);
+
+	// Save documents
+	ki.commit();
+
+	assertEquals(1, ki.numberOf("documents"));
+
+	SpanQuery sq = new SpanElementQuery("base", "a");
+
+	KorapResult kr = ki.search(sq, 0, (short) 15, false, (short) 3, false, (short) 3);
+
+	assertEquals("[111111]ccc ...", kr.match(0).getSnippetBrackets());
+	assertEquals("... ccc[222222]fff ...", kr.match(1).getSnippetBrackets());
+	assertEquals("... fff[333333]iii ...", kr.match(2).getSnippetBrackets());
+    };
+};
diff --git a/trunk/src/test/java/de/ids_mannheim/korap/index/TestFieldDocument.java b/trunk/src/test/java/de/ids_mannheim/korap/index/TestFieldDocument.java
new file mode 100644
index 0000000..f228b93
--- /dev/null
+++ b/trunk/src/test/java/de/ids_mannheim/korap/index/TestFieldDocument.java
@@ -0,0 +1,208 @@
+import java.util.*;
+import java.io.*;
+
+import org.apache.lucene.util.Version;
+import org.apache.lucene.util.BytesRef;
+import org.apache.lucene.util.Bits;
+
+import static org.junit.Assert.*;
+import org.junit.Test;
+import org.junit.Ignore;
+import org.junit.runner.RunWith;
+import org.junit.runners.JUnit4;
+
+import com.fasterxml.jackson.annotation.*;
+import com.fasterxml.jackson.databind.ObjectMapper;
+
+import de.ids_mannheim.korap.KorapIndex;
+import de.ids_mannheim.korap.KorapQuery;
+import de.ids_mannheim.korap.KorapResult;
+import de.ids_mannheim.korap.KorapMatch;
+import de.ids_mannheim.korap.KorapDocument;
+import de.ids_mannheim.korap.query.SpanNextQuery;
+import de.ids_mannheim.korap.query.SpanMatchModifyQuery;
+import de.ids_mannheim.korap.query.SpanClassQuery;
+import de.ids_mannheim.korap.index.FieldDocument;
+import de.ids_mannheim.korap.analysis.MultiTermTokenStream;
+
+import org.apache.lucene.search.spans.SpanQuery;
+import org.apache.lucene.search.spans.SpanTermQuery;
+import org.apache.lucene.index.Term;
+
+// mvn -Dtest=TestWithinIndex#indexExample1 test
+
+@RunWith(JUnit4.class)
+public class TestFieldDocument {
+
+    @Test
+    public void indexExample1 () throws IOException {
+	FieldDocument fd = new FieldDocument();
+
+	fd.addString("corpusID", "WPD");
+	fd.addString("ID", "WPD-AAA-00001");
+	fd.addText("textClass", "music entertainment");
+	fd.addText("author", "Peter Frankenfeld");
+	fd.addInt("pubDate", 20130617);
+	fd.addText("title", "Wikipedia");
+	fd.addText("subTitle", "Die freie Enzyklopädie");
+	fd.addString("pubPlace", "Bochum");
+	fd.addInt("lastModified", 20130717);
+	fd.addTV("tokens",
+		 "abc",
+		 "[(0-1)s:a|i:a|_0#0-1|-:t$<i>10]" +
+		 "[(1-2)s:b|i:b|_1#1-2]" +
+		 "[(2-3)s:c|i:c|_2#2-3]");
+
+	assertEquals(fd.doc.getField("title").name(), "title");
+	assertEquals(fd.doc.getField("title").stringValue(), "Wikipedia");
+
+	assertEquals(fd.doc.getField("corpusID").name(), "corpusID");
+	assertEquals(fd.doc.getField("corpusID").stringValue(), "WPD");
+
+	assertEquals(fd.doc.getField("ID").name(), "ID");
+	assertEquals(fd.doc.getField("ID").stringValue(), "WPD-AAA-00001");
+
+	assertEquals(fd.doc.getField("subTitle").name(), "subTitle");
+	assertEquals(fd.doc.getField("subTitle").stringValue(), "Die freie Enzyklopädie");
+
+	assertEquals(fd.doc.getField("pubPlace").name(), "pubPlace");
+	assertEquals(fd.doc.getField("pubPlace").stringValue(), "Bochum");
+
+	assertEquals(fd.doc.getField("lastModified").name(), "lastModified");
+	assertEquals(fd.doc.getField("lastModified").stringValue(), "20130717");
+
+	assertEquals(fd.doc.getField("tokens").name(), "tokens");
+	assertEquals(fd.doc.getField("tokens").stringValue(), "abc");
+
+	assertEquals(fd.doc.getField("author").name(), "author");
+	assertEquals(fd.doc.getField("author").stringValue(), "Peter Frankenfeld");
+
+	assertEquals(fd.doc.getField("textClass").name(), "textClass");
+	assertEquals(fd.doc.getField("textClass").stringValue(), "music entertainment");
+    };
+
+    @Test
+    public void indexExample2 () throws IOException {
+
+	String json = new String(
+"{" +
+"  \"fields\" : [" +
+"    { "+
+"      \"primaryData\" : \"abc\"" +
+"    }," +
+"    {" +
+"      \"name\" : \"tokens\"," +
+"      \"data\" : [" +
+"         [ \"s:a\", \"i:a\", \"_0#0-1\", \"-:t$<i>3\"]," +
+"         [ \"s:b\", \"i:b\", \"_1#1-2\" ]," +
+"         [ \"s:c\", \"i:c\", \"_2#2-3\" ]" +
+"      ]" +
+"    }" +
+"  ]," +
+"  \"corpusID\"  : \"WPD\"," +
+"  \"ID\"        : \"WPD-AAA-00001\"," +
+"  \"textClass\" : \"music entertainment\"," +
+"  \"author\"    : \"Peter Frankenfeld\"," +
+"  \"pubDate\"   : 20130617," +
+"  \"title\"     : \"Wikipedia\"," +
+"  \"subTitle\"  : \"Die freie Enzyklopädie\"," +
+"  \"pubPlace\"  : \"Bochum\"" +
+"}");
+
+	KorapIndex ki = new KorapIndex();
+	FieldDocument fd = ki.addDoc(json);
+
+	ki.commit();
+
+	assertEquals(fd.getPrimaryData(),"abc");
+	assertEquals(fd.getCorpusID(),"WPD");
+	assertEquals(fd.getID(),"WPD-AAA-00001");
+	assertEquals(fd.getTextClass(),"music entertainment");
+	assertEquals(fd.getAuthor(),"Peter Frankenfeld");
+	assertEquals(fd.getTitle(),"Wikipedia");
+	assertEquals(fd.getSubTitle(),"Die freie Enzyklopädie");
+	assertEquals(fd.getPubPlace(),"Bochum");
+	assertEquals(fd.getPubDate().toDisplay(),"2013-06-17");
+
+	KorapQuery kq = new KorapQuery("tokens");
+	KorapResult kr = ki.search((SpanQuery) kq.seq(kq._(3, kq.seg("s:b"))).toQuery());
+	KorapMatch km = kr.getMatch(0);
+
+	assertEquals(km.getPrimaryData(),"abc");
+	assertEquals(km.getCorpusID(),"WPD");
+	assertEquals(km.getID(),"WPD-AAA-00001");
+	assertEquals(km.getTextClass(),"music entertainment");
+	assertEquals(km.getAuthor(),"Peter Frankenfeld");
+	assertEquals(km.getTitle(),"Wikipedia");
+	assertEquals(km.getSubTitle(),"Die freie Enzyklopädie");
+	assertEquals(km.getPubPlace(),"Bochum");
+	assertEquals(km.getPubDate().toDisplay(),"2013-06-17");
+
+	assertEquals(km.getSnippetBrackets(),"a[{3:b}]c");
+    };
+
+    @Test
+    public void indexExample3 () throws IOException {
+
+	// Construct index
+	KorapIndex ki = new KorapIndex();
+
+	// Indexing test files
+	for (String i : new String[] {"00001", "00002", "00003", "00004", "00005", "00006", "02439"}) {
+	    FieldDocument fd = ki.addDocFile(
+	        getClass().getResource("/wiki/" + i + ".json.gz").getFile(), true
+            );
+	};
+	ki.commit();
+
+	// Start creating query
+	KorapQuery kq = new KorapQuery("tokens");
+	
+	// within(<xip/const:NPA>, {1: {2: [cnx/p=A & mate/m=number:sg]}[opennlp/p=NN & tt/p=NN]})
+	SpanQuery query =
+	    kq.within(
+              kq.tag("xip/const:NPA"),
+              kq._(1,
+                kq.seq(
+	          kq._(2, kq.seg("cnx/p:A").with("mate/m:number:sg"))
+                ).append(
+  		  kq.seg("opennlp/p:NN").with("tt/p:NN")
+	        )
+	      )
+            ).toQuery();
+
+
+	KorapResult kr;
+	/*
+	kr = ki.search(query, 0, (short) 20, true, (short) 6, true, (short) 6);
+	System.err.println(kr.toJSON());
+	*/
+
+	kr = ki.search(query, 0, (short) 5, true, (short) 2, false, (short) 5);
+	assertEquals(36, kr.totalResults());
+	assertEquals(5, kr.itemsPerPage());
+	assertEquals("... Texten eine [{1:{2:durchschnittliche} Häufigkeit}] von  ...", kr.match(0).getSnippetBrackets());
+	assertEquals("... damit der [{1:{2:sechsthäufigste} Buchstabe}] in d ...", kr.match(1).getSnippetBrackets());
+	assertEquals("... A der [{1:{2:einzige} Buchstabe}] im D ...", kr.match(2).getSnippetBrackets());
+	assertEquals("... für den [offenen vorderen {1:{2:ungerundeten} Vokal}] a: A ...", kr.match(3).getSnippetBrackets());
+	assertEquals("... in eine [{1:{2:flache} Stellung}] nied ...", kr.match(4).getSnippetBrackets());
+
+
+	query = kq.seg("tt/l:Norwegen").toQuery();
+	kr = ki.search(query, 0, (short) 5, true, (short) 2, false, (short) 5);
+
+	assertEquals(3, kr.totalResults());
+	assertEquals("... Lofoten in [Norwegen], unt ...", kr.match(0).getSnippetBrackets());
+	assertEquals("WPD_AAA.00002", kr.match(0).getID());
+	assertEquals("... es in [Norwegen] noch ...", kr.match(1).getSnippetBrackets());
+	assertEquals("WPD_AAA.00002", kr.match(1).getID());
+	assertEquals("... Orte in [Norwegen]: Å i ...", kr.match(2).getSnippetBrackets());
+	assertEquals("WPD_AAA.00005", kr.match(2).getID());
+
+
+	query = kq.seg("tt/l:Vokal").without("mate/m:number:sg").toQuery();
+	kr = ki.search(query, 0, (short) 5, true, (short) 2, false, (short) 5);
+	assertEquals(1, kr.totalResults());
+	assertEquals("... reich an [Vokalen] war, ...", kr.match(0).getSnippetBrackets());
+    };
+};
diff --git a/trunk/src/test/java/de/ids_mannheim/korap/index/TestIndex.java b/trunk/src/test/java/de/ids_mannheim/korap/index/TestIndex.java
new file mode 100644
index 0000000..b74ebc1
--- /dev/null
+++ b/trunk/src/test/java/de/ids_mannheim/korap/index/TestIndex.java
@@ -0,0 +1,799 @@
+import java.util.*;
+import java.io.*;
+
+import de.ids_mannheim.korap.analysis.MultiTermToken;
+import de.ids_mannheim.korap.query.wrap.SpanSegmentQueryWrapper;
+import de.ids_mannheim.korap.query.wrap.SpanRegexQueryWrapper;
+import de.ids_mannheim.korap.query.wrap.SpanSequenceQueryWrapper;
+import de.ids_mannheim.korap.query.SpanWithinQuery;
+
+import static de.ids_mannheim.korap.Test.*;
+
+import org.apache.lucene.analysis.standard.StandardAnalyzer;
+import org.apache.lucene.analysis.TokenFilter;
+import org.apache.lucene.analysis.TokenStream;
+import org.apache.lucene.analysis.tokenattributes.CharTermAttribute;
+
+import org.apache.lucene.index.Term;
+import org.apache.lucene.index.TermsEnum;
+import org.apache.lucene.index.TermContext;
+
+import org.apache.lucene.index.DocsAndPositionsEnum;
+import org.apache.lucene.index.DirectoryReader;
+import org.apache.lucene.index.IndexWriter;
+import org.apache.lucene.index.IndexWriterConfig;
+import org.apache.lucene.index.IndexWriterConfig.OpenMode;
+import org.apache.lucene.index.AtomicReaderContext;
+
+import org.apache.lucene.queryparser.classic.ParseException;
+import org.apache.lucene.queryparser.classic.QueryParser;
+
+import org.apache.lucene.search.IndexSearcher;
+import org.apache.lucene.search.Query;
+import org.apache.lucene.search.TermQuery;
+import org.apache.lucene.search.BooleanClause;
+import org.apache.lucene.search.BooleanQuery;
+import org.apache.lucene.search.PhraseQuery;
+import org.apache.lucene.search.NumericRangeQuery;
+import org.apache.lucene.search.spans.Spans;
+import org.apache.lucene.search.spans.SpanQuery;
+import org.apache.lucene.search.spans.SpanOrQuery;
+import org.apache.lucene.search.spans.SpanMultiTermQueryWrapper;
+import org.apache.lucene.search.spans.SpanTermQuery;
+import org.apache.lucene.search.spans.SpanNearQuery;
+import org.apache.lucene.search.spans.SpanNotQuery;
+import org.apache.lucene.search.spans.NearSpansOrdered;
+import org.apache.lucene.search.WildcardQuery;
+import org.apache.lucene.search.ScoreDoc;
+import org.apache.lucene.search.TopScoreDocCollector;
+import org.apache.lucene.search.TopDocs;
+import org.apache.lucene.search.RegexpQuery;
+
+import org.apache.lucene.store.Directory;
+import org.apache.lucene.store.RAMDirectory;
+import org.apache.lucene.store.SimpleFSDirectory; // temporary
+
+import org.apache.lucene.util.Version;
+import org.apache.lucene.util.BytesRef;
+import org.apache.lucene.util.Bits;
+
+import static org.junit.Assert.*;
+import org.junit.Test;
+import org.junit.Ignore;
+import org.junit.runner.RunWith;
+import org.junit.runners.JUnit4;
+
+@RunWith(JUnit4.class)
+public class TestIndex { // extends LuceneTestCase {
+    // Create index in RAM
+    //    private Directory index = new RAMDirectory();
+
+    private Directory index = new RAMDirectory();
+
+    @Test
+    public void multiTermToken () {
+	MultiTermToken test = new MultiTermToken("hunde", "pos:n", "m:gen:pl");
+	assertEquals(test.terms.get(0).term, "hunde");
+	assertEquals(test.terms.get(1).term, "pos:n");
+	assertEquals(test.terms.get(2).term, "m:gen:pl");
+	assertEquals(test.terms.get(0).posIncr, 1, 1);
+	assertEquals(test.terms.get(1).posIncr, 0, 1);
+	assertEquals(test.terms.get(2).posIncr, 0, 1);
+
+	test = new MultiTermToken("hunde", "pos:n", "m:gen:pl");
+	assertEquals(test.terms.get(0).term, "hunde");
+	assertEquals(test.terms.get(1).term, "pos:n");
+	assertEquals(test.terms.get(2).term, "m:gen:pl");
+	assertEquals(test.terms.get(0).posIncr, 1, 1);
+	assertEquals(test.terms.get(1).posIncr, 0, 1);
+	assertEquals(test.terms.get(2).posIncr, 0, 1);
+    };
+
+    private List initIndexer () throws IOException {
+	List<Map<String, String>> list = new ArrayList<>();
+
+	Map<String, String> d1 = new HashMap<String, String>();
+	d1.put("id",        "w1");
+	d1.put("corpus",    "wiki");
+	d1.put("author",    "Nils Diewald");
+	d1.put("title",     "Wikipedia");
+	d1.put("subtitle",  "A test");
+	d1.put("pubDate",   "20130701");
+	d1.put("pubPlace",  "Mannheim");
+	d1.put("textClass", "news sports");
+	d1.put("textStr",   "Er nahm den Hunden die Angst.");
+	d1.put("text",      "Er#0-2|PPER|er|c:nom;p:3;n:sg;g:masc|<>:s#0-29$<i>7 " +
+                            "nahm#3-7|VVFIN|nehmen|p:3;n:sg;t:past;m:ind| " +
+                            "den#8-11|ART|der|c:acc;n:sg;g:masc| " +
+                            "Hunden#12-18|NN|hund|c:acc;n:sg;g:masc| " +
+	                    "die#19-22|ART|der|c:nom;n:sg;g:fem| " +
+                            "Angst#23-28|NN|angst|c:nom;n:sg;g:fem| " +
+	                    ".#28-29|$.|.||");
+	list.add(d1);
+
+	Map<String, String> d2 = new HashMap<String, String>();
+
+	d2.put("id",        "w2");
+	d2.put("corpus",    "wiki");
+	d2.put("author",    "Peter Thomas");
+	d2.put("title",     "Waldartikel");
+	d2.put("subtitle",  "Another test");
+	d2.put("pubDate",   "20130723");
+	d2.put("pubPlace",  "Bielefeld");
+	d2.put("textClass", "news");
+	d2.put("textStr",   "Sie liefen durch den Wald.");
+	d2.put("text",      "Sie#0-3|PPER|sie|c:nom;p:3;n:pl;g:all|<>:s#0-26$<i>6 " +
+                            "liefen#4-10|VVFIN|laufen|p:3;n:pl;t:past;m:ind| " +
+                            "durch#11-16|APPR|durch|| " +
+                            "den#17-20|ART|der|c:acc;n:sg;g:masc| " +
+	                    "Wald#21-25|NN|wald|c:acc;n:sg;g:masc| " +
+	                    ".#25-26|$.|.||");
+	list.add(d2);
+
+	Map<String, String> d3 = new HashMap<String, String>();
+	d3.put("id",        "w3");
+	d3.put("corpus",    "zeitung");
+	d3.put("author",    "Michael Meier");
+	d3.put("title",     "Angst");
+	d3.put("subtitle",  "Starr vor Angst");
+	d3.put("pubDate",   "20130713");
+	d3.put("pubPlace",  "Bielefeld");
+	d3.put("textClass", "sports");
+	d3.put("textStr",   "Er wagte nicht, sich zu ruehren. Er war starr vor Angst.");
+	d3.put("text",      "Er#0-2|PPER|er|c:nom;n:sg;g:masc;p:3|<>:s#0-32$<i>8 " +
+	                    "wagte#3-8|VVFIN|wagen|p:3;n:sg;t:past;m:ind| " +
+	                    "nicht#9-14|PTKNEG|nicht|| " +
+	                    ",#14-15|$,|,|| " +
+                            "sich#16-20|PRF|sich|c:acc;p:3;n:sg| " +
+	                    "zu#21-23|PTKZU|zu|| " +
+	                    "ruehren#24-31|VVFIN|ruehren|| " +
+	                    ".#31-32|$.|.|| " +
+	                    "Er#33-35|PPER|er|c:nom;p:3;n:sg;g:masc|<>:s#33-56$<i>14 " +
+	                    "war#36-39|VAFIN|sein|p:3;n:sg;t:past;m:ind| " +
+	                    "starr#40-45|ADJD|starr|comp:pos| " +
+	                    "vor#46-49|APPR|vor|| " +
+	                    "Angst#50-55|NN|angst|c:dat;n:sg;g:fem| " +
+	                    ".#55-56|$.|.||");
+	list.add(d3);
+
+	return list;
+    };
+
+    @Test
+    public void indexLucene () throws IOException {
+
+	// Base analyzer for searching and indexing
+	StandardAnalyzer analyzer = new StandardAnalyzer(Version.LUCENE_43);
+
+	// Based on
+	// http://lucene.apache.org/core/4_0_0/core/org/apache/lucene/
+	// analysis/Analyzer.html?is-external=true
+
+	// Create configuration with base analyzer
+	IndexWriterConfig config = new IndexWriterConfig(Version.LUCENE_43, analyzer);
+
+	// Add a document 1 with the correct fields
+	IndexWriter w = new IndexWriter(index, config);
+
+	Collection docs = initIndexer();
+
+	@SuppressWarnings("unchecked")
+	Iterator<Map<String,String>> i = (Iterator<Map<String,String>>) docs.iterator();
+
+	for (; i.hasNext(); ) {
+	    addDoc(w, i.next());
+	};
+
+	assertEquals(3, w.numDocs());
+
+	w.close();
+
+	// Check directory
+	DirectoryReader reader = DirectoryReader.open( index );
+	assertEquals(docs.size(), reader.maxDoc());
+	assertEquals(docs.size(), reader.numDocs());
+
+	// Check searcher
+	IndexSearcher searcher = new IndexSearcher( reader );
+
+	// textClass
+	// All texts of text class "news"
+	assertEquals(2,
+	  searcher.search(
+	    new TermQuery(
+	      new Term("textClass", "news")
+	    ), 10
+	  ).totalHits
+        );
+
+	// textClass
+	// All texts of text class "sports"
+	assertEquals(2,
+	  searcher.search(
+	    new TermQuery(
+	      new Term("textClass", "sports")
+	    ), 10
+	  ).totalHits
+        );
+
+	// TextIndex
+	// All docs containing "l:nehmen"
+	assertEquals(1,
+	  searcher.search(
+	    new TermQuery(
+	      new Term("text", "l:nehmen")
+	    ), 10
+	  ).totalHits
+        );
+
+	// TextIndex
+	// All docs containing "s:den"
+	assertEquals(2,
+          searcher.search(
+            new TermQuery(
+              new Term("text", "s:den")
+	    ), 10
+	  ).totalHits
+        );
+
+	/*
+	assertEquals(3,
+          searcher.search(
+            new TermQuery(
+              new Term("text", "T")
+	    ), 10
+	  ).totalHits
+        );
+	*/
+
+	// BooleanQuery
+	// All docs containing "s:den" and "l:sie"
+	TermQuery s_den = new TermQuery(new Term("text", "s:den"));
+	TermQuery l_sie = new TermQuery(new Term("text", "l:sie"));
+	BooleanQuery bool = new BooleanQuery();
+	bool.add(s_den, BooleanClause.Occur.MUST);
+	bool.add(l_sie, BooleanClause.Occur.MUST);
+
+	assertEquals(1, searcher.search(bool, 10).totalHits);
+
+	// BooleanQuery
+	// All docs containing "s:den" or "l:sie"
+	bool = new BooleanQuery();
+	bool.add(s_den, BooleanClause.Occur.SHOULD);
+	bool.add(l_sie, BooleanClause.Occur.SHOULD);
+	assertEquals(2, searcher.search(bool, 10).totalHits);
+
+
+	// RegexpQuery
+	// All docs containing ".{4}en" (liefen und Hunden)
+	RegexpQuery srquery = new RegexpQuery(
+            new Term("text", "s:.{4}en")
+        );
+	assertEquals(2, searcher.search(srquery, 10).totalHits);
+
+	// RegexpQuery
+	// All docs containing "E." (Er) (2x)
+        srquery = new RegexpQuery(
+            new Term("text", "s:E.")
+        );
+	assertEquals(2, searcher.search(srquery, 10).totalHits);
+
+	SpanRegexQueryWrapper ssrquery = new SpanRegexQueryWrapper("text", "s:E.");
+	assertEquals(2, searcher.search(ssrquery.toQuery(), 10).totalHits);
+
+
+	// RegexpQuery
+	// All docs containing "E." (er) (0x)
+	srquery = new RegexpQuery(
+            new Term("text", "s:e.")
+        );
+	assertEquals(0, searcher.search(srquery, 10).totalHits);
+
+	ssrquery = new SpanRegexQueryWrapper("text", "s:e.");
+	assertEquals(0, searcher.search(ssrquery.toQuery(), 10).totalHits);
+
+	// Check http://comments.gmane.org/gmane.comp.jakarta.lucene.user/52283
+	// for Carstens question on wildcards
+
+	// RegexpQuery
+	// All docs containing "E."/i ([Ee]r) (2x)
+	srquery = new RegexpQuery(
+            new Term("text", "i:e.")
+        );
+	assertEquals(2, searcher.search(srquery, 10).totalHits);
+
+	ssrquery = new SpanRegexQueryWrapper("text", "s:e.", true);
+	assertEquals("SpanMultiTermQueryWrapper(text:/i:e./)", ssrquery.toQuery().toString());
+	assertEquals(2, searcher.search(ssrquery.toQuery(), 10).totalHits);
+
+	// All docs containing "ng"/x (Angst) (2x)
+	srquery = new RegexpQuery(
+            new Term("text", "s:.*ng.*")
+        );
+	assertEquals(2, searcher.search(srquery, 10).totalHits);
+
+	// [base=angst]
+	SpanTermQuery stq = new SpanTermQuery(new Term("text", "l:angst"));
+	assertEquals(2, searcher.search(srquery, 10).totalHits);
+
+	// vor Angst
+	// [orth=vor][orth=Angst]
+	SpanNearQuery snquery = new SpanNearQuery(
+          new SpanQuery[] {
+	      new SpanTermQuery(new Term("text", "s:vor")),
+	      new SpanTermQuery(new Term("text", "s:Angst"))
+	  },
+	  1,
+	  true
+        );
+	assertEquals(1, searcher.search(snquery, 10).totalHits);
+
+	// Spannearquery [p:VVFIN][]{,5}[m:nom:sg:fem]
+	snquery = new SpanNearQuery(
+          new SpanQuery[] {
+	    new SpanTermQuery(new Term("text", "p:VVFIN")),
+	    new SpanSegmentQueryWrapper("text", "m:c:nom", "m:n:sg", "m:g:fem").toQuery()
+          },
+	  5,     // slop
+	  true   // inOrder
+          // Possible: CollectPayloads
+	);
+	assertEquals(1, searcher.search(snquery, 10).totalHits);
+
+
+	// Spannearquery [p:VVFIN][m:acc:sg:masc]
+	snquery = new SpanNearQuery(
+          new SpanQuery[] {
+	    new SpanTermQuery(new Term("text", "p:VVFIN")),
+	    new SpanNearQuery(
+	      new SpanQuery[] {
+                new SpanTermQuery(new Term("text", "m:c:acc")),
+	        new SpanNearQuery(
+	          new SpanQuery[] {
+                    new SpanTermQuery(new Term("text", "m:n:sg")),
+                    new SpanTermQuery(new Term("text", "m:g:masc"))
+                  },
+		  -1,
+		  false
+		)
+       	      },
+	      -1,     // slop
+	      false   // inOrder
+	      // Possible: CollectPayloads
+	    )
+            // new SpanTermQuery(new Term("text", "m:-acc:--sg:masc"))
+          },
+	  0,     // slop
+	  true   // inOrder
+          // Possible: CollectPayloads
+	);
+	assertEquals(1, searcher.search(snquery, 10).totalHits);
+
+
+	// Spannearquery [p:VVFIN|m:3:sg:past:ind]
+	// Exact match!
+	snquery = new SpanNearQuery(
+	  new SpanQuery[] {
+	    new SpanTermQuery(new Term("text", "p:VVFIN")),
+            new SpanNearQuery(
+              new SpanQuery[] {
+	        new SpanTermQuery(new Term("text", "m:p:3")),
+	        new SpanNearQuery(
+                  new SpanQuery[] {
+	            new SpanTermQuery(new Term("text", "m:n:sg")),
+	            new SpanNearQuery(
+		      new SpanQuery[] {
+		        new SpanTermQuery(new Term("text", "m:t:past")),
+	                new SpanTermQuery(new Term("text", "m:m:ind")),
+                      },
+		      -1,
+		      false
+		    )
+		  },
+		  -1,
+		  false
+	        )
+              },
+	      -1,
+	      false
+	    )
+	  },
+	  // new SpanTermQuery(new Term("text", "m:---3:--sg:past:-ind"))
+	  -1,     // slop
+	  false   // inOrder
+          // Possible: CollectPayloads
+	);
+	assertEquals(2, searcher.search(snquery, 10).totalHits);
+
+	// To make sure, this is not equal:
+	// Spannearquery [p:VVFIN & m:3:sg:past:ind]
+	// Exact match!
+	// Maybe it IS equal
+	snquery = new SpanNearQuery(
+	  new SpanQuery[] {
+	    new SpanTermQuery(new Term("text", "p:VVFIN")),
+	    new SpanTermQuery(new Term("text", "m:p:3")),
+	    new SpanTermQuery(new Term("text", "m:n:sg")),
+	    new SpanTermQuery(new Term("text", "m:t:past")),
+	    new SpanTermQuery(new Term("text", "m:m:ind")),
+	  },
+	  -1,     // slop
+	  false   // inOrder
+          // Possible: CollectPayloads
+	);
+	assertNotEquals(2, searcher.search(snquery, 10).totalHits);
+	// assertEquals(2, searcher.search(snquery, 10).totalHits);
+
+	// Spannearquery [p:VVFIN & m:3:sg & past:ind]
+	SpanSegmentQueryWrapper sniquery = new SpanSegmentQueryWrapper(
+          "text",
+	  "p:VVFIN",
+	  "m:p:3",
+	  "m:n:sg",
+	  "m:t:past",
+	  "m:m:ind"
+        );
+	assertEquals(2, searcher.search(sniquery.toQuery(), 10).totalHits);
+
+
+	// Todo:
+
+	/*
+	sniquery = new SpanSegmentQuery(
+          "text",
+	  "p:VVFIN",
+	  "m:p:3",
+	  "m:n:sg",
+	  "m:t:past",
+	  "m:m:ind"
+        );
+	*/
+
+	// Spannearquery [p:VVFIN][]{,5}[m:nom:sg:fem]
+	snquery = new SpanNearQuery(
+          new SpanQuery[] {
+	    new SpanTermQuery(new Term("text", "p:VVFIN")),
+	    new SpanSegmentQueryWrapper("text", "m:c:nom", "m:n:sg", "m:g:fem").toQuery()
+          },
+	  5,     // slop
+	  true   // inOrder
+          // Possible: CollectPayloads
+	);
+	assertEquals(1, searcher.search(snquery, 10).totalHits);
+
+	sniquery = new SpanSegmentQueryWrapper("text", "p:VVFIN", "m:p:3", "m:t:past", "m:m:ind", "m:n:sg");
+	assertEquals(2, searcher.search(sniquery.toQuery(), 10).totalHits);
+
+	// [p = VVFIN & m:p = 3 & m:t = past & m:n != pl] or
+	// [p = VVFIN & m:p = 3 & m:t = past & !m:n = pl]
+	// TODO: Problem: What should happen in case the category does not exist?
+	// pssible solution: & ( m:n != pl & exists(m:n))
+	sniquery = new SpanSegmentQueryWrapper("text", "p:VVFIN", "m:p:3", "m:t:past");
+	SpanQuery snqquery = new SpanNotQuery(sniquery.toQuery(), new SpanTermQuery(new Term("text", "m:n:pl")));
+	assertEquals(2, searcher.search(snqquery, 10).totalHits);
+
+	// [p = NN & (m:c: = dat | m:c = acc)]
+	snquery = new SpanNearQuery(
+	    new SpanQuery[] {
+		new SpanTermQuery(new Term("text", "p:NN")),
+  	        new SpanOrQuery(
+			new SpanTermQuery( new Term("text", "m:c:nom" )),
+		        new SpanTermQuery( new Term("text", "m:c:acc" ))
+	        )
+	    },
+	    -1,
+	    false
+	);
+
+	assertEquals(2, searcher.search(snqquery, 10).totalHits);
+
+	// [p = NN & !(m:c: = nom | m:c = acc)]
+	snqquery = new SpanNotQuery(
+	   new SpanTermQuery(new Term("text", "p:NN")),
+	   new SpanOrQuery(
+		new SpanTermQuery( new Term("text", "m:c:nom" )),
+		new SpanTermQuery( new Term("text", "m:c:acc" ))
+	   )
+        );
+	assertEquals(1, searcher.search(snqquery, 10).totalHits);
+
+	// [p = NN & !(m:c = nom)]
+	snqquery = new SpanNotQuery(
+	   new SpanTermQuery( new Term("text", "p:NN")),
+	   new SpanTermQuery( new Term("text", "m:c:nom" ))
+        );
+	assertEquals(3, searcher.search(snqquery, 10).totalHits);
+
+	// [p=NN & !(m:c = acc)]
+	snqquery = new SpanNotQuery(
+	   new SpanTermQuery( new Term("text", "p:NN")),
+	   new SpanTermQuery( new Term("text", "m:c:acc" ))
+        );
+	assertEquals(2, searcher.search(snqquery, 10).totalHits);
+
+	// [p=PPER][][p=ART]
+	snquery = new SpanNearQuery(
+  	    new SpanQuery[] {
+		new SpanTermQuery( new Term("text", "p:PPER")),
+		new SpanNearQuery(
+		    new SpanQuery[] {
+			new SpanTermQuery( new Term("text", "T")),
+			new SpanTermQuery( new Term("text", "p:ART"))
+		    },
+		    0,
+		    true),
+	    },
+	    0, 
+	    true
+        );
+	assertEquals(1, searcher.search(snquery, 10).totalHits);
+
+
+	// Todo:
+	// [orth=się][]{2,4}[base=bać]
+	// [orth=się][orth!="[.!?,:]"]{,5}[base=bać]|[base=bać][base="on|ja|ty|my|wy"]?[orth=się]
+	// [pos=subst & orth="a.*"]{2}
+	// [tag=subst:sg:nom:n]
+	// [case==acc & case==gen] ??
+	// [case~acc & case~gen]
+	// [case~~acc]
+	// [base=bać][orth!=się]+[orth=się] within s
+
+	// [][][p:VAFIN] within s
+	// [][p:VAFIN] within s
+
+
+	// [][][p:VAFIN]
+	snquery = new SpanNearQuery(
+  	    new SpanQuery[] {
+		new SpanNearQuery(
+  	            new SpanQuery[] {
+		        new SpanTermQuery( new Term("text", "T") ),
+		        new SpanTermQuery( new Term("text", "T") )
+                    },
+		    0,
+		    true
+ 	        ),
+		new SpanTermQuery( new Term("text", "p:VAFIN") )
+	    },
+	    0,
+	    true
+        );
+	assertEquals(1, searcher.search(snquery, 10).totalHits);
+
+/*
+http://stackoverflow.com/questions/1311199/finding-the-position-of-search-hits-from-lucene
+*/
+
+	StringBuilder payloadString = new StringBuilder();
+	Map<Term, TermContext> termContexts = new HashMap<>();
+	for (AtomicReaderContext atomic : reader.leaves()) {
+	    Bits bitset = atomic.reader().getLiveDocs();
+	    //	    Spans spans = NearSpansOrdered();
+	    Spans spans = snquery.getSpans(atomic, bitset, termContexts);
+
+	    while (spans.next()) {
+		int docid = atomic.docBase + spans.doc();
+		if (spans.isPayloadAvailable()) {
+		    for (byte[] payload : spans.getPayload()) {
+			/* retrieve payload for current matching span */
+			payloadString.append(new String(payload));
+			payloadString.append(" | ");
+		    };
+		};
+	    };
+	};
+	//	assertEquals(33, payloadString.length());
+	assertEquals(0, payloadString.length());
+
+
+
+	// [][][p:VAFIN]
+	// without collecting payloads
+	snquery = new SpanNearQuery(
+  	    new SpanQuery[] {
+		new SpanNearQuery(
+  	            new SpanQuery[] {
+		        new SpanTermQuery( new Term("text", "T") ),
+		        new SpanTermQuery( new Term("text", "T") )
+                    },
+		    0,
+		    true,
+		    false
+ 	        ),
+		new SpanTermQuery( new Term("text", "p:VAFIN") )
+	    },
+	    0,
+	    true,
+	    false
+        );
+	assertEquals(1, searcher.search(snquery, 10).totalHits);
+
+	payloadString = new StringBuilder();
+	termContexts = new HashMap<>();
+	for (AtomicReaderContext atomic : reader.leaves()) {
+	    Bits bitset = atomic.reader().getLiveDocs();
+	    //	    Spans spans = NearSpansOrdered();
+	    Spans spans = snquery.getSpans(atomic, bitset, termContexts);
+
+	    while (spans.next()) {
+		int docid = atomic.docBase + spans.doc();
+		for (byte[] payload : spans.getPayload()) {
+		    /* retrieve payload for current matching span */
+		    payloadString.append(new String(payload));
+		    payloadString.append(" | ");
+		};
+	    };
+	};
+	assertEquals(0, payloadString.length());
+
+
+	// [][][p:VAFIN] in s
+	//([e:s:<][]*[T] | [T & e:s:<]) [T] ([p:VAFIN & e:s:>] | [T][]*[e:s:>]
+
+	/*
+	SpanSegmentWithinQuery ssequery = new SpanSegmentWithinQuery(
+	    "text","s", new SpanSegmentSequenceQuery("text", "T", "T", "p:VAFIN")
+        );
+	assertEquals(0, searcher.search(ssequery.toQuery(), 10).totalHits);
+
+	payloadString = new StringBuilder();
+	termContexts = new HashMap<>();
+	for (AtomicReaderContext atomic : reader.leaves()) {
+	    Bits bitset = atomic.reader().getLiveDocs();
+	    // Spans spans = NearSpansOrdered();
+	    Spans spans = ssequery.toQuery().getSpans(atomic, bitset, termContexts);
+
+	    while (spans.next()) {
+		int docid = atomic.docBase + spans.doc();
+		for (byte[] payload : spans.getPayload()) {
+		/// retrieve payload for current matching span
+		    payloadString.append(new String(payload));
+		    payloadString.append(" | ");
+		};
+	    };
+	};
+	assertEquals(0, payloadString.length(), 1);
+
+	ssequery = new SpanSegmentWithinQuery(
+	    "text","s", new SpanSegmentSequenceQuery("text", "T", "p:VAFIN")
+        );
+
+	assertEquals("for " + ssequery.toQuery(),
+		     1, searcher.search(ssequery.toQuery(), 10).totalHits);
+
+	payloadString = new StringBuilder();
+	termContexts = new HashMap<>();
+	for (AtomicReaderContext atomic : reader.leaves()) {
+	    Bits bitset = atomic.reader().getLiveDocs();
+	    // Spans spans = NearSpansOrdered();
+	    Spans spans = ssequery.toQuery().getSpans(atomic, bitset, termContexts);
+
+	    while (spans.next()) {
+		int docid = atomic.docBase + spans.doc();
+		for (byte[] payload : spans.getPayload()) {
+		    // retrieve payload for current matching span
+		    payloadString.append(new String(payload));
+		    payloadString.append(" | ");
+		};
+		fail("Doc: " + docid + " with " + spans.start() + "-" + spans.end() + " || " + payloadString.toString());
+	    };
+	};
+	assertEquals(20, payloadString.length());
+
+	*/
+
+	// --------------------______>
+
+
+
+	//	Spans spans = MultiSpansWrapper.wrap(searcher.getTopReaderContext(), ssequery.toQuery());
+	/*
+    TopDocs topDocs = is.search(snq, 1);
+    Set<String> payloadSet = new HashSet<String>();
+    for (int i = 0; i < topDocs.scoreDocs.length; i++) {
+      while (spans.next()) {
+        Collection<byte[]> payloads = spans.getPayload();
+
+        for (final byte [] payload : payloads) {
+          payloadSet.add(new String(payload, "UTF-8"));
+        }
+      }
+    }
+	*/
+
+
+	/*
+Alternativ:
+    IndexReader reader = writer.getReader();
+    writer.close();
+    IndexSearcher searcher = newSearcher(reader);
+
+    PayloadSpanUtil psu = new PayloadSpanUtil(searcher.getTopReaderContext());
+    
+    Collection<byte[]> payloads = psu.getPayloadsForQuery(new TermQuery(new Term(PayloadHelper.FIELD, "rr")));
+    if(VERBOSE)
+      System.out.println("Num payloads:" + payloads.size());
+    for (final byte [] bytes : payloads) {
+      if(VERBOSE)
+        System.out.println(new String(bytes, "UTF-8"));
+    }
+*/
+
+
+
+	/* new: */
+
+	// PayloadHelper helper = new PayloadHelper();
+
+	// Map<Term, TermContext> termContexts = new HashMap<>();
+//Spans spans;
+//spans = snquery.getSpans(searcher.getIndexReader());
+//    searcher = helper.setUp(similarity, 1000);
+	/*
+	IndexReader reader = search.getReader(querycontainer.getFoundry());
+	Spans luceneSpans;
+	Bits bitset = atomic.reader().getLiveDocs();
+	for (byte[] payload : luceneSpans.getPayload())
+
+	/* Iterate over all matching documents */
+	/*
+	    while (luceneSpans.next() && total < config.getMaxhits()) {
+		Span matchSpan;
+		StringBuilder payloadString = new StringBuilder();
+		int docid = atomic.docBase + luceneSpans.doc();
+		String docname = search.retrieveDocname(docid,
+						querycontainer.getFoundry());
+						total++;
+
+		for (byte[] payload : luceneSpans.getPayload())
+	*/
+					/* retrieve payload for current matching span */
+	//				payloadString.append(new String(payload));
+
+				/* create span containing result */
+		/*
+				matchSpan = new Span(docname);
+				matchSpan.setIndexdocid(docid);
+				matchSpan.setLayer(querycontainer.getLayer());
+				matchSpan.storePayloads(payloadString.toString());
+				matchSpans.add(matchSpan);
+*/
+				/*
+				 * topdocs = searcher.search(new ConstantScoreQuery(corpusQ add
+				 * position to list of positions to be considered for later
+				 * searches
+				 */
+				/*
+				validValues.put(docname,
+						matchSpan.getPayload(config.getPrefix()));
+			}
+*/
+
+
+	// Todo: API made by add() typisiert für queries, strings
+
+	// SpanPayloadCheckQuery for sentences!
+
+	/* Support regular expression in SpanSegmentQuery */
+	// new Regexp();
+	// new Term();
+
+	/*
+	  Vielleicht: spanSegmentQuery(new Term(), new Wildcard(), new Regex());
+	 */
+
+	// And Not ->
+	//	SpanTermDiffQuery
+
+	/*
+	SpanNearQuery poquery = new SpanNearQuery(
+
+	);
+	*/
+
+	reader.close();
+
+
+    };
+};
diff --git a/trunk/src/test/java/de/ids_mannheim/korap/index/TestKorapIndex.java b/trunk/src/test/java/de/ids_mannheim/korap/index/TestKorapIndex.java
new file mode 100644
index 0000000..a4ba6a2
--- /dev/null
+++ b/trunk/src/test/java/de/ids_mannheim/korap/index/TestKorapIndex.java
@@ -0,0 +1,75 @@
+import java.util.*;
+import java.io.*;
+
+import org.apache.lucene.util.Version;
+import org.apache.lucene.util.BytesRef;
+import org.apache.lucene.util.Bits;
+
+import static org.junit.Assert.*;
+import org.junit.Test;
+import org.junit.Ignore;
+import org.junit.runner.RunWith;
+import org.junit.runners.JUnit4;
+
+import de.ids_mannheim.korap.KorapIndex;
+import de.ids_mannheim.korap.KorapQuery;
+import de.ids_mannheim.korap.index.FieldDocument;
+import de.ids_mannheim.korap.analysis.MultiTermTokenStream;
+
+@RunWith(JUnit4.class)
+public class TestKorapIndex {
+
+    @Test
+    public void indexExample () throws IOException {
+	KorapIndex ki = new KorapIndex();
+
+	FieldDocument fd = new FieldDocument();
+
+	fd.addString("name", "Peter");
+	fd.addInt("zahl1", 56);
+	fd.addInt("zahl2", "58");
+	fd.addText("teaser", "Das ist der Name der Rose");
+	fd.addTV("base", "ich bau", "[(0-3)s:ich|l:ich|p:PPER|-:sentences#-$<i>2][(4-7)s:bau|l:bauen|p:VVFIN]");
+	ki.addDoc(fd);
+
+	fd = new FieldDocument();
+
+	fd.addString("name", "Hans");
+	fd.addInt("zahl1", 14);
+	fd.addText("teaser", "Das Sein");
+
+	MultiTermTokenStream mtts = fd.newMultiTermTokenStream();
+	mtts.addMultiTermToken("s:wir#0-3", "l:wir", "p:PPER");
+	mtts.addMultiTermToken("s:sind#4-8", "l:sein", "p:VVFIN");
+	mtts.addMeta("sentences", (int) 5);
+	fd.addTV("base", "wir sind", mtts);
+
+	ki.addDoc(fd);
+
+	/* Save documents */
+	ki.commit();
+
+	assertEquals(2, ki.numberOf("documents"));
+	assertEquals(7, ki.numberOf("sentences"));
+
+
+	fd = new FieldDocument();
+
+	fd.addString("name", "Frank");
+	fd.addInt("zahl1", 59);
+	fd.addInt("zahl2", 65);
+	fd.addText("teaser", "Noch ein Versuch");
+	fd.addTV("base", "ich bau", "[(0-3)s:der|l:der|p:DET|-:sentences#-$<i>3][(4-8)s:baum|l:baum|p:NN]");
+	ki.addDoc(fd);
+
+	/* Save documents */
+	ki.commit();
+
+	assertEquals(3, ki.numberOf("documents"));
+	assertEquals(10, ki.numberOf("sentences"));
+
+
+	// KorapQuery kq = new KorapQuery("text");
+	// ki.search();
+    };
+};
diff --git a/trunk/src/test/java/de/ids_mannheim/korap/index/TestMatchIndex.java b/trunk/src/test/java/de/ids_mannheim/korap/index/TestMatchIndex.java
new file mode 100644
index 0000000..c081f7c
--- /dev/null
+++ b/trunk/src/test/java/de/ids_mannheim/korap/index/TestMatchIndex.java
@@ -0,0 +1,186 @@
+import java.util.*;
+import java.io.*;
+
+import org.apache.lucene.util.Version;
+import org.apache.lucene.util.BytesRef;
+import org.apache.lucene.util.Bits;
+
+import static org.junit.Assert.*;
+import org.junit.Test;
+import org.junit.Ignore;
+import org.junit.runner.RunWith;
+import org.junit.runners.JUnit4;
+
+import de.ids_mannheim.korap.KorapIndex;
+import de.ids_mannheim.korap.KorapQuery;
+import de.ids_mannheim.korap.KorapResult;
+import de.ids_mannheim.korap.query.SpanNextQuery;
+import de.ids_mannheim.korap.query.SpanMatchModifyQuery;
+import de.ids_mannheim.korap.query.SpanClassQuery;
+import de.ids_mannheim.korap.index.FieldDocument;
+import de.ids_mannheim.korap.analysis.MultiTermTokenStream;
+
+import org.apache.lucene.search.spans.SpanQuery;
+import org.apache.lucene.search.spans.SpanTermQuery;
+import org.apache.lucene.index.Term;
+
+// mvn -Dtest=TestWithinIndex#indexExample1 test
+
+// match is shrink and split
+
+@RunWith(JUnit4.class)
+public class TestMatchIndex {
+
+    @Test
+    public void indexExample1 () throws IOException {
+	KorapIndex ki = new KorapIndex();
+
+	// abcabcabac
+	FieldDocument fd = new FieldDocument();
+	fd.addTV("base",
+		 "abcabcabac",
+		 "[(0-1)s:a|i:a|_0#0-1|-:t$<i>10]" +
+		 "[(1-2)s:b|i:b|_1#1-2]" +
+		 "[(2-3)s:c|i:c|_2#2-3]" +
+		 "[(3-4)s:a|i:a|_3#3-4]" +
+		 "[(4-5)s:b|i:b|_4#4-5]" +
+		 "[(5-6)s:c|i:c|_5#5-6]" +
+		 "[(6-7)s:a|i:a|_6#6-7]" +
+		 "[(7-8)s:b|i:b|_7#7-8]" +
+		 "[(8-9)s:a|i:a|_8#8-9]" +
+		 "[(9-10)s:c|i:c|_9#9-10]");
+	ki.addDoc(fd);
+
+	ki.commit();
+
+	SpanQuery sq;
+	KorapResult kr;
+
+	sq = new SpanNextQuery(
+            new SpanTermQuery(new Term("base", "s:b")),
+            new SpanClassQuery(
+              new SpanTermQuery(new Term("base", "s:a"))
+	    )
+        );
+	kr = ki.search(sq, (short) 10);
+
+	assertEquals("totalResults", 1, kr.totalResults());
+	assertEquals("StartPos (0)", 7, kr.match(0).startPos);
+	assertEquals("EndPos (0)", 9, kr.match(0).endPos);
+	assertEquals("SnippetBrackets (0)", "... bcabca[b{a}]c", kr.match(0).snippetBrackets());
+
+
+	sq = new SpanMatchModifyQuery(
+            new SpanNextQuery(
+                new SpanTermQuery(new Term("base", "s:b")),
+                new SpanClassQuery(
+                    new SpanTermQuery(new Term("base", "s:a"))
+	        )
+            )
+	);
+	kr = ki.search(sq, (short) 10);
+
+	assertEquals("totalResults", 1, kr.totalResults());
+	assertEquals("StartPos (0)", 8, kr.match(0).startPos);
+	assertEquals("EndPos (0)", 9, kr.match(0).endPos);
+	assertEquals("SnippetBrackets (0)", "... cabcab[a]c", kr.match(0).snippetBrackets());
+
+	sq = new SpanMatchModifyQuery(
+            new SpanNextQuery(
+	        new SpanClassQuery(new SpanTermQuery(new Term("base", "s:a")), (byte) 2),
+                new SpanClassQuery(new SpanTermQuery(new Term("base", "s:b")), (byte) 3)
+            ), (byte) 3
+        );
+
+	kr = ki.search(sq, (short) 10);
+
+	assertEquals("totalResults", 3, kr.totalResults());
+	assertEquals("StartPos (0)", 1, kr.match(0).startPos);
+	assertEquals("EndPos (0)", 2, kr.match(0).endPos);
+	assertEquals("SnippetBrackets (0)", "a[b]cabcab ...", kr.match(0).snippetBrackets());
+	assertEquals("StartPos (1)", 4, kr.match(1).startPos);
+	assertEquals("EndPos (1)", 5, kr.match(1).endPos);
+	assertEquals("SnippetBrackets (1)", "abca[b]cabac", kr.match(1).snippetBrackets());
+	assertEquals("StartPos (2)", 7, kr.match(2).startPos);
+	assertEquals("EndPos (2)", 8, kr.match(2).endPos);
+	assertEquals("SnippetBrackets (2)", "... bcabca[b]ac", kr.match(2).snippetBrackets());
+
+
+
+	// abcabcabac
+	sq = new SpanMatchModifyQuery( 
+            new SpanNextQuery(
+                new SpanTermQuery(new Term("base", "s:a")),
+                new SpanClassQuery(
+	            new SpanNextQuery(
+	   	        new SpanTermQuery(new Term("base", "s:b")),
+	    	        new SpanClassQuery(new SpanTermQuery(new Term("base", "s:a")))
+		    ), (byte) 2
+        )), (byte) 2);
+
+	kr = ki.search(sq, (short) 10);
+
+	// System.err.println(kr.toJSON());
+
+	assertEquals("totalResults", 1, kr.totalResults());
+	assertEquals("SnippetBrackets (0)", "... bcabca[b{a}]c", kr.match(0).snippetBrackets());
+	assertEquals("SnippetHTML (0)", "<span class=\"korap-more-left\"></span>bcabca<span class=\"korap-match\">b<span class=\"korap-highlight korap-class-0\">a</span></span>c", kr.match(0).snippetHTML());
+
+	// Offset tokens
+	kr = ki.search(sq, 0, (short) 10, true, (short) 2, true, (short) 2);
+	assertEquals("totalResults", 1, kr.totalResults());
+	assertEquals("SnippetBrackets (0)", "... ca[b{a}]c", kr.match(0).snippetBrackets());
+	// Offset Characters
+	kr = ki.search(sq, 0, (short) 10, false, (short) 1, false, (short) 0);
+	assertEquals("totalResults", 1, kr.totalResults());
+	assertEquals("SnippetBrackets (0)", "... a[b{a}] ...", kr.match(0).snippetBrackets());
+
+	// System.err.println(kr.toJSON());
+
+	sq = new SpanMatchModifyQuery(
+            new SpanNextQuery(
+	        new SpanClassQuery(new SpanTermQuery(new Term("base", "s:b")), (byte) 1),
+                new SpanClassQuery(new SpanTermQuery(new Term("base", "s:c")), (byte) 2)
+            ), (byte) 3
+	);
+
+	kr = ki.search(sq, (short) 10);
+	
+	assertEquals("totalResults", 2, kr.totalResults());
+	assertEquals("StartPos (0)", 1, kr.match(0).startPos);
+	assertEquals("EndPos (0)", 3, kr.match(0).endPos);
+	assertEquals("SnippetBrackets (0)", "a[{1:b}{2:c}]abcaba ...", kr.match(0).snippetBrackets());
+	assertEquals("StartPos (1)", 4, kr.match(1).startPos);
+	assertEquals("EndPos (1)", 6, kr.match(1).endPos);
+	assertEquals("SnippetBrackets (1)", "abca[{1:b}{2:c}]abac", kr.match(1).snippetBrackets());
+
+	assertEquals("Document count", 1, ki.numberOf("documents"));
+	assertEquals("Token count", 10, ki.numberOf("t"));
+
+
+	sq = new SpanMatchModifyQuery(
+            new SpanNextQuery(
+                new SpanTermQuery(new Term("base", "s:a")),
+                new SpanClassQuery(
+	            new SpanNextQuery(
+	                new SpanTermQuery(new Term("base", "s:b")),
+	                new SpanTermQuery(new Term("base", "s:c"))
+  	            )
+	       )
+            )
+        );
+
+	kr = ki.search(sq, (short) 2);
+	
+	assertEquals("totalResults", 2, kr.totalResults());
+	assertEquals("StartPos (0)", 1, kr.match(0).startPos);
+	assertEquals("EndPos (0)", 3, kr.match(0).endPos);
+	assertEquals("SnippetBrackets (0)", "a[bc]abcaba ...", kr.match(0).snippetBrackets());
+	assertEquals("StartPos (1)", 4, kr.match(1).startPos);
+	assertEquals("EndPos (1)", 6, kr.match(1).endPos);
+	assertEquals("SnippetBrackets (1)", "abca[bc]abac", kr.match(1).snippetBrackets());
+
+	assertEquals(1, ki.numberOf("documents"));
+	assertEquals(10, ki.numberOf("t"));
+    };
+};
diff --git a/trunk/src/test/java/de/ids_mannheim/korap/index/TestNextIndex.java b/trunk/src/test/java/de/ids_mannheim/korap/index/TestNextIndex.java
new file mode 100644
index 0000000..a3860ea
--- /dev/null
+++ b/trunk/src/test/java/de/ids_mannheim/korap/index/TestNextIndex.java
@@ -0,0 +1,253 @@
+import java.util.*;
+import java.io.*;
+
+import org.apache.lucene.util.Version;
+import org.apache.lucene.util.BytesRef;
+import org.apache.lucene.util.Bits;
+
+import static org.junit.Assert.*;
+import org.junit.Test;
+import org.junit.Ignore;
+import org.junit.runner.RunWith;
+import org.junit.runners.JUnit4;
+
+import de.ids_mannheim.korap.KorapIndex;
+import de.ids_mannheim.korap.KorapQuery;
+import de.ids_mannheim.korap.KorapResult;
+import de.ids_mannheim.korap.query.SpanNextQuery;
+import de.ids_mannheim.korap.index.FieldDocument;
+import de.ids_mannheim.korap.analysis.MultiTermTokenStream;
+import org.apache.lucene.search.spans.SpanQuery;
+import org.apache.lucene.search.spans.SpanTermQuery;
+
+import de.ids_mannheim.korap.query.SpanElementQuery;
+import de.ids_mannheim.korap.query.SpanWithinQuery;
+
+import org.apache.lucene.index.Term;
+
+// mvn -Dtest=TestWithinIndex#indexExample1 test
+
+@RunWith(JUnit4.class)
+public class TestNextIndex {
+
+    // Todo: primary data as a non-indexed field separated.
+
+    @Test
+    public void indexExample1 () throws IOException {
+	KorapIndex ki = new KorapIndex();
+
+	// abcabcabac
+	FieldDocument fd = new FieldDocument();
+	fd.addTV("base",
+		 "abcabcabac",
+		 "[(0-1)s:a|i:a|_0#0-1|-:t$<i>10]" +
+		 "[(1-2)s:b|i:b|_1#1-2]" +
+		 "[(2-3)s:c|i:c|_2#2-3]" +
+		 "[(3-4)s:a|i:a|_3#3-4]" +
+		 "[(4-5)s:b|i:b|_4#4-5]" +
+		 "[(5-6)s:c|i:c|_5#5-6]" +
+		 "[(6-7)s:a|i:a|_6#6-7]" +
+		 "[(7-8)s:b|i:b|_7#7-8]" +
+		 "[(8-9)s:a|i:a|_8#8-9]" +
+		 "[(9-10)s:c|i:c|_9#9-10]");
+	ki.addDoc(fd);
+
+	ki.commit();
+
+	SpanQuery sq;
+	KorapResult kr;
+
+	sq = new SpanNextQuery(
+            new SpanTermQuery(new Term("base", "s:a")),
+            new SpanTermQuery(new Term("base", "s:b"))
+        );
+
+	kr = ki.search(sq, (short) 10);
+	
+	assertEquals("totalResults", 3, kr.totalResults());
+	assertEquals("StartPos (0)", 0, kr.match(0).startPos);
+	assertEquals("EndPos (0)", 2, kr.match(0).endPos);
+	assertEquals("StartPos (1)", 3, kr.match(1).startPos);
+	assertEquals("EndPos (1)", 5, kr.match(1).endPos);
+	assertEquals("StartPos (2)", 6, kr.match(2).startPos);
+	assertEquals("EndPos (2)", 8, kr.match(2).endPos);
+
+	sq = new SpanNextQuery(
+            new SpanTermQuery(new Term("base", "s:b")),
+            new SpanTermQuery(new Term("base", "s:c"))
+        );
+
+	kr = ki.search(sq, (short) 10);
+	
+	assertEquals("totalResults", 2, kr.totalResults());
+	assertEquals("StartPos (0)", 1, kr.match(0).startPos);
+	assertEquals("EndPos (0)", 3, kr.match(0).endPos);
+	assertEquals("StartPos (1)", 4, kr.match(1).startPos);
+	assertEquals("EndPos (1)", 6, kr.match(1).endPos);
+
+	assertEquals(1, ki.numberOf("documents"));
+	assertEquals(10, ki.numberOf("t"));
+
+
+	sq = new SpanNextQuery(
+            new SpanTermQuery(new Term("base", "s:a")),
+	    new SpanNextQuery(
+	      new SpanTermQuery(new Term("base", "s:b")),
+	      new SpanTermQuery(new Term("base", "s:c"))
+	    )
+        );
+
+	kr = ki.search(sq, (short) 2);
+	
+	assertEquals("totalResults", 2, kr.totalResults());
+	assertEquals("StartPos (0)", 0, kr.match(0).startPos);
+	assertEquals("EndPos (0)", 3, kr.match(0).endPos);
+	assertEquals("StartPos (1)", 3, kr.match(1).startPos);
+	assertEquals("EndPos (1)", 6, kr.match(1).endPos);
+
+	assertEquals(1, ki.numberOf("documents"));
+	assertEquals(10, ki.numberOf("t"));
+
+    };
+
+    @Test
+    public void indexExample2 () throws IOException {
+	KorapIndex ki = new KorapIndex();
+
+	// abcabcabac
+	FieldDocument fd = new FieldDocument();
+	fd.addTV("base",
+		 "abcabcabac",
+		 "[(0-1)s:a|i:a|_0#0-1|-:t$<i>10]" +
+		 "[(1-2)s:b|i:b|_1#1-2]" +
+		 "[(2-3)s:c|i:c|_2#2-3]" +
+		 "[(3-4)s:a|i:a|_3#3-4|<>:x#3-7$<i>7]" +
+		 "[(4-5)s:b|i:b|_4#4-5]" +
+		 "[(5-6)s:c|i:c|_5#5-6]" +
+		 "[(6-7)s:a|i:a|_6#6-7]" +
+		 "[(7-8)s:b|i:b|_7#7-8]" +
+		 "[(8-9)s:a|i:a|_8#8-9]" +
+		 "[(9-10)s:c|i:c|_9#9-10]");
+	ki.addDoc(fd);
+
+	ki.commit();
+
+	SpanQuery sq;
+	KorapResult kr;
+
+	sq = new SpanNextQuery(
+	       new SpanTermQuery(new Term("base", "s:c")),
+ 	       new SpanElementQuery("base", "x")
+	);
+	
+	kr = ki.search(sq, (short) 10);
+	assertEquals("ab[cabca]bac", kr.match(0).getSnippetBrackets());
+
+    };
+
+    @Test
+    public void indexExample3 () throws IOException {
+	KorapIndex ki = new KorapIndex();
+
+	// abcabcabac
+	FieldDocument fd = new FieldDocument();
+	fd.addTV("base",
+		 "abcabcabac",
+		 "[(0-1)s:a|i:a|_0#0-1|-:t$<i>10]" +
+		 "[(1-2)s:b|i:b|_1#1-2]" +
+		 "[(2-3)s:c|i:c|_2#2-3]" +
+		 "[(3-4)s:a|i:a|_3#3-4|<>:x#3-7$<i>7]" +
+		 "[(4-5)s:b|i:b|_4#4-5]" +
+		 "[(5-6)s:c|i:c|_5#5-6]" +
+		 "[(6-7)s:a|i:a|_6#6-7]" +
+		 "[(7-8)s:b|i:b|_7#7-8]" +
+		 "[(8-9)s:a|i:a|_8#8-9]" +
+		 "[(9-10)s:c|i:c|_9#9-10]");
+	ki.addDoc(fd);
+
+	ki.commit();
+
+	SpanQuery sq;
+	KorapResult kr;
+
+	sq = new SpanNextQuery(
+	       new SpanElementQuery("base", "x"),
+	       new SpanTermQuery(new Term("base", "s:b"))
+	);
+	
+	kr = ki.search(sq, (short) 10);
+	assertEquals("abc[abcab]ac", kr.match(0).getSnippetBrackets());
+    };
+
+    @Test
+    public void indexExample4 () throws IOException {
+	KorapIndex ki = new KorapIndex();
+
+	// abcabcabac
+	FieldDocument fd = new FieldDocument();
+	fd.addString("ID", "doc-1");
+	fd.addTV("base",
+		 "abcabcabac",
+		 "[(0-1)s:a|i:a|_0#0-1|-:t$<i>10]" +
+		 "[(1-2)s:b|i:b|_1#1-2]" +
+		 "[(2-3)s:c|i:c|_2#2-3]" +
+		 "[(3-4)s:a|i:a|_3#3-4|<>:x#3-7$<i>7]" +
+		 "[(4-5)s:b|i:b|_4#4-5]" +
+		 "[(5-6)s:c|i:c|_5#5-6]" +
+		 "[(6-7)s:a|i:a|_6#6-7]<>:x#6-8$<i>8]" +
+		 "[(7-8)s:b|i:b|_7#7-8]" +
+		 "[(8-9)s:a|i:a|_8#8-9]" +
+		 "[(9-10)s:c|i:c|_9#9-10]");
+	ki.addDoc(fd);
+
+	fd = new FieldDocument();
+	fd.addString("ID", "doc-2");
+	fd.addTV("base",
+		 "xbzxbzxbxz",
+		 "[(0-1)s:x|i:x|_0#0-1|-:t$<i>10]" +
+		 "[(1-2)s:b|i:b|_1#1-2]" +
+		 "[(2-3)s:z|i:z|_2#2-3]" +
+		 "[(3-4)s:x|i:x|_3#3-4|<>:x#3-7$<i>7]" +
+		 "[(4-5)s:b|i:b|_4#4-5]" +
+		 "[(5-6)s:z|i:z|_5#5-6]" +
+		 "[(6-7)s:x|i:x|_6#6-7]" +
+		 "[(7-8)s:b|i:b|_7#7-8]" +
+		 "[(8-9)s:x|i:x|_8#8-9]" +
+		 "[(9-10)s:z|i:z|_9#9-10]");
+	ki.addDoc(fd);
+
+
+	ki.commit();
+
+	SpanQuery sq;
+	KorapResult kr;
+
+	sq = new SpanNextQuery(
+	       new SpanElementQuery("base", "x"),
+	       new SpanTermQuery(new Term("base", "s:b"))
+	);
+	
+	kr = ki.search(sq, (short) 10);
+	assertEquals(2, kr.totalResults());
+	assertEquals("abc[abcab]ac", kr.match(0).getSnippetBrackets());
+	assertEquals("xbz[xbzxb]xz", kr.match(1).getSnippetBrackets());
+
+	sq = new SpanNextQuery(
+	       new SpanTermQuery(new Term("base", "s:c")),
+ 	       new SpanElementQuery("base", "x")
+	);
+	
+	kr = ki.search(sq, (short) 10);
+	assertEquals(1, kr.totalResults());
+	assertEquals("ab[cabca]bac", kr.match(0).getSnippetBrackets());
+
+	sq = new SpanNextQuery(
+	       new SpanTermQuery(new Term("base", "s:z")),
+ 	       new SpanElementQuery("base", "x")
+	);
+	
+	kr = ki.search(sq, (short) 10);
+	assertEquals(1, kr.totalResults());
+	assertEquals("xb[zxbzx]bxz", kr.match(0).getSnippetBrackets());
+    };
+};
diff --git a/trunk/src/test/java/de/ids_mannheim/korap/index/TestPosToOffset.java b/trunk/src/test/java/de/ids_mannheim/korap/index/TestPosToOffset.java
new file mode 100644
index 0000000..d656275
--- /dev/null
+++ b/trunk/src/test/java/de/ids_mannheim/korap/index/TestPosToOffset.java
@@ -0,0 +1,85 @@
+import java.util.*;
+import java.io.*;
+
+import static org.junit.Assert.*;
+import org.junit.Test;
+import org.junit.Ignore;
+import org.junit.runner.RunWith;
+import org.junit.runners.JUnit4;
+
+import de.ids_mannheim.korap.KorapIndex;
+import de.ids_mannheim.korap.KorapQuery;
+import de.ids_mannheim.korap.KorapResult;
+import de.ids_mannheim.korap.query.SpanElementQuery;
+import de.ids_mannheim.korap.query.SpanWithinQuery;
+import de.ids_mannheim.korap.query.SpanNextQuery;
+import de.ids_mannheim.korap.query.SpanClassQuery;
+import de.ids_mannheim.korap.index.FieldDocument;
+import de.ids_mannheim.korap.analysis.MultiTermTokenStream;
+import de.ids_mannheim.korap.index.PositionsToOffset;
+
+import org.apache.lucene.index.AtomicReaderContext;
+import org.apache.lucene.search.spans.SpanQuery;
+import org.apache.lucene.search.spans.SpanTermQuery;
+import org.apache.lucene.index.TermContext;
+import org.apache.lucene.util.OpenBitSet;
+import org.apache.lucene.search.DocIdSet;
+import org.apache.lucene.util.DocIdBitSet;
+import org.apache.lucene.util.Bits;
+
+import java.nio.ByteBuffer;
+
+
+@RunWith(JUnit4.class)
+public class TestPosToOffset {
+
+    @Test
+    public void indexExample1 () throws IOException {
+	KorapIndex ki = new KorapIndex();
+
+	FieldDocument fd = new FieldDocument();
+	fd.addTV("base",
+		 "a b c",
+		 "[(0-1)s:a|i:a|_0#0-1|-:t$<i>3]" +
+		 "[(2-3)s:b|i:b|_1#2-3]" +
+		 "[(4-5)s:c|i:c|_2#4-5]");
+	ki.addDoc(fd);
+
+	fd = new FieldDocument();
+	fd.addTV("base",
+		 "x  y  z",
+		 "[(0-1)s:x|i:x|_0#0-2|-:t$<i>3]" +
+		 "[(3-4)s:y|i:y|_1#3-4]" +
+		 "[(6-7)s:z|i:z|_2#6-7]");  // 3
+	ki.addDoc(fd);
+
+	ki.commit();
+
+	String field = "base";
+
+	for (AtomicReaderContext atomic : ki.reader().leaves()) {
+	    PositionsToOffset pto = new PositionsToOffset(atomic, field);
+
+	    pto.add(0,1);
+	    pto.add(0,2);
+	    pto.add(1,2);
+	    pto.add(1,1);
+	    pto.add(1,20);
+
+	    assertEquals("Start 0,1", pto.start(0,1), 2);
+	    assertEquals("End 0,1", pto.end(0,1), 3);
+
+	    assertEquals("Start 0,2", pto.start(0,2), 4);
+	    assertEquals("End 0,2", pto.end(0,2), 5);
+
+	    assertEquals("Start 1,2", pto.start(1,2), 6);
+	    assertEquals("End 1,2", pto.end(1,2), 7);
+
+	    assertEquals("Start 1,1", pto.start(1,1), 3);
+	    assertEquals("End 1,1", pto.end(1,1), 4);
+
+	    assertEquals("Start 1,20", pto.start(1,20), 0);
+	    assertEquals("End 1,20", pto.end(1,20), -1);
+	};
+    };
+};
diff --git a/trunk/src/test/java/de/ids_mannheim/korap/index/TestRelationIndex.java b/trunk/src/test/java/de/ids_mannheim/korap/index/TestRelationIndex.java
new file mode 100644
index 0000000..b88a10b
--- /dev/null
+++ b/trunk/src/test/java/de/ids_mannheim/korap/index/TestRelationIndex.java
@@ -0,0 +1,38 @@
+    /*
+
+within(x,y)
+
+SpanRelationQuery->
+rel("SUBJ", query1, query2)
+
+1. return all words that are subjects of (that are linked by the “SUBJ” relation to) the string “beginnt”
+xip/syntax-dep_rel:beginnt >[func=”SUBJ”] xip/syntax-dep_rel:.*
+-> rel("SUBJ", highlight(query1), new TermQuery("s:beginnt"))
+
+
+SUBJ ist modelliert mit offset für den gesamten Bereich
+
+https://de.wikipedia.org/wiki/Dependenzgrammatik
+
+im regiert Wasser
+dass die Kinder im Wasser gespielt haben
+3. im#16-18$
+3. >:COORD#16-25$3,4
+4. Wasser#19-25$
+4. <:COORD#16-25$3,4
+
+# okay: return all main verbs that have no “SUBJ” relation specified
+
+
+# Not okay: 5. return all verbs with (at least?) 3 outgoing relations [think of ditransitives such as give]
+
+xip/morph_pos:VERB & xip/token:.* & xip/token:.* & xip/token:.* & xip/token:.* & #1 _=_#2 & #2 >[func=$x] #3 & #2 >[func=$x]#4  &  #2 >[func=$x] #5
+
+# Okay: return all verbs that have singular SUBJects and dative OBJects
+
+xip/morph_pos:VERB & mpt/morph_msd:Sg & mpt/morph_msd:Dat & #1 >[func=”SUBJ”] #2 & #1 >[func=”OBJ”] #3
+
+-> [p:VVFIN](>SUBJ[nr:sg] & >OBJ[c:dat])
+
+
+     */
diff --git a/trunk/src/test/java/de/ids_mannheim/korap/index/TestWithinIndex.java b/trunk/src/test/java/de/ids_mannheim/korap/index/TestWithinIndex.java
new file mode 100644
index 0000000..2baa433
--- /dev/null
+++ b/trunk/src/test/java/de/ids_mannheim/korap/index/TestWithinIndex.java
@@ -0,0 +1,949 @@
+import java.util.*;
+import java.io.*;
+
+import org.apache.lucene.util.Version;
+import org.apache.lucene.util.BytesRef;
+import org.apache.lucene.util.Bits;
+
+import static org.junit.Assert.*;
+import org.junit.Test;
+import org.junit.Ignore;
+import org.junit.runner.RunWith;
+import org.junit.runners.JUnit4;
+
+import de.ids_mannheim.korap.KorapIndex;
+import de.ids_mannheim.korap.KorapQuery;
+import de.ids_mannheim.korap.KorapResult;
+import de.ids_mannheim.korap.query.SpanElementQuery;
+import de.ids_mannheim.korap.query.SpanWithinQuery;
+import de.ids_mannheim.korap.query.SpanNextQuery;
+import de.ids_mannheim.korap.query.SpanClassQuery;
+import de.ids_mannheim.korap.index.FieldDocument;
+import de.ids_mannheim.korap.analysis.MultiTermTokenStream;
+import org.apache.lucene.search.spans.SpanQuery;
+import org.apache.lucene.search.spans.SpanTermQuery;
+import org.apache.lucene.index.Term;
+
+import java.nio.ByteBuffer;
+
+// mvn -Dtest=TestWithinIndex#indexExample1 test
+
+@RunWith(JUnit4.class)
+public class TestWithinIndex {
+
+    // Todo: primary data as a non-indexed field separated.
+
+    @Test
+    public void indexExample1a () throws IOException {
+	KorapIndex ki = new KorapIndex();
+
+	// <a>x<a>y<a>zhij</a>hij</a>hij</a>
+	FieldDocument fd = new FieldDocument();
+	fd.addTV("base",
+		 "x   y   z   h   i   j   h   i   j   h   i   j   ",
+		 "[(0-3)s:x|<>:a#0-36$<i>12]" + // 1
+		 "[(3-6)s:y|<>:a#3-27$<i>9]" +  // 2
+		 "[(6-9)s:z|<>:a#6-18$<i>6]" +  // 3
+		 "[(9-12)s:h]" +   // 4
+		 "[(12-15)s:i]" +  // 5
+		 "[(15-18)s:j]" +  // 6
+		 "[(18-21)s:h]" +  // 7
+		 "[(21-24)s:i]" +  // 8
+		 "[(24-27)s:j]" +  // 9
+		 "[(27-30)s:h]" +  // 10
+		 "[(30-33)s:i]" +  // 11
+		 "[(33-36)s:j]");  // 12
+	ki.addDoc(fd);
+
+	ki.commit();
+
+	SpanQuery sq;
+	KorapResult kr;
+
+	sq = new SpanWithinQuery(
+	    new SpanElementQuery("base", "a"),
+            new SpanTermQuery(new Term("base", "s:h"))
+        );
+
+	kr = ki.search(sq, (short) 10);
+	
+	// System.err.println(kr.toJSON());
+
+	assertEquals("totalResults", 6, kr.totalResults());
+
+	assertEquals("StartPos (0)", 0, kr.match(0).startPos);
+	assertEquals("EndPos (0)", 12, kr.match(0).endPos);
+	assertEquals("StartPos (1)", 0, kr.match(1).startPos);
+	assertEquals("EndPos (1)", 12, kr.match(1).endPos);
+	assertEquals("StartPos (2)", 0, kr.match(2).startPos);
+	assertEquals("EndPos (2)", 12, kr.match(2).endPos);
+	assertEquals("StartPos (3)", 1, kr.match(3).startPos);
+	assertEquals("EndPos (3)", 9, kr.match(3).endPos);
+	assertEquals("StartPos (4)", 1, kr.match(4).startPos);
+	assertEquals("EndPos (4)", 9, kr.match(4).endPos);
+	assertEquals("StartPos (5)", 2, kr.match(5).startPos);
+	assertEquals("EndPos (5)", 6, kr.match(5).endPos);
+
+	assertEquals(1, ki.numberOf("documents"));
+    };
+
+    @Test
+    public void indexExample1b () throws IOException {
+	// Cases 9, 12, 13
+	KorapIndex ki = new KorapIndex();
+
+	// <a>x<a>y<a>zhij</a>hij</a>hij</a>
+	FieldDocument fd = new FieldDocument();
+	fd.addTV("base",
+		 "x   y   z   h   i   j   h   i   j   h   i   j   ",
+		 "[(0-3)s:x|<>:a#0-36$<i>12]" + // 1
+		 "[(3-6)s:y|<>:a#3-27$<i>9]" +  // 2
+		 "[(6-9)s:z|<>:a#6-18$<i>6]" +  // 3
+		 "[(9-12)s:h]" +   // 4
+		 "[(12-15)s:i]" +  // 5
+		 "[(15-18)s:j]" +  // 6
+		 "[(18-21)s:h]" +  // 7
+		 "[(21-24)s:i]" +  // 8
+		 "[(24-27)s:j]" +  // 9
+		 "[(27-30)s:h]" +  // 10
+		 "[(30-33)s:i]" +  // 11
+		 "[(33-36)s:j]");  // 12
+	ki.addDoc(fd);
+
+	// <a>x<a>y<a>zhij</a>hij</a>hij</a>
+	fd = new FieldDocument();
+	fd.addTV("base",
+		 "x   y   z   h   i   j   h   i   j   h   i   j   ",
+		 "[(0-3)s:x|<>:a#0-36$<i>12]" + // 1
+		 "[(3-6)s:y|<>:a#3-27$<i>9]" +  // 2
+		 "[(6-9)s:z|<>:a#6-18$<i>6]" +  // 3
+		 "[(9-12)s:h]" +   // 4
+		 "[(12-15)s:i]" +  // 5
+		 "[(15-18)s:j]" +  // 6
+		 "[(18-21)s:h]" +  // 7
+		 "[(21-24)s:i]" +  // 8
+		 "[(24-27)s:j]" +  // 9
+		 "[(27-30)s:h]" +  // 10
+		 "[(30-33)s:i]" +  // 11
+		 "[(33-36)s:j]");  // 12
+	ki.addDoc(fd);
+
+
+
+	// Save documents
+	ki.commit();
+
+	SpanQuery sq;
+	KorapResult kr;
+
+	sq = new SpanWithinQuery(
+	    new SpanElementQuery("base", "a"),
+            new SpanTermQuery(new Term("base", "s:h"))
+        );
+
+	kr = ki.search(sq, (short) 15);
+	
+	// System.err.println(kr.toJSON());
+
+	assertEquals("totalResults", 12, kr.totalResults());
+
+	assertEquals("StartPos (0)", 0, kr.match(0).startPos);
+	assertEquals("EndPos (0)", 12, kr.match(0).endPos);
+	assertEquals("Doc (0)", 0, kr.match(0).internalDocID);
+	assertEquals("StartPos (1)", 0, kr.match(1).startPos);
+	assertEquals("EndPos (1)", 12, kr.match(1).endPos);
+	assertEquals("Doc (1)", 0, kr.match(1).internalDocID);
+	assertEquals("StartPos (2)", 0, kr.match(2).startPos);
+	assertEquals("EndPos (2)", 12, kr.match(2).endPos);
+	assertEquals("Doc (2)", 0, kr.match(2).internalDocID);
+	assertEquals("StartPos (3)", 1, kr.match(3).startPos);
+	assertEquals("EndPos (3)", 9, kr.match(3).endPos);
+	assertEquals("Doc (3)", 0, kr.match(3).internalDocID);
+	assertEquals("StartPos (4)", 1, kr.match(4).startPos);
+	assertEquals("EndPos (4)", 9, kr.match(4).endPos);
+	assertEquals("Doc (4)", 0, kr.match(4).internalDocID);
+	assertEquals("StartPos (5)", 2, kr.match(5).startPos);
+	assertEquals("EndPos (5)", 6, kr.match(5).endPos);
+	assertEquals("Doc (5)", 0, kr.match(5).internalDocID);
+
+	assertEquals("StartPos (6)", 0, kr.match(6).startPos);
+	assertEquals("EndPos (6)", 12, kr.match(6).endPos);
+	assertEquals("Doc (6)", 1, kr.match(6).internalDocID);
+	assertEquals("StartPos (7)", 0, kr.match(7).startPos);
+	assertEquals("EndPos (7)", 12, kr.match(7).endPos);
+	assertEquals("Doc (7)", 1, kr.match(7).internalDocID);
+	assertEquals("StartPos (8)", 0, kr.match(8).startPos);
+	assertEquals("EndPos (8)", 12, kr.match(8).endPos);
+	assertEquals("Doc (8)", 1, kr.match(8).internalDocID);
+	assertEquals("StartPos (9)", 1, kr.match(9).startPos);
+	assertEquals("EndPos (9)", 9, kr.match(9).endPos);
+	assertEquals("Doc (9)", 1, kr.match(9).internalDocID);
+	assertEquals("StartPos (10)", 1, kr.match(10).startPos);
+	assertEquals("EndPos (10)", 9, kr.match(10).endPos);
+	assertEquals("Doc (10)", 1, kr.match(10).internalDocID);
+	assertEquals("StartPos (11)", 2, kr.match(11).startPos);
+	assertEquals("EndPos (11)", 6, kr.match(11).endPos);
+	assertEquals("Doc (11)", 1, kr.match(11).internalDocID);
+
+	assertEquals(2, ki.numberOf("documents"));
+    };
+
+
+    @Test
+    public void indexExample1c () throws IOException {
+	// Cases 9, 12, 13
+	KorapIndex ki = new KorapIndex();
+
+	// <a>x<a>y<a>zhij</a>hij</a>hij</a>
+	FieldDocument fd = new FieldDocument();
+	fd.addTV("base",
+		 "x   y   z   h   i   j   h   i   j   h   i   j   ",
+		 "[(0-3)s:x|<>:a#0-36$<i>12]" + // 1
+		 "[(3-6)s:y|<>:a#3-27$<i>9]" +  // 2
+		 "[(6-9)s:z|<>:a#6-18$<i>6]" +  // 3
+		 "[(9-12)s:h]" +   // 4
+		 "[(12-15)s:i]" +  // 5
+		 "[(15-18)s:j]" +  // 6
+		 "[(18-21)s:h]" +  // 7
+		 "[(21-24)s:i]" +  // 8
+		 "[(24-27)s:j]" +  // 9
+		 "[(27-30)s:h]" +  // 10
+		 "[(30-33)s:i]" +  // 11
+		 "[(33-36)s:j]");  // 12
+	ki.addDoc(fd);
+
+	// <a>x<a>y<a>zabc</a>abc</a>abc</a>
+	fd = new FieldDocument();
+	fd.addTV("base",
+		 "x   y   z   a   b   c   a   b   c   a   b   c   ",
+		 "[(0-3)s:x|<>:a#0-36$<i>12]" + // 1
+		 "[(3-6)s:y|<>:a#3-27$<i>9]" +  // 2
+		 "[(6-9)s:z|<>:a#6-18$<i>6]" +  // 3
+		 "[(9-12)s:a]" +   // 4
+		 "[(12-15)s:b]" +  // 5
+		 "[(15-18)s:c]" +  // 6
+		 "[(18-21)s:a]" +  // 7
+		 "[(21-24)s:b]" +  // 8
+		 "[(24-27)s:c]" +  // 9
+		 "[(27-30)s:a]" +  // 10
+		 "[(30-33)s:b]" +  // 11
+		 "[(33-36)s:c]");  // 12
+	ki.addDoc(fd);
+
+
+	// Save documents
+	ki.commit();
+
+	SpanQuery sq;
+	KorapResult kr;
+
+	sq = new SpanWithinQuery(
+	    new SpanElementQuery("base", "a"),
+            new SpanTermQuery(new Term("base", "s:h"))
+        );
+
+	kr = ki.search(sq, (short) 15);
+	
+	// System.err.println(kr.toJSON());
+
+	assertEquals("totalResults", 6, kr.totalResults());
+
+	assertEquals("StartPos (0)", 0, kr.match(0).startPos);
+	assertEquals("EndPos (0)", 12, kr.match(0).endPos);
+	assertEquals("Doc (0)", 0, kr.match(0).internalDocID);
+	assertEquals("StartPos (1)", 0, kr.match(1).startPos);
+	assertEquals("EndPos (1)", 12, kr.match(1).endPos);
+	assertEquals("Doc (1)", 0, kr.match(1).internalDocID);
+	assertEquals("StartPos (2)", 0, kr.match(2).startPos);
+	assertEquals("EndPos (2)", 12, kr.match(2).endPos);
+	assertEquals("Doc (2)", 0, kr.match(2).internalDocID);
+	assertEquals("StartPos (3)", 1, kr.match(3).startPos);
+	assertEquals("EndPos (3)", 9, kr.match(3).endPos);
+	assertEquals("Doc (3)", 0, kr.match(3).internalDocID);
+	assertEquals("StartPos (4)", 1, kr.match(4).startPos);
+	assertEquals("EndPos (4)", 9, kr.match(4).endPos);
+	assertEquals("Doc (4)", 0, kr.match(4).internalDocID);
+	assertEquals("StartPos (5)", 2, kr.match(5).startPos);
+	assertEquals("EndPos (5)", 6, kr.match(5).endPos);
+	assertEquals("Doc (5)", 0, kr.match(5).internalDocID);
+
+	assertEquals(2, ki.numberOf("documents"));
+    };
+
+
+    @Test
+    public void indexExample2a () throws IOException {
+	KorapIndex ki = new KorapIndex();
+
+	// <a><a><a>h</a>hij</a>hij</a>
+	FieldDocument fd = new FieldDocument();
+	fd.addTV("base",
+		 "h   i   j   h   i   j   h   i   j   ",
+		 "[(0-3)s:h|<>:a#0-27$<i>7|<>:a#0-18$<i>4|<>:a#0-36$<i>10]" + // 1
+		 "[(3-6)s:h]" +    // 2
+		 "[(12-15)s:i]" +  // 3
+		 "[(15-18)s:j]" +  // 4
+		 "[(18-21)s:h]" +  // 5
+		 "[(21-24)s:i]" +  // 6
+		 "[(24-27)s:j]" +  // 7
+		 "[(27-30)s:h]" +  // 8
+		 "[(30-33)s:i]" +  // 9
+		 "[(33-36)s:j]");  // 10
+	ki.addDoc(fd);
+
+	// Save documents
+	ki.commit();
+
+	assertEquals(1, ki.numberOf("documents"));
+
+	SpanQuery sq = new SpanElementQuery("base", "a");
+
+	KorapResult kr = ki.search(sq, (short) 10);
+
+	assertEquals("totalResults", 3, kr.totalResults());
+	assertEquals("StartPos (0)", 0, kr.match(0).startPos);
+	assertEquals("EndPos (0)", 4, kr.match(0).endPos);
+	assertEquals("StartPos (1)", 0, kr.match(1).startPos);
+	assertEquals("EndPos (1)", 7, kr.match(1).endPos);
+	assertEquals("StartPos (2)", 0, kr.match(2).startPos);
+	assertEquals("EndPos (2)", 10, kr.match(2).endPos);
+
+	sq = new SpanWithinQuery(
+	    new SpanElementQuery("base", "a"),
+            new SpanTermQuery(new Term("base", "s:h"))
+        );
+
+	kr = ki.search(sq, (short) 10);
+	//	System.err.println(kr.toJSON());
+
+	assertEquals("totalResults", 9, kr.totalResults());
+	assertEquals("StartPos (0)", 0, kr.match(0).startPos);
+	assertEquals("EndPos (0)", 4, kr.match(0).endPos);
+	assertEquals("StartPos (1)", 0, kr.match(1).startPos);
+	assertEquals("EndPos (1)", 4, kr.match(1).endPos);
+	assertEquals("StartPos (2)", 0, kr.match(2).startPos);
+	assertEquals("EndPos (2)", 7, kr.match(2).endPos);
+	assertEquals("StartPos (3)", 0, kr.match(3).startPos);
+	assertEquals("EndPos (3)", 7, kr.match(3).endPos);
+	assertEquals("StartPos (4)", 0, kr.match(4).startPos);
+	assertEquals("EndPos (4)", 7, kr.match(4).endPos);
+	assertEquals("StartPos (5)", 0, kr.match(5).startPos);
+	assertEquals("EndPos (5)", 10, kr.match(5).endPos);
+	assertEquals("StartPos (6)", 0, kr.match(6).startPos);
+	assertEquals("EndPos (6)", 10, kr.match(6).endPos);
+	assertEquals("StartPos (7)", 0, kr.match(7).startPos);
+	assertEquals("EndPos (7)", 10, kr.match(7).endPos);
+	assertEquals("StartPos (8)", 0, kr.match(8).startPos);
+	assertEquals("EndPos (8)", 10, kr.match(8).endPos);
+    };
+
+    @Test
+    public void indexExample2b () throws IOException {
+	KorapIndex ki = new KorapIndex();
+
+	// 6,9,12
+	// <a><a><a>h</a>hij</a>hij</a>h
+	FieldDocument fd = new FieldDocument();
+	fd.addTV("base",
+		 "h   i   j   h   i   j   h   i   j   h   ",
+		 "[(0-3)s:h|<>:a#0-27$<i>7|<>:a#0-18$<i>4|<>:a#0-36$<i>10]" + // 1
+		 "[(3-6)s:h]" +    // 2
+		 "[(12-15)s:i]" +  // 3
+		 "[(15-18)s:j]" +  // 4
+		 "[(18-21)s:h]" +  // 5
+		 "[(21-24)s:i]" +  // 6
+		 "[(24-27)s:j]" +  // 7
+		 "[(27-30)s:h]" +  // 8
+		 "[(30-33)s:i]" +  // 9
+		 "[(33-36)s:j]" +  // 10
+		 "[(37-40)s:h]");
+	ki.addDoc(fd);
+
+	// Save documents
+	ki.commit();
+
+	assertEquals(1, ki.numberOf("documents"));
+
+	SpanQuery sq = new SpanElementQuery("base", "a");
+
+	KorapResult kr = ki.search(sq, (short) 10);
+
+	assertEquals("totalResults", 3, kr.totalResults());
+	assertEquals("StartPos (0)", 0, kr.match(0).startPos);
+	assertEquals("EndPos (0)", 4, kr.match(0).endPos);
+	assertEquals("StartPos (1)", 0, kr.match(1).startPos);
+	assertEquals("EndPos (1)", 7, kr.match(1).endPos);
+	assertEquals("StartPos (2)", 0, kr.match(2).startPos);
+	assertEquals("EndPos (2)", 10, kr.match(2).endPos);
+
+	sq = new SpanWithinQuery(
+	    new SpanElementQuery("base", "a"),
+            new SpanTermQuery(new Term("base", "s:h"))
+        );
+
+	kr = ki.search(sq, (short) 10);
+	//	System.err.println(kr.toJSON());
+
+	assertEquals("totalResults", 9, kr.totalResults());
+	assertEquals("StartPos (0)", 0, kr.match(0).startPos);
+	assertEquals("EndPos (0)", 4, kr.match(0).endPos);
+	assertEquals("StartPos (1)", 0, kr.match(1).startPos);
+	assertEquals("EndPos (1)", 4, kr.match(1).endPos);
+	assertEquals("StartPos (2)", 0, kr.match(2).startPos);
+	assertEquals("EndPos (2)", 7, kr.match(2).endPos);
+	assertEquals("StartPos (3)", 0, kr.match(3).startPos);
+	assertEquals("EndPos (3)", 7, kr.match(3).endPos);
+	assertEquals("StartPos (4)", 0, kr.match(4).startPos);
+	assertEquals("EndPos (4)", 7, kr.match(4).endPos);
+	assertEquals("StartPos (5)", 0, kr.match(5).startPos);
+	assertEquals("EndPos (5)", 10, kr.match(5).endPos);
+	assertEquals("StartPos (6)", 0, kr.match(6).startPos);
+	assertEquals("EndPos (6)", 10, kr.match(6).endPos);
+	assertEquals("StartPos (7)", 0, kr.match(7).startPos);
+	assertEquals("EndPos (7)", 10, kr.match(7).endPos);
+	assertEquals("StartPos (8)", 0, kr.match(8).startPos);
+	assertEquals("EndPos (8)", 10, kr.match(8).endPos);
+    };
+
+
+    @Test
+    public void indexExample2c () throws IOException {
+	KorapIndex ki = new KorapIndex();
+
+	// 2, 6, 9, 12
+	// <a><a><a>h</a>hij</a>hij</a>h<a>i</i>
+	FieldDocument fd = new FieldDocument();
+	fd.addTV("base",
+		 "h   i   j   h   i   j   h   i   j   h   i   ",
+		 "[(0-3)s:h|<>:a#0-27$<i>7|<>:a#0-18$<i>4|<>:a#0-36$<i>10]" + // 1
+		 "[(3-6)s:h]" +    // 2
+		 "[(12-15)s:i]" +  // 3
+		 "[(15-18)s:j]" +  // 4
+		 "[(18-21)s:h]" +  // 5
+		 "[(21-24)s:i]" +  // 6
+		 "[(24-27)s:j]" +  // 7
+		 "[(27-30)s:h]" +  // 8
+		 "[(30-33)s:i]" +  // 9
+		 "[(33-36)s:j]" +  // 10
+		 "[(37-40)s:h]" +  // 11
+		 "[(40-43)s:i|<>:a#40-43$<i>12]"); // 12
+	ki.addDoc(fd);
+
+	// Save documents
+	ki.commit();
+
+	assertEquals(1, ki.numberOf("documents"));
+
+	SpanQuery sq = new SpanElementQuery("base", "a");
+
+	KorapResult kr = ki.search(sq, (short) 10);
+
+	assertEquals("totalResults", 4, kr.totalResults());
+	assertEquals("StartPos (0)", 0, kr.match(0).startPos);
+	assertEquals("EndPos (0)", 4, kr.match(0).endPos);
+	assertEquals("StartPos (1)", 0, kr.match(1).startPos);
+	assertEquals("EndPos (1)", 7, kr.match(1).endPos);
+	assertEquals("StartPos (2)", 0, kr.match(2).startPos);
+	assertEquals("EndPos (2)", 10, kr.match(2).endPos);
+	assertEquals("StartPos (3)", 11, kr.match(3).startPos);
+	assertEquals("EndPos (3)", 12, kr.match(3).endPos);
+
+	sq = new SpanWithinQuery(
+	    new SpanElementQuery("base", "a"),
+            new SpanTermQuery(new Term("base", "s:h"))
+        );
+
+	kr = ki.search(sq, (short) 10);
+	//	System.err.println(kr.toJSON());
+
+	assertEquals("totalResults", 9, kr.totalResults());
+	assertEquals("StartPos (0)", 0, kr.match(0).startPos);
+	assertEquals("EndPos (0)", 4, kr.match(0).endPos);
+	assertEquals("StartPos (1)", 0, kr.match(1).startPos);
+	assertEquals("EndPos (1)", 4, kr.match(1).endPos);
+	assertEquals("StartPos (2)", 0, kr.match(2).startPos);
+	assertEquals("EndPos (2)", 7, kr.match(2).endPos);
+	assertEquals("StartPos (3)", 0, kr.match(3).startPos);
+	assertEquals("EndPos (3)", 7, kr.match(3).endPos);
+	assertEquals("StartPos (4)", 0, kr.match(4).startPos);
+	assertEquals("EndPos (4)", 7, kr.match(4).endPos);
+	assertEquals("StartPos (5)", 0, kr.match(5).startPos);
+	assertEquals("EndPos (5)", 10, kr.match(5).endPos);
+	assertEquals("StartPos (6)", 0, kr.match(6).startPos);
+	assertEquals("EndPos (6)", 10, kr.match(6).endPos);
+	assertEquals("StartPos (7)", 0, kr.match(7).startPos);
+	assertEquals("EndPos (7)", 10, kr.match(7).endPos);
+	assertEquals("StartPos (8)", 0, kr.match(8).startPos);
+	assertEquals("EndPos (8)", 10, kr.match(8).endPos);
+    };
+
+
+    @Test
+    public void indexExample2d () throws IOException {
+	KorapIndex ki = new KorapIndex();
+
+	// 2, 6, 9, 12, 7
+	// <a><a><a>h</a>hij</a>hij</a>h<a>h</h>
+	FieldDocument fd = new FieldDocument();
+	fd.addTV("base",
+		 "h   i   j   h   i   j   h   i   j   h   i   ",
+		 "[(0-3)s:h|<>:a#0-27$<i>7|<>:a#0-18$<i>4|<>:a#0-36$<i>10]" + // 1
+		 "[(3-6)s:h]" +    // 2
+		 "[(12-15)s:i]" +  // 3
+		 "[(15-18)s:j]" +  // 4
+		 "[(18-21)s:h]" +  // 5
+		 "[(21-24)s:i]" +  // 6
+		 "[(24-27)s:j]" +  // 7
+		 "[(27-30)s:h]" +  // 8
+		 "[(30-33)s:i]" +  // 9
+		 "[(33-36)s:j]" +  // 10
+		 "[(37-40)s:h]" +  // 11
+		 "[(40-43)s:h|<>:a#40-43$<i>12]"); // 12
+	ki.addDoc(fd);
+
+	// Save documents
+	ki.commit();
+
+	assertEquals(1, ki.numberOf("documents"));
+
+	SpanQuery sq = new SpanElementQuery("base", "a");
+
+	KorapResult kr = ki.search(sq, (short) 10);
+
+	assertEquals("totalResults", 4, kr.totalResults());
+	assertEquals("StartPos (0)", 0, kr.match(0).startPos);
+	assertEquals("EndPos (0)", 4, kr.match(0).endPos);
+	assertEquals("StartPos (1)", 0, kr.match(1).startPos);
+	assertEquals("EndPos (1)", 7, kr.match(1).endPos);
+	assertEquals("StartPos (2)", 0, kr.match(2).startPos);
+	assertEquals("EndPos (2)", 10, kr.match(2).endPos);
+	assertEquals("StartPos (3)", 11, kr.match(3).startPos);
+	assertEquals("EndPos (3)", 12, kr.match(3).endPos);
+
+	sq = new SpanWithinQuery(
+	    new SpanElementQuery("base", "a"),
+            new SpanTermQuery(new Term("base", "s:h"))
+        );
+
+	kr = ki.search(sq, (short) 15);
+	//	System.err.println(kr.toJSON());
+
+	assertEquals("totalResults", 10, kr.totalResults());
+	assertEquals("StartPos (0)", 0, kr.match(0).startPos);
+	assertEquals("EndPos (0)", 4, kr.match(0).endPos);
+	assertEquals("StartPos (1)", 0, kr.match(1).startPos);
+	assertEquals("EndPos (1)", 4, kr.match(1).endPos);
+	assertEquals("StartPos (2)", 0, kr.match(2).startPos);
+	assertEquals("EndPos (2)", 7, kr.match(2).endPos);
+	assertEquals("StartPos (3)", 0, kr.match(3).startPos);
+	assertEquals("EndPos (3)", 7, kr.match(3).endPos);
+	assertEquals("StartPos (4)", 0, kr.match(4).startPos);
+	assertEquals("EndPos (4)", 7, kr.match(4).endPos);
+	assertEquals("StartPos (5)", 0, kr.match(5).startPos);
+	assertEquals("EndPos (5)", 10, kr.match(5).endPos);
+	assertEquals("StartPos (6)", 0, kr.match(6).startPos);
+	assertEquals("EndPos (6)", 10, kr.match(6).endPos);
+	assertEquals("StartPos (7)", 0, kr.match(7).startPos);
+	assertEquals("EndPos (7)", 10, kr.match(7).endPos);
+	assertEquals("StartPos (8)", 0, kr.match(8).startPos);
+	assertEquals("EndPos (8)", 10, kr.match(8).endPos);
+	assertEquals("StartPos (9)", 11, kr.match(9).startPos);
+	assertEquals("EndPos (9)", 12, kr.match(9).endPos);
+    };
+
+
+    @Test
+    public void indexExample3 () throws IOException {
+	KorapIndex ki = new KorapIndex();
+
+	// <a><a><a>u</a></a></a>
+	FieldDocument fd = new FieldDocument();
+	fd.addTV("base",
+		 "xyz",
+		 "[(0-3)s:xyz|<>:a#0-3$<i>0|<>:a#0-3$<i>0|<>:a#0-3$<i>0|<>:b#0-3$<i>0]");
+	ki.addDoc(fd);
+
+	// <a><b>x<a>y<a>zcde</a>cde</a>cde</b></a>
+	fd = new FieldDocument();
+	fd.addTV("base",
+		 "x   y   z   c   d   e   c   d   e   c   d   e   ",
+		 "[(0-3)s:x|<>:a#0-36$<i>12|<>:b#0-36$<i>12]" +
+		 "[(3-6)s:y|<>:a#3-27$<i>9]" +
+		 "[(6-9)s:z|<>:a#6-18$<i>6]" +
+		 "[(9-12)s:c]" +
+		 "[(12-15)s:d]" +
+		 "[(15-18)s:e]" +
+		 "[(18-21)s:c]" +
+		 "[(21-24)s:d]" +
+		 "[(24-27)s:e]" +
+		 "[(27-30)s:c]" +
+		 "[(30-33)s:d]" +
+		 "[(33-36)s:e]");
+	ki.addDoc(fd);
+
+	// xyz
+	fd = new FieldDocument();
+	fd.addTV("base",
+		 "x   y   z   ",
+		 "[(0-3)s:x]" +
+		 "[(3-6)s:y]" +
+		 "[(6-9)s:z]");
+	ki.addDoc(fd);
+
+	// <a>x<a><b>y<a>zcde</a>cde</b></a>cde</a>
+	fd = new FieldDocument();
+	fd.addTV("base",
+		 "x   y   z   k   l   m   k   l   m   k   l   m   ",
+		 "[(0-3)s:x|<>:a#0-3$<i>12]" +
+		 "[(3-6)s:y|<>:a#3-6$<i>9|<>:b#3-6$<i>9]" +
+		 "[(6-9)s:z|<>:a#6-9$<i>6]" +
+		 "[(9-12)s:k]" +
+		 "[(12-15)s:l]" +
+		 "[(15-18)s:m]" +
+		 "[(18-21)s:k]" +
+		 "[(21-24)s:l]" +
+		 "[(24-27)s:m]" +
+		 "[(27-30)s:k]" +
+		 "[(30-33)s:l]" +
+		 "[(33-36)s:m]");
+	ki.addDoc(fd);
+
+	// <a><a><a>h</a>hhij</a>hij</a>hij</a>
+	fd = new FieldDocument();
+	fd.addTV("base",
+		 "h   i   j   h   i   j   h   i   j   ",
+		 "[(0-3)s:h|<>:a#0-27$<i>6|<>:a#0-18$<i>3|<>:a#0-36$<i>9]" +
+		 "[(3-6)s:h]" +
+		 "[(12-15)s:i]" +
+		 "[(15-18)s:j]" +
+		 "[(18-21)s:h]" +
+		 "[(21-24)s:i]" +
+		 "[(24-27)s:j]" +
+		 "[(27-30)s:h]" +
+		 "[(30-33)s:i]" +
+		 "[(33-36)s:j]");
+	ki.addDoc(fd);
+
+	// xyz
+	fd = new FieldDocument();
+	fd.addTV("base",
+		 "a  b  c  ",
+		 "[(0-3)s:a]" +
+		 "[(3-6)s:b]" +
+		 "[(6-9)s:c]");
+	ki.addDoc(fd);
+
+
+	// Save documents
+	ki.commit();
+
+	assertEquals(6, ki.numberOf("documents"));
+
+	SpanQuery sq = new SpanElementQuery("base", "a");
+
+	KorapResult kr = ki.search(sq, (short) 15);
+
+	//	System.err.println(ki.search(sq, (short) 10).toJSON());
+	assertEquals("totalResults", 12, kr.totalResults());
+
+	assertEquals("StartPos (0)", 0, kr.match(0).startPos);
+	assertEquals("EndPos (0)", 0, kr.match(0).endPos);
+	assertEquals("StartPos (1)", 0, kr.match(1).startPos);
+	assertEquals("EndPos (1)", 0, kr.match(1).endPos);
+	assertEquals("StartPos (2)", 0, kr.match(2).startPos);
+	assertEquals("EndPos (2)", 0, kr.match(2).endPos);
+
+	assertEquals("StartPos (3)", 0, kr.match(3).startPos);
+	assertEquals("EndPos (3)", 12, kr.match(3).endPos);
+	assertEquals("StartPos (4)", 1, kr.match(4).startPos);
+	assertEquals("EndPos (4)", 9, kr.match(4).endPos);
+	assertEquals("StartPos (5)", 2, kr.match(5).startPos);
+	assertEquals("EndPos (5)", 6, kr.match(5).endPos);
+
+	assertEquals("StartPos (6)", 0, kr.match(6).startPos);
+	assertEquals("EndPos (6)", 12, kr.match(6).endPos);
+	assertEquals("StartPos (7)", 1, kr.match(7).startPos);
+	assertEquals("EndPos (7)", 9, kr.match(7).endPos);
+	assertEquals("StartPos (8)", 2, kr.match(8).startPos);
+	assertEquals("EndPos (8)", 6, kr.match(8).endPos);
+
+	assertEquals("StartPos (9)", 0, kr.match(9).startPos);
+	assertEquals("EndPos (9)", 3, kr.match(9).endPos);
+	assertEquals("StartPos (10)", 0, kr.match(10).startPos);
+	assertEquals("EndPos (10)", 6, kr.match(10).endPos);
+	assertEquals("StartPos (11)", 0, kr.match(11).startPos);
+	assertEquals("EndPos (11)", 9, kr.match(11).endPos);
+    };
+
+    @Test
+    public void indexExample3Offsets () throws IOException {
+	KorapIndex ki = new KorapIndex();
+
+	// Er schrie: <s>"Das war ich!"</s>
+	FieldDocument fd = new FieldDocument();
+	fd = new FieldDocument();
+	fd.addTV("base",
+		 "Er schrie: \"Das war ich!\" und ging.",
+		 "[(0-2)s:Er|_0#0-3]" +
+		 "[(3-9)s:schrie|_1#3-9]" +
+		 "[(12-15)s:Das|_2#12-15|<>:sentence#11-25$<i>5]" +
+		 "[(16-19)s:war|_3#16-19]" +
+		 "[(20-23)s:ich|_4#20-23]" +
+		 "[(26-29)s:und|_5#26-29]" +
+		 "[(30-34)s:ging|_6#30-34]");
+	ki.addDoc(fd);
+
+	// Save documents
+	ki.commit();
+
+	SpanQuery sq = new SpanClassQuery(new SpanElementQuery("base", "sentence"), (byte)3);
+	KorapResult kr;
+	kr = ki.search(sq, 0, (short) 15, true, (short) 1, true, (short) 1);
+	assertEquals("totalResults", 1, kr.totalResults());
+
+	assertEquals("... schrie: [\"{3:Das war ich}!\"] und ...",kr.match(0).snippetBrackets());
+	assertEquals("<span class=\"korap-more-left\"></span>schrie: <span class=\"korap-match\">&quot;<span class=\"korap-highlight korap-class-3\">Das war ich</span>!&quot;</span> und<span class=\"korap-more-right\"></span>",kr.match(0).snippetHTML());
+
+
+	kr = ki.search(sq, 0, (short) 15, true, (short) 0, true, (short) 0);
+	assertEquals("... [\"{3:Das war ich}!\"] ...",kr.match(0).snippetBrackets());
+	assertEquals("totalResults", 1, kr.totalResults());
+
+
+	kr = ki.search(sq, 0, (short) 15, true, (short) 6, true, (short) 6);
+	assertEquals("Er schrie: [\"{3:Das war ich}!\"] und ging.",kr.match(0).snippetBrackets());
+	assertEquals("totalResults", 1, kr.totalResults());
+
+	kr = ki.search(sq, 0, (short) 15, true, (short) 2, true, (short) 2);
+	assertEquals("Er schrie: [\"{3:Das war ich}!\"] und ging ...",kr.match(0).snippetBrackets());
+	assertEquals("totalResults", 1, kr.totalResults());
+
+
+	sq = new SpanClassQuery(
+          new SpanWithinQuery(
+            new SpanElementQuery("base", "sentence"),
+	    new SpanClassQuery(
+              new SpanTermQuery(new Term("base", "s:Das")), (byte) 2
+	    )
+        ), (byte) 1);
+
+	kr = ki.search(sq, (short) 15);
+	assertEquals("Er schrie: [\"{1:{2:Das} war ich}!\"] und ging.",kr.match(0).snippetBrackets());
+	assertEquals("totalResults", 1, kr.totalResults());
+
+	sq = new SpanClassQuery(
+          new SpanWithinQuery(
+            new SpanElementQuery("base", "sentence"),
+	    new SpanClassQuery(
+              new SpanTermQuery(new Term("base", "s:war")), (byte) 2
+	    )
+        ), (byte) 1);
+
+	kr = ki.search(sq, (short) 15);
+	assertEquals("Er schrie: [\"{1:Das {2:war} ich}!\"] und ging.",kr.match(0).snippetBrackets());
+	assertEquals("totalResults", 1, kr.totalResults());
+
+	sq = new SpanClassQuery(
+          new SpanWithinQuery(
+            new SpanElementQuery("base", "sentence"),
+	    new SpanClassQuery(
+              new SpanTermQuery(new Term("base", "s:ich")), (byte) 2
+	    )
+        ), (byte) 1);
+
+	kr = ki.search(sq, (short) 15);
+	assertEquals("Er schrie: [\"{1:Das war {2:ich}}!\"] und ging.",kr.match(0).snippetBrackets());
+	assertEquals("totalResults", 1, kr.totalResults());
+
+	sq = new SpanClassQuery(
+          new SpanWithinQuery(
+            new SpanElementQuery("base", "sentence"),
+	    new SpanClassQuery(
+              new SpanTermQuery(new Term("base", "s:und")), (byte) 2
+	    )
+        ), (byte) 1);
+
+	kr = ki.search(sq, (short) 15);
+	assertEquals("totalResults", 0, kr.totalResults());
+
+	sq = new SpanClassQuery(
+          new SpanWithinQuery(
+            new SpanElementQuery("base", "sentence"),
+	    new SpanClassQuery(
+              new SpanTermQuery(new Term("base", "s:schrie")), (byte) 2
+	    )
+        ), (byte) 1);
+
+	kr = ki.search(sq, (short) 15);
+	assertEquals("totalResults", 0, kr.totalResults());
+
+    };
+
+
+    //!! Offset is 1 token tooo long
+
+    @Test
+    public void indexExample4 () throws IOException {
+	KorapIndex ki = new KorapIndex();
+
+	// Case 1, 6, 7, 13
+	// xy<a><a>x</a>b<a>c</a></a>x
+	FieldDocument fd = new FieldDocument();
+	fd.addTV("base",
+		 "x  y  x  b  c  x  ",
+		 "[(0-3)s:x]" +
+		 "[(3-6)s:y]" +
+		 "[(6-9)s:x|<>:a#6-15$<i>5|<>:a#6-9$<i>3]" +
+		 "[(9-12)s:b]" +
+		 "[(12-15)s:c|<>:a#12-15$<i>5]" +
+		 "[(15-18)s:x]");
+	ki.addDoc(fd);
+
+	// Save documents
+	ki.commit();
+
+	assertEquals(1, ki.numberOf("documents"));
+
+	SpanQuery sq = new SpanWithinQuery(
+	    new SpanElementQuery("base", "a"),
+            new SpanTermQuery(new Term("base", "s:x"))
+        );
+
+	KorapResult kr = ki.search(sq, (short) 10);
+
+	assertEquals("totalResults", 2, kr.totalResults());
+	assertEquals("StartPos (0)", 2, kr.match(0).startPos);
+	assertEquals("EndPos (0)", 3, kr.match(0).endPos);
+	assertEquals("StartPos (1)", 2, kr.match(1).startPos);
+	assertEquals("EndPos (1)", 5, kr.match(1).endPos);
+    };
+
+
+    @Test
+    public void indexExample5 () throws IOException {
+	// 1,2,3,6,9,10,12
+	KorapIndex ki = new KorapIndex();
+
+	// hij<a>hi<a>h<a>ij</a></a>hi</a>
+	FieldDocument fd = new FieldDocument();
+	fd.addTV("base",
+		 "hijhihijhi",
+		 "[(0-1)s:h|i:h|_0#0-1|-:a$<i>3|-:t$<i>10]" +
+		 "[(1-2)s:i|i:i|_1#1-2]" +
+		 "[(2-3)s:j|i:j|_2#2-3]" +
+		 "[(3-4)s:h|i:h|_3#3-4|<>:a#3-10$<i>10]" +
+		 "[(4-5)s:i|i:i|_4#4-5]" +
+		 "[(5-6)s:h|i:h|_5#5-6|<>:a#5-8$<i>8]" +
+		 "[(6-7)s:i|i:i|_6#6-7|<>:a#6-8$<i>8]" +
+		 "[(7-8)s:j|i:j|_7#7-8]" +
+		 "[(8-9)s:h|i:h|_8#8-9]" +
+		 "[(9-10)s:i|i:i|_9#9-10]");
+	ki.addDoc(fd);
+
+	// Save documents
+	ki.commit();
+
+	assertEquals(1, ki.numberOf("documents"));
+
+	SpanQuery sq = new SpanWithinQuery(
+	    new SpanElementQuery("base", "a"),
+            new SpanNextQuery(
+	      new SpanTermQuery(new Term("base", "s:h")),
+	      new SpanTermQuery(new Term("base", "s:i"))
+            )
+        );
+
+	KorapResult kr = ki.search(sq, (short) 10);
+
+	assertEquals("totalResults", 4, kr.totalResults());
+
+	assertEquals("StartPos (0)", 3, kr.match(0).startPos);
+	assertEquals("EndPos (0)", 10, kr.match(0).endPos);
+	assertEquals("StartPos (1)", 3, kr.match(1).startPos);
+	assertEquals("EndPos (1)", 10, kr.match(1).endPos);
+	assertEquals("StartPos (2)", 3, kr.match(2).startPos);
+	assertEquals("EndPos (2)", 10, kr.match(2).endPos);
+	assertEquals("StartPos (3)", 5, kr.match(3).startPos);
+	assertEquals("EndPos (3)", 8, kr.match(3).endPos);
+    };
+
+    @Test
+    public void indexExample6 () throws IOException {
+	KorapIndex ki = new KorapIndex();
+	// 2,5,8,12,13
+	// h<a><a>i</a>j</a><a>h</a>i j<a>h i</a>j
+	FieldDocument fd = new FieldDocument();
+	fd.addTV("base",
+		 "hijhi jh ij",
+		 "[(0-1)s:h|i:h|_0#0-1|-:a$<i>4|-:t$<i>9]" +
+		 "[(1-2)s:i|i:i|_1#1-2|<>:a#1-2$<i>2|<>:a#1-3$<i>3]" +
+		 "[(2-3)s:j|i:j|_2#2-3]" +
+		 "[(3-4)s:h|i:h|_3#3-4|<>:a#3-4$<i>4]" +
+		 "[(4-5)s:i|i:i|_4#4-5]" +
+		 "[(6-7)s:j|i:j|_5#6-7]" +
+		 "[(7-8)s:h|i:h|_6#7-8|<>:a#7-10$<i>8]" +
+		 "[(9-10)s:i|i:i|_7#9-10]" +
+		 "[(10-11)s:j|i:j|_8#10-11]");
+	ki.addDoc(fd);
+
+	// Save documents
+	ki.commit();
+
+	assertEquals(1, ki.numberOf("documents"));
+
+	SpanQuery sq = new SpanWithinQuery(
+          new SpanElementQuery("base", "a"),
+            new SpanNextQuery(
+	      new SpanTermQuery(new Term("base", "s:h")),
+	      new SpanNextQuery(
+		new SpanTermQuery(new Term("base", "s:i")),
+  	        new SpanTermQuery(new Term("base", "s:j"))
+	      )
+            )
+        );
+
+	KorapResult kr = ki.search(sq, (short) 10);
+
+	assertEquals("totalResults", 0, kr.totalResults());
+    };
+
+
+    @Test
+    public void indexExample7 () throws IOException {
+	KorapIndex ki = new KorapIndex();
+	// 4,5,11,13
+	// x<a>x h</a>i j h<a>i j</a>
+	FieldDocument fd = new FieldDocument();
+	fd.addTV("base",
+		 "xx hi j hi j",
+		 "[(0-1)s:x|i:x|_0#0-1|-:a$<i>2|-:t$<i>8]" +
+		 "[(1-2)s:x|i:x|_1#1-2|<>:a#1-4$<i>3]" +
+		 "[(3-4)s:h|i:h|_2#3-4]" +
+		 "[(4-5)s:i|i:i|_3#4-5]" +
+		 "[(6-7)s:j|i:j|_4#6-7]" +
+		 "[(8-9)s:h|i:h|_5#8-9]" +
+		 "[(9-10)s:i|i:i|_6#9-10|<>:a#9-12$<i>8]" +
+		 "[(11-12)s:j|i:j|_7#11-12]");
+	ki.addDoc(fd);
+
+	// Save documents
+	ki.commit();
+
+	assertEquals(1, ki.numberOf("documents"));
+
+	SpanQuery sq = new SpanWithinQuery(
+          new SpanElementQuery("base", "a"),
+            new SpanNextQuery(
+	      new SpanTermQuery(new Term("base", "s:h")),
+	      new SpanNextQuery(
+		new SpanTermQuery(new Term("base", "s:i")),
+  	        new SpanTermQuery(new Term("base", "s:j"))
+	      )
+            )
+        );
+
+	KorapResult kr = ki.search(sq, (short) 10);
+
+	assertEquals("totalResults", 0, kr.totalResults());
+    };
+};
diff --git a/trunk/src/test/java/de/ids_mannheim/korap/query/TestKorapQuery.java b/trunk/src/test/java/de/ids_mannheim/korap/query/TestKorapQuery.java
new file mode 100644
index 0000000..d1dc5b3
--- /dev/null
+++ b/trunk/src/test/java/de/ids_mannheim/korap/query/TestKorapQuery.java
@@ -0,0 +1,160 @@
+import java.util.*;
+import org.apache.lucene.search.spans.SpanQuery;
+import de.ids_mannheim.korap.KorapQuery;
+
+
+import static org.junit.Assert.*;
+import org.junit.Test;
+import org.junit.Ignore;
+import org.junit.runner.RunWith;
+import org.junit.runners.JUnit4;
+
+@RunWith(JUnit4.class)
+public class TestKorapQuery {
+
+    @Test
+    public void korapQuerySegment () {
+	SpanQuery sq = new KorapQuery("field1").seg("a").with("b").toQuery();
+	assertEquals("spanNear([field1:a, field1:b], -1, false)", sq.toString());
+
+	sq = new KorapQuery("field2").seg("a", "b").with("c").toQuery();
+	assertEquals("spanNear([spanNear([field2:a, field2:b], -1, false), field2:c], -1, false)", sq.toString());
+    };
+
+    @Test
+    public void korapQueryRegexSegment () {
+	KorapQuery kq = new KorapQuery("field1");
+	SpanQuery sq = kq.seg("a").with(kq.re("b.*c")).toQuery();
+	assertEquals("spanNear([field1:a, SpanMultiTermQueryWrapper(field1:/b.*c/)], -1, false)", sq.toString());
+
+	kq = new KorapQuery("field2");
+	sq = kq.seg(kq.re("a.*")).with("b").toQuery();
+	assertEquals("spanNear([SpanMultiTermQueryWrapper(field2:/a.*/), field2:b], -1, false)", sq.toString());
+    };
+
+    @Test
+    public void korapQueryRegexSegment2 () {
+	KorapQuery kq = new KorapQuery("field");
+	SpanQuery sq = kq.seg("a").with(kq.or("b").or("c")).toQuery();
+	assertEquals("spanNear([field:a, spanOr([field:b, field:c])], -1, false)", sq.toString());
+
+	kq = new KorapQuery("field");
+	sq = kq.seg("a").with(kq.or("b", "c")).toQuery();
+	assertEquals("spanNear([field:a, spanOr([field:b, field:c])], -1, false)", sq.toString());
+
+
+	kq = new KorapQuery("field");
+	// [ a & (b | /c.*d/) ]
+	sq = kq.seg("a").with(kq.or("b").or(kq.re("c.*d"))).toQuery();
+	assertEquals("spanNear([field:a, spanOr([field:b, SpanMultiTermQueryWrapper(field:/c.*d/)])], -1, false)", sq.toString());
+    };
+
+    @Test
+    public void korapQuerySequenceSegment () {
+	KorapQuery kq = new KorapQuery("field");
+	SpanQuery sq = kq.seq(kq.seg("a").with(kq.or("b", "c"))).append("d").append(kq.re("e.?f")).toQuery();
+	assertEquals("spanNext(spanNext(spanNear([field:a, spanOr([field:b, field:c])], -1, false), field:d), SpanMultiTermQueryWrapper(field:/e.?f/))", sq.toString());
+    };
+
+    @Test
+    public void KorapTagQuery () {
+	KorapQuery kq = new KorapQuery("field");
+	SpanQuery sq = kq.tag("np").toQuery();
+	assertEquals("<field:np />", sq.toString());
+    };
+
+    @Test
+    public void KorapTagQuery2 () {
+	KorapQuery kq = new KorapQuery("field");
+	SpanQuery sq = kq.or(kq.tag("np"), kq.tag("vp")).toQuery();
+	assertEquals("spanOr([<field:np />, <field:vp />])", sq.toString());
+    };
+
+    @Test
+    public void KorapTagQuery3 () {
+	KorapQuery kq = new KorapQuery("field");
+	SpanQuery sq = kq.seq(kq.tag("np"), kq.tag("vp")).toQuery();
+	assertEquals("spanNext(<field:np />, <field:vp />)", sq.toString());
+    };
+
+    @Test
+    public void KorapTagQuery4 () {
+	KorapQuery kq = new KorapQuery("field");
+	SpanQuery sq = kq.seq(kq.tag("np"), kq.tag("vp")).append("test").toQuery();
+	assertEquals("spanNext(spanNext(<field:np />, <field:vp />), field:test)", sq.toString());
+    };
+
+    @Test
+    public void KorapTagQuery5 () {
+	KorapQuery kq = new KorapQuery("field");
+	SpanQuery sq = kq.within(kq.tag("s"), kq.tag("np")).toQuery();
+	assertEquals("spanWithin(<field:s />, <field:np />)", sq.toString());
+    };
+
+    @Test
+    public void KorapTagQuery6 () {
+	KorapQuery kq = new KorapQuery("field");
+	SpanQuery sq = kq.seq(kq.seg("tree"), kq.within(kq.tag("s"), kq.tag("np")), kq.re("hey.*")).toQuery();
+	assertEquals("spanNext(spanNext(field:tree, spanWithin(<field:s />, <field:np />)), SpanMultiTermQueryWrapper(field:/hey.*/))", sq.toString());
+    };
+
+
+    @Test
+    public void KorapClassQuery () {
+	KorapQuery kq = new KorapQuery("field");
+	SpanQuery sq = kq.seq(kq.seg("tree"), kq._(1, kq.within(kq.tag("s"), kq.tag("np"))), kq.re("hey.*")).toQuery();
+	assertEquals("spanNext(spanNext(field:tree, {1: spanWithin(<field:s />, <field:np />)}), SpanMultiTermQueryWrapper(field:/hey.*/))", sq.toString());
+    };
+
+    @Test
+    public void KorapClassQuery2 () {
+	KorapQuery kq = new KorapQuery("field");
+	SpanQuery sq = kq._(kq.seg("base:test")).toQuery();
+	assertEquals("{0: field:base:test}", sq.toString());
+    };
+
+    @Test
+    public void KorapClassQuery3 () {
+	KorapQuery kq = new KorapQuery("field");
+	SpanQuery sq = kq.seq(kq.seg("tree"), kq.within(kq.tag("s"), kq._(kq.tag("np"))), kq.re("hey.*")).toQuery();
+	assertEquals("spanNext(spanNext(field:tree, spanWithin(<field:s />, {0: <field:np />})), SpanMultiTermQueryWrapper(field:/hey.*/))", sq.toString());
+    };
+
+    @Test
+    public void KorapShrinkQuery () {
+	KorapQuery kq = new KorapQuery("field");
+	SpanQuery sq = kq.shrink(kq.tag("np")).toQuery();
+	assertEquals("shrink(0: <field:np />)", sq.toString());
+    };
+
+    @Test
+    public void KorapShrinkQuery1 () {
+	KorapQuery kq = new KorapQuery("field");
+	SpanQuery sq = kq.shrink(1, kq.tag("np")).toQuery();
+	assertEquals("shrink(1: <field:np />)", sq.toString());
+    };
+
+    @Test
+    public void KorapShrinkQuery2 () {
+	KorapQuery kq = new KorapQuery("field");
+	SpanQuery sq = kq.shrink(1, kq._(1, kq.tag("np"))).toQuery();
+	assertEquals("shrink(1: {1: <field:np />})", sq.toString());
+    };
+
+    @Test
+    public void KorapShrinkQuery3 () {
+	KorapQuery kq = new KorapQuery("field");
+	SpanQuery sq = kq.shrink(1, kq._(1, kq.seq(kq.tag("np"), kq._(kq.seg("test").without("no"))))).toQuery();
+	assertEquals("shrink(1: {1: spanNext(<field:np />, {0: spanNot(field:test, field:no)})})", sq.toString());
+    };
+
+    @Test
+    public void KorapShrinkQuery4 () {
+	KorapQuery kq = new KorapQuery("field");
+	SpanQuery sq = kq.seq(kq.seg("try1"), kq.shrink(1, kq._(1, kq.seg("try2"))), kq.seg("try3")).toQuery();
+	assertEquals("spanNext(spanNext(field:try1, shrink(1: {1: field:try2})), field:try3)", sq.toString());
+    };
+
+    // kq.seg("a").append(kq.ANY).append("b:c");
+    // kq.repeat(kq.seg("a", "b"), 5)
+};
diff --git a/trunk/src/test/java/de/ids_mannheim/korap/query/TestSpanAlterQuery.java b/trunk/src/test/java/de/ids_mannheim/korap/query/TestSpanAlterQuery.java
new file mode 100644
index 0000000..28ef2b4
--- /dev/null
+++ b/trunk/src/test/java/de/ids_mannheim/korap/query/TestSpanAlterQuery.java
@@ -0,0 +1,54 @@
+import java.util.*;
+import de.ids_mannheim.korap.query.wrap.SpanAlterQueryWrapper;
+import de.ids_mannheim.korap.query.wrap.SpanRegexQueryWrapper;
+import de.ids_mannheim.korap.query.wrap.SpanSegmentQueryWrapper;
+
+import static org.junit.Assert.*;
+import org.junit.Test;
+import org.junit.Ignore;
+import org.junit.runner.RunWith;
+import org.junit.runners.JUnit4;
+
+@RunWith(JUnit4.class)
+public class TestSpanAlterQuery {
+    @Test
+    public void spanAlterQuery () {
+
+	SpanAlterQueryWrapper ssaquery = new SpanAlterQueryWrapper("field");
+	ssaquery.or("b");
+	assertEquals("field:b", ssaquery.toQuery().toString());
+    };
+
+    @Test
+    public void spanAlterQuery2 () {
+
+	SpanAlterQueryWrapper ssaquery = new SpanAlterQueryWrapper("field");
+	ssaquery.or("b").or("c");
+	assertEquals("spanOr([field:b, field:c])", ssaquery.toQuery().toString());
+    };
+
+    @Test
+    public void spanAlterQuery3 () {
+	SpanAlterQueryWrapper ssaquery = new SpanAlterQueryWrapper("field");
+	ssaquery.or("b").or("c").or("d");
+	assertEquals("spanOr([field:b, field:c, field:d])", ssaquery.toQuery().toString());
+    };
+
+
+    @Test
+    public void spanAlterQuery4 () {
+	SpanSegmentQueryWrapper segquery = new SpanSegmentQueryWrapper("field", "a", "b", "c");
+	SpanAlterQueryWrapper ssaquery = new SpanAlterQueryWrapper("field");
+	ssaquery.or("d").or(segquery).or("e");
+	assertEquals("spanOr([field:d, spanNear([spanNear([field:a, field:b], -1, false), field:c], -1, false), field:e])", ssaquery.toQuery().toString());
+    };
+
+    @Test
+    public void spanAlterQuery5 () {
+	SpanRegexQueryWrapper srequery = new SpanRegexQueryWrapper("field", "a[bc]d.?e");
+	SpanAlterQueryWrapper ssaquery = new SpanAlterQueryWrapper("field");
+	ssaquery.or("f").or(srequery).or("g");
+	assertEquals("spanOr([field:f, SpanMultiTermQueryWrapper(field:/a[bc]d.?e/), field:g])", ssaquery.toQuery().toString());
+    };
+
+};
diff --git a/trunk/src/test/java/de/ids_mannheim/korap/query/TestSpanElementQuery.java b/trunk/src/test/java/de/ids_mannheim/korap/query/TestSpanElementQuery.java
new file mode 100644
index 0000000..e72fa36
--- /dev/null
+++ b/trunk/src/test/java/de/ids_mannheim/korap/query/TestSpanElementQuery.java
@@ -0,0 +1,26 @@
+import java.util.*;
+import org.apache.lucene.index.Term;
+
+import de.ids_mannheim.korap.query.SpanElementQuery;
+
+import static org.junit.Assert.*;
+import org.junit.Test;
+import org.junit.Ignore;
+import org.junit.runner.RunWith;
+import org.junit.runners.JUnit4;
+
+@RunWith(JUnit4.class)
+public class TestSpanElementQuery {
+
+    @Test
+    public void spanElementQuery () {
+	SpanElementQuery sequery = new SpanElementQuery("field", "b");
+	assertEquals("<field:b />", sequery.toString());
+    };
+
+    @Test
+    public void spanElement2Query () {
+	SpanElementQuery sequery = new SpanElementQuery("field", "xyz");
+	assertEquals("<field:xyz />", sequery.toString());
+    };
+};
diff --git a/trunk/src/test/java/de/ids_mannheim/korap/query/TestSpanSegmentAlterQuery.java b/trunk/src/test/java/de/ids_mannheim/korap/query/TestSpanSegmentAlterQuery.java
new file mode 100644
index 0000000..f780072
--- /dev/null
+++ b/trunk/src/test/java/de/ids_mannheim/korap/query/TestSpanSegmentAlterQuery.java
@@ -0,0 +1,54 @@
+import java.util.*;
+import de.ids_mannheim.korap.query.wrap.SpanAlterQueryWrapper;
+import de.ids_mannheim.korap.query.wrap.SpanRegexQueryWrapper;
+import de.ids_mannheim.korap.query.wrap.SpanSegmentQueryWrapper;
+
+import static org.junit.Assert.*;
+import org.junit.Test;
+import org.junit.Ignore;
+import org.junit.runner.RunWith;
+import org.junit.runners.JUnit4;
+
+@RunWith(JUnit4.class)
+public class TestSpanSegmentAlterQuery {
+    @Test
+    public void spanAlterQuery () {
+
+	SpanAlterQueryWrapper ssaquery = new SpanAlterQueryWrapper("field");
+	ssaquery.or("b");
+	assertEquals("field:b", ssaquery.toQuery().toString());
+    };
+
+    @Test
+    public void spanAlterQuery2 () {
+
+	SpanAlterQueryWrapper ssaquery = new SpanAlterQueryWrapper("field");
+	ssaquery.or("b").or("c");
+	assertEquals("spanOr([field:b, field:c])", ssaquery.toQuery().toString());
+    };
+
+    @Test
+    public void spanAlterQuery3 () {
+	SpanAlterQueryWrapper ssaquery = new SpanAlterQueryWrapper("field");
+	ssaquery.or("b").or("c").or("d");
+	assertEquals("spanOr([field:b, field:c, field:d])", ssaquery.toQuery().toString());
+    };
+
+
+    @Test
+    public void spanAlterQuery4 () {
+	SpanSegmentQueryWrapper segquery = new SpanSegmentQueryWrapper("field", "a", "b", "c");
+	SpanAlterQueryWrapper ssaquery = new SpanAlterQueryWrapper("field");
+	ssaquery.or("d").or(segquery).or("e");
+	assertEquals("spanOr([field:d, spanNear([spanNear([field:a, field:b], -1, false), field:c], -1, false), field:e])", ssaquery.toQuery().toString());
+    };
+
+    @Test
+    public void spanAlterQuery5 () {
+	SpanRegexQueryWrapper srequery = new SpanRegexQueryWrapper("field", "a[bc]d.?e");
+	SpanAlterQueryWrapper ssaquery = new SpanAlterQueryWrapper("field");
+	ssaquery.or("f").or(srequery).or("g");
+	assertEquals("spanOr([field:f, SpanMultiTermQueryWrapper(field:/a[bc]d.?e/), field:g])", ssaquery.toQuery().toString());
+    };
+
+};
diff --git a/trunk/src/test/java/de/ids_mannheim/korap/query/TestSpanSegmentQuery.java b/trunk/src/test/java/de/ids_mannheim/korap/query/TestSpanSegmentQuery.java
new file mode 100644
index 0000000..c4fd3d1
--- /dev/null
+++ b/trunk/src/test/java/de/ids_mannheim/korap/query/TestSpanSegmentQuery.java
@@ -0,0 +1,99 @@
+import java.util.*;
+import de.ids_mannheim.korap.query.wrap.SpanSegmentQueryWrapper;
+import de.ids_mannheim.korap.query.wrap.SpanRegexQueryWrapper;
+import de.ids_mannheim.korap.query.wrap.SpanAlterQueryWrapper;
+
+import static org.junit.Assert.*;
+import org.junit.Test;
+import org.junit.Ignore;
+import org.junit.runner.RunWith;
+import org.junit.runners.JUnit4;
+
+@RunWith(JUnit4.class)
+public class TestSpanSegmentQuery {
+    @Test
+    public void spanSegmentQuery () {
+
+	SpanSegmentQueryWrapper ssquery = new SpanSegmentQueryWrapper("field","a");
+	assertEquals("field:a", ssquery.toQuery().toString());
+
+	ssquery = new SpanSegmentQueryWrapper("field", "a", "b");
+	assertEquals("spanNear([field:a, field:b], -1, false)", ssquery.toQuery().toString());
+
+	ssquery = new SpanSegmentQueryWrapper("field","a", "b", "c");
+	assertEquals("spanNear([spanNear([field:a, field:b], -1, false), field:c], -1, false)", ssquery.toQuery().toString());
+    };
+
+    @Test
+    public void spanSegmentQueryExclusive () {
+
+	SpanSegmentQueryWrapper ssquery = new SpanSegmentQueryWrapper("field","a");
+	assertEquals("field:a", ssquery.toQuery().toString());
+
+	ssquery = new SpanSegmentQueryWrapper("field", "a", "b");
+	assertEquals("spanNear([field:a, field:b], -1, false)", ssquery.toQuery().toString());
+
+	ssquery.without("c");
+	assertEquals("spanNot(spanNear([field:a, field:b], -1, false), field:c)", ssquery.toQuery().toString());
+
+	ssquery.without("d");
+	assertEquals("spanNot(spanNear([field:a, field:b], -1, false), spanOr([field:c, field:d]))", ssquery.toQuery().toString());
+    };
+
+
+    @Test
+    public void spanSegmentRegexQuery () {
+	SpanSegmentQueryWrapper ssquery = new SpanSegmentQueryWrapper("field");
+	assertNull(ssquery.toQuery());
+	ssquery.with("a");
+	assertEquals("field:a", ssquery.toQuery().toString());
+
+	ssquery.with(new SpanRegexQueryWrapper("field", "a.*b"));
+
+	assertEquals("spanNear([field:a, SpanMultiTermQueryWrapper(field:/a.*b/)], -1, false)", ssquery.toQuery().toString());
+
+	ssquery.with("c");
+
+	assertEquals("spanNear([spanNear([field:a, SpanMultiTermQueryWrapper(field:/a.*b/)], -1, false), field:c], -1, false)", ssquery.toQuery().toString());
+
+	ssquery.with("d").with("e");
+
+	assertEquals("spanNear([spanNear([spanNear([spanNear([field:a, SpanMultiTermQueryWrapper(field:/a.*b/)], -1, false), field:c], -1, false), field:d], -1, false), field:e], -1, false)", ssquery.toQuery().toString());
+
+	ssquery.without(new SpanRegexQueryWrapper("field", "x.?y"));
+
+	assertEquals("spanNot(spanNear([spanNear([spanNear([spanNear([field:a, SpanMultiTermQueryWrapper(field:/a.*b/)], -1, false), field:c], -1, false), field:d], -1, false), field:e], -1, false), SpanMultiTermQueryWrapper(field:/x.?y/))", ssquery.toQuery().toString());
+
+	ssquery.without(new SpanRegexQueryWrapper("field", "z{5,9}"));
+
+	assertEquals("spanNot(spanNear([spanNear([spanNear([spanNear([field:a, SpanMultiTermQueryWrapper(field:/a.*b/)], -1, false), field:c], -1, false), field:d], -1, false), field:e], -1, false), spanOr([SpanMultiTermQueryWrapper(field:/x.?y/), SpanMultiTermQueryWrapper(field:/z{5,9}/)]))", ssquery.toQuery().toString());
+
+    };
+
+    @Test
+    public void spanSegmentAlterQuery () {
+	SpanSegmentQueryWrapper ssquery = new SpanSegmentQueryWrapper("field");
+	assertNull(ssquery.toQuery());
+
+	ssquery.with("a");
+	assertEquals("field:a", ssquery.toQuery().toString());
+	ssquery.with(new SpanAlterQueryWrapper("field", "c", "d"));
+	ssquery.with(new SpanRegexQueryWrapper("field", "a.*b"));
+
+	assertEquals("spanNear([spanNear([field:a, spanOr([field:c, field:d])], -1, false), SpanMultiTermQueryWrapper(field:/a.*b/)], -1, false)", ssquery.toQuery().toString());
+    };
+
+
+    @Test
+    public void spanSegmentCloneQuery () {
+	SpanSegmentQueryWrapper ssquery = new SpanSegmentQueryWrapper("field", "a", "b");
+	assertEquals("spanNear([field:a, field:b], -1, false)", ssquery.toQuery().toString());
+
+	SpanSegmentQueryWrapper ssquery2 = new SpanSegmentQueryWrapper("field", ssquery);
+	assertEquals(ssquery.toQuery().toString(), ssquery2.toQuery().toString());
+
+	SpanSegmentQueryWrapper ssquery3 = ssquery2.clone();
+	assertEquals(ssquery.toQuery().toString(), ssquery3.toQuery().toString());
+	assertEquals(ssquery2.toQuery().toString(), ssquery3.toQuery().toString());
+    };
+};
diff --git a/trunk/src/test/java/de/ids_mannheim/korap/query/TestSpanSegmentSequenceQuery.java b/trunk/src/test/java/de/ids_mannheim/korap/query/TestSpanSegmentSequenceQuery.java
new file mode 100644
index 0000000..840f9f3
--- /dev/null
+++ b/trunk/src/test/java/de/ids_mannheim/korap/query/TestSpanSegmentSequenceQuery.java
@@ -0,0 +1,80 @@
+import java.util.*;
+import de.ids_mannheim.korap.query.wrap.SpanSegmentQueryWrapper;
+import de.ids_mannheim.korap.query.wrap.SpanRegexQueryWrapper;
+import de.ids_mannheim.korap.query.wrap.SpanAlterQueryWrapper;
+import de.ids_mannheim.korap.query.wrap.SpanSequenceQueryWrapper;
+
+import static org.junit.Assert.*;
+import org.junit.Test;
+import org.junit.Ignore;
+import org.junit.runner.RunWith;
+import org.junit.runners.JUnit4;
+
+@RunWith(JUnit4.class)
+public class TestSpanSegmentSequenceQuery {
+
+    @Test
+    public void spanSegmentSequenceQuery () {
+	SpanSequenceQueryWrapper sssq = new SpanSequenceQueryWrapper("field");
+
+	assertNull(sssq.toQuery());
+
+	sssq.append("a").append("b");
+
+	assertEquals("spanNext(field:a, field:b)", sssq.toQuery().toString());
+
+	sssq.append("c");
+
+	assertEquals("spanNext(spanNext(field:a, field:b), field:c)", sssq.toQuery().toString());
+    };
+
+    @Test
+    public void spanSegmentSequenceQuery2 () {
+	SpanSegmentQueryWrapper ssq = new SpanSegmentQueryWrapper("field", "-c", "-d", "-e");
+	SpanSequenceQueryWrapper sssq = new SpanSequenceQueryWrapper("field", "a", "b");
+
+	sssq.append(ssq);
+
+	assertEquals("spanNext(spanNext(field:a, field:b), spanNear([spanNear([field:-c, field:-d], -1, false), field:-e], -1, false))", sssq.toQuery().toString());
+
+    };
+
+    @Test
+    public void spanSegmentSequenceQuery3 () {
+	SpanSequenceQueryWrapper sssq = new SpanSequenceQueryWrapper("field", "a", "b");
+	SpanRegexQueryWrapper ssreq = new SpanRegexQueryWrapper("field", "c.?d");
+
+	sssq.append(ssreq);
+
+	assertEquals("spanNext(spanNext(field:a, field:b), SpanMultiTermQueryWrapper(field:/c.?d/))", sssq.toQuery().toString());
+    };
+
+    @Test
+    public void spanSegmentSequenceQueryPrepend () {
+	SpanSequenceQueryWrapper sssq = new SpanSequenceQueryWrapper("field", "b", "c");
+
+	sssq.prepend("a");
+
+	assertEquals("spanNext(spanNext(field:a, field:b), field:c)", sssq.toQuery().toString());
+    };
+
+    @Test
+    public void spanSegmentSequenceQueryPrepend2 () {
+	SpanSequenceQueryWrapper sssq = new SpanSequenceQueryWrapper("field", "d", "e");
+	SpanSegmentQueryWrapper ssq = new SpanSegmentQueryWrapper("field", "-a", "-b", "-c");
+
+	sssq.prepend(ssq);
+
+	assertEquals("spanNext(spanNext(spanNear([spanNear([field:-a, field:-b], -1, false), field:-c], -1, false), field:d), field:e)", sssq.toQuery().toString());
+    };
+
+    @Test
+    public void spanSegmentSequenceQueryPrepend3 () {
+	SpanSequenceQueryWrapper sssq = new SpanSequenceQueryWrapper("field", "c", "d");
+	SpanRegexQueryWrapper ssreq = new SpanRegexQueryWrapper("field", "a.?b");
+
+	sssq.prepend(ssreq);
+
+	assertEquals("spanNext(spanNext(SpanMultiTermQueryWrapper(field:/a.?b/), field:c), field:d)", sssq.toQuery().toString());
+    };
+};
diff --git a/trunk/src/test/java/de/ids_mannheim/korap/query/TestSpanWithinQuery.java b/trunk/src/test/java/de/ids_mannheim/korap/query/TestSpanWithinQuery.java
new file mode 100644
index 0000000..012a8f4
--- /dev/null
+++ b/trunk/src/test/java/de/ids_mannheim/korap/query/TestSpanWithinQuery.java
@@ -0,0 +1,27 @@
+import java.util.*;
+import de.ids_mannheim.korap.query.wrap.SpanSequenceQueryWrapper;
+import de.ids_mannheim.korap.query.SpanWithinQuery;
+
+import static org.junit.Assert.*;
+import org.junit.Test;
+import org.junit.Ignore;
+import org.junit.runner.RunWith;
+import org.junit.runners.JUnit4;
+
+@RunWith(JUnit4.class)
+public class TestSpanWithinQuery {
+    @Test
+    public void spanSegmentWithinQuery () {
+
+	SpanSequenceQueryWrapper ssquery = new SpanSequenceQueryWrapper("field", "a", "b", "c");
+	SpanWithinQuery ssequery = new SpanWithinQuery("s", ssquery.toQuery());
+
+	assertEquals("spanWithin(<field:s />, spanNext(spanNext(field:a, field:b), field:c))", ssequery.toString());
+
+	ssquery = new SpanSequenceQueryWrapper("field", "a", "b");
+	ssequery = new SpanWithinQuery("p", ssquery.toQuery());
+	assertEquals("spanWithin(<field:p />, spanNext(field:a, field:b))", ssequery.toString());
+
+    };
+    
+};
diff --git a/trunk/src/test/java/de/ids_mannheim/korap/util/TestArray.java b/trunk/src/test/java/de/ids_mannheim/korap/util/TestArray.java
new file mode 100644
index 0000000..85190d7
--- /dev/null
+++ b/trunk/src/test/java/de/ids_mannheim/korap/util/TestArray.java
@@ -0,0 +1,36 @@
+import java.util.*;
+import static de.ids_mannheim.korap.util.KorapArray.*;
+
+import static org.junit.Assert.*;
+import org.junit.Test;
+import org.junit.Ignore;
+import org.junit.runner.RunWith;
+import org.junit.runners.JUnit4;
+
+
+@RunWith(JUnit4.class)
+public class TestArray {
+
+    @Test
+    public void StringJoin1 () {
+	String[] test = new String[]{"a", "bc", "def"};
+	assertEquals(join(",", test), "a,bc,def");
+    };
+
+    @Test
+    public void StringJoin2 () {
+	assertEquals(join(",", "a", "bc", "def"), "a,bc,def");
+    };
+
+    @Test
+    public void StringJoin3 () {
+	assertEquals(join(',', "a", "bc", "def"), "a,bc,def");
+    };
+
+    @Test
+    public void StringJoin4 () {
+	assertEquals(join("--", "a", "bc", "def"), "a--bc--def");
+    };
+
+
+};
diff --git a/trunk/src/test/resources/wiki/00001.json b/trunk/src/test/resources/wiki/00001.json
new file mode 100644
index 0000000..66fbc33
--- /dev/null
+++ b/trunk/src/test/resources/wiki/00001.json
@@ -0,0 +1 @@
+{"author":"","corpusID":"WPD","textClass":"freizeit-unterhaltung,reisen,wissenschaft,populaerwissenschaft","fields":[{"primaryData":"A bzw. a ist der erste Buchstabe des lateinischen Alphabets und ein Vokal. Der Buchstabe A hat in deutschen Texten eine durchschnittliche Häufigkeit von 6,51 %. Er ist damit der sechsthäufigste Buchstabe in deutschen Texten. Mit Ausnahme von Fremdwörtern und Namen ist das A der einzige Buchstabe im Deutschen, der zweifach am Anfang eines Wortes stehen darf, etwa im Wort Aal. 1. Aussprache Im Deutschen und vielen anderen Sprachen steht der Buchstabe für den offenen vorderen ungerundeten Vokal a: A ist der klangreichste der Vokale, bei dessen Hervorbringen der Stimmton frei aus den weit geöffneten Lippen hervorkommt, während die Zunge in eine flache Stellung niedergedrückt wird. Stellt man das Verhältnis der drei Hauptvokale a, i, u durch eine senkrechte Linie dar, so kommt i als der hellste an das obere, u als der dumpfeste an das untere Ende, a als der mittlere Vokal genau in die Mitte derselben zu stehen. Im Deutschen gibt es zwei verschiedene Phoneme des Vokals: den Kurzvokal a, wie z. B. in satt, und den weiter hinten im Rachenraum gebildeten Langvokal a, wie z. B. in Rat. Die Länge des Vokals ist unterschiedlich gekennzeichnet. Langer Vokal: Keine Kennzeichnung: Rat Verdopplung des Vokals: Aar, Haar folgendes h: Bahre Kurzer Vokal: Keine Kennzeichnung: hat Verdopplung des folgenden Konsonanten: Matte Mehrere folgende Konsonanten: Matsch Aus einem A kann sich unter bestimmten Bedingungen ein Umlaut \"ä\" bilden. hat hätte Abgeleitete Zwielaute (Diphthonge) sind: au (Haut) äu (Häute) 2. Herkunft Die aus dem proto-semitischen Alphabet stammende Urform des Buchstaben ist wahrscheinlich der Kopf eines Ochsen. Die Phönizier gaben diesem Buchstaben den Namen Aleph (Ochse). Im phönizischen Alphabet im 9. Jahrhundert v. Chr. war das Schriftzeichen bereits stark stilisiert, die Hörner des Ochsen wurden durch zwei Striche nach rechts angedeutet. Der Lautwert des Aleph bei den Phöniziern war der Knacklaut ʔ. Bereits bei den Phöniziern hatte Aleph die erste Stelle im Alphabet inne. Als die Griechen das Phönizische Alphabet übernamen, drehten sie das Zeichen um 90 Grad und machten daraus das Alpha. Da das Griechische reich an Vokalen war, verwendeten sie das Zeichen für den Lautwert a. Die Etrusker übernahmen das frühgriechische Alpha und ließen es größtenteils unverändert. Lediglich zur besseren Schreibung (von rechts nach links) versahen sie das Zeichen mit einem Abschwung nach links. Als die Römer das lateinische Alphabet schufen, verwendeten sie das A aus dem etruskischen Alphabet, der Lautwert ist ebenfalls seit den Griechen beibehalten worden. 3. Bedeutungen in der Biologie steht A für das Nukleosid Adenosin steht A die Base Adenin steht A für die Aminosäure Alanin in der Informatik steht a für den dezimalen Wert 97 sowohl im ASCII- als auch im Unicode-Zeichensatz steht A für den dezimalen Wert 65 sowohl im ASCII- als auch im Unicode-Zeichensatz als Kfz-Kennzeichen steht A in Deutschland für Augsburg. in Österreich auf Fahrzeugen des Bundespräsidenten, Nationalratspräsidenten, Bundeskanzlers, von Ministern, Gerichtshofpräsidenten etc.. in der Schweiz für Administration. in Spanien für die Provinz Almería. auf internationalen Kennzeichen für Österreich (Austria). in der Mathematik wird a gerne als erste Variable genutzt. bezeichnet A die Fläche einer geometrischen Figur. In einem Zahlensystem mit einer Basis größer als 10 steht A oder a häufig für den dezimalen Wert 10, siehe auch Hexadezimalsystem. steht das Symbol ∀ (ein auf den Kopf gestelltes A) für den Allquantor „für alle Elemente gilt“. in der Musik steht a für den Kammerton a’ und mehrere Töne im Oktavabstand dazu (siehe Tonsystem). bezeichnet A die Tonart A-Dur, bezeichnet a die Tonart a-Moll. in der Physik bezeichnet a die Temperaturleitfähigkeit bezeichnet a die physikalische Größe der Beschleunigung bezeichnet A die physikalische Größe Arbeit bezeichnet A die Baryonen- oder Massenzahl bezeichnet A die Aktivität kann A die nicht-SI-Einheit Ångström bezeichnen, sofern der schwedische Buchstabe „Å“ nicht verfügbar ist im SI-Einheitensystem ist a die Abkürzung für die Vorsilbe Atto ist A das Einheitensymbol der elektrischen Stromstärke Ampere in der Numismatik steht der Kennbuchstabe A auf preußischen Münzen seit 1750 für Berlin. auf österreichischen Münzen von 1766 bis 1868 für Wien. auf französischen Münzen seit 1539 für Paris. auf Münzen aus Monfort von 1703 bis 1717 für Langenargen. bei bayerischen Münzen von 1763 bis 1794 für die Amberger Münze. im Königreich Hannover im 19. Jh. für die Münze Clausthal. bei mexikanischen Münzen für die Münzstätte Alamos. A ist eine Fahrerlaubnisklasse, die in Deutschland und in Österreich zum Fahren von Motorrädern berechtigt A + Zahl steht in Deutschland, Österreich und der Schweiz für eine Autobahn. A ist in der Medizin eine Blutgruppe. A steht als internationale Abkürzung bei Eisenbahnwagen für 1. Wagenklasse. A steht als Abkürzung für Abfall, Akten (bei Ämtern), Anordnung (Rechtswesen), Agent (Börse), Aufzeichung (Rechtsw.), das Flächenmaß Acre und Ausgabe A ist der Name einer britischen Rockband, siehe A (Band). in Redewendungen für den Anfang (das A und O, von A bis Z). a ist die Abkürzung für das Flächenmaß Ar in der Kaufmannssprache bedeutet à (lat.: ad zu) ‚[das Stück] zu...‘ für das Französische à „nach“, z. B. in „à la carte“ in der Gastronomie. 4. Fremdwörter A hat in verschiedenen Sprachen als Wort eine Bedeutung. Im Griechischen hat die Vorsilbe a- bzw. an-, wenn der darauffolgende Buchstabe ein Vokal ist, eine verneinende Bedeutung. Im Englischen und auch in deutschen Dialekten heißt a bzw. an, wenn der erste Buchstabe des folgenden Wortes als Vokal gesprochen wird „ein/eine“. Auf Französisch bedeutet à „je/je zu“. In der portugiesischen Sprache heißt es „die“ oder „sie“. 5. Literatur Harald Haarmann: Geschichte der Schrift. Beck, München 2002 ISBN 3-406-47998-7 6. Weblinks http://www.wam.umd.edu/~rfradkin/alphapage.html Siehe auch: Abkürzungen/A, Abkürzung, Akronym, beginnend mit dem Buchstaben A oder a @, ein aus dem Buchstaben a entstandenes Zeichen Funkalphabet"},{"tokenization":"opennlp#tokens","data":[["s:A","i:a","_0#0-1","-:t$<i>923","<>:s#0-74$<i>13","-:s$<i>50","<>:p#0-224$<i>34","-:p$<i>76","opennlp/p:NE","cnx/l:A","cnx/p:N","cnx/syn:@NH","tt/l:A","tt/p:NN","tt/l:A","tt/p:FM","mate/p:XY",">:mate/d:PNC$<i>2","xip/p:SYMBOL","xip/l:A","<>:xip/const:TOP#0-74$<i>13","<>:xip/const:MC#0-73$<i>13<b>1",">:xip/d:SUBJ$<i>3","<:xip/d:COORD$<i>1"],["s:bzw.","i:bzw.","_1#2-6","opennlp/p:KON","cnx/l:bzw.","cnx/p:CC","cnx/syn:@CC","tt/l:bzw.","tt/p:KOKOM","tt/l:bzw.","tt/p:KOUI","tt/l:bzw.","tt/p:KOUS","xip/p:CONJ","xip/l:beziehungsweise","<>:xip/const:CONJ#2-6$<i>2",">:xip/d:COORD$<i>0",">:xip/d:COORD$<i>2"],["s:a","i:a","_2#7-8","opennlp/p:NE","cnx/l:a","cnx/p:N","cnx/syn:@NH","<>:cnx/const:np#7-8$<i>3","tt/l:a","tt/p:FM","mate/p:XY","<:mate/d:PNC$<i>0","xip/p:SYMBOL","xip/l:a","<>:xip/const:SYMBOL#7-8$<i>3","<:xip/d:COORD$<i>1",">:xip/d:SUBJ$<i>3"],["s:ist","i:ist","_3#9-12","opennlp/p:VAFIN","cnx/l:sein","cnx/p:V","cnx/m:IND","cnx/m:PRES","cnx/syn:@MAIN","tt/l:sein","tt/p:VAFIN","mate/l:sein","mate/p:VAFIN","mate/m:number:sg","mate/m:person:3","mate/m:tense:pres","mate/m:mood:ind","<:mate/d:PD$<i>6","xip/p:VERB","xip/l:sein","<>:xip/const:VERB#9-12$<i>4","<:xip/d:SUBJ$<i>0","<:xip/d:SUBJ$<i>2","xip/d:VMAIN","<:xip/d:PRED$<i>6","<:xip/d:PRED$<i>12"],["s:der","i:der","_4#13-16","opennlp/p:ART","cnx/l:der","cnx/p:DET","cnx/syn:@PREMOD","tt/l:die","tt/p:ART","mate/l:der","mate/p:ART","mate/m:case:nom","mate/m:number:sg","mate/m:gender:masc",">:mate/d:NK$<i>6","xip/p:DET","xip/l:der","<>:xip/const:DET#13-16$<i>5",">:xip/d:DETERM$<i>6"],["s:erste","i:erste","_5#17-22","opennlp/p:ADJA","cnx/l:erste","cnx/p:NUM","cnx/m:ORD","cnx/syn:@PREMOD","<>:cnx/const:np#17-32$<i>7","tt/l:erst","tt/p:ADJA","mate/l:erster","mate/p:ADJA","mate/m:case:nom","mate/m:number:sg","mate/m:gender:masc","mate/m:degree:pos",">:mate/d:NK$<i>6","xip/p:ADJ","xip/l:ein","<>:xip/const:ADJ#17-22$<i>6",">:xip/d:NMOD$<i>6"],["s:Buchstabe","i:buchstabe","_6#23-32","opennlp/p:NN","cnx/l:buchstabe","cnx/p:N","cnx/syn:@NH","tt/l:Buchstabe","tt/p:NN","mate/l:buchstabe","mate/p:NN","mate/m:case:nom","mate/m:number:sg","mate/m:gender:masc","<:mate/d:NK$<i>4","<:mate/d:NK$<i>5",">:mate/d:PD$<i>3","<:mate/d:AG$<i>9","xip/p:NOUN","xip/l:Buchstabe","<>:xip/const:NOUN#23-32$<i>7","<:xip/d:DETERM$<i>4","<:xip/d:NMOD$<i>5",">:xip/d:PRED$<i>3","<:xip/d:NMOD$<i>9"],["s:des","i:des","_7#33-36","opennlp/p:ART","cnx/l:das","cnx/p:DET","cnx/syn:@PREMOD","tt/l:die","tt/p:ART","mate/l:der","mate/p:ART","mate/m:case:gen","mate/m:number:sg","mate/m:gender:masc",">:mate/d:NK$<i>9","xip/p:DET","xip/l:der","<>:xip/const:DET#33-36$<i>8",">:xip/d:DETERM$<i>9"],["s:lateinischen","i:lateinischen","_8#37-49","opennlp/p:ADJA","cnx/l:lateinisch","cnx/p:A","cnx/syn:@PREMOD","<>:cnx/const:np#37-59$<i>10","tt/l:lateinisch","tt/p:ADJA","mate/l:lateinisch","mate/p:ADJA","mate/m:case:gen","mate/m:number:sg","mate/m:gender:masc","mate/m:degree:pos",">:mate/d:NK$<i>9","xip/p:ADJ","xip/l:lateinisch","<>:xip/const:ADJ#37-49$<i>9",">:xip/d:NMOD$<i>9"],["s:Alphabets","i:alphabets","_9#50-59","opennlp/p:NN","cnx/l:alphabet","cnx/p:N","cnx/syn:@NH","tt/l:Alphabet","tt/p:NN","mate/l:alphabet","mate/p:NN","mate/m:case:gen","mate/m:number:sg","mate/m:gender:masc","<:mate/d:NK$<i>7","<:mate/d:NK$<i>8",">:mate/d:AG$<i>6","<:mate/d:CD$<i>10","xip/p:NOUN","xip/l:Alphabet","<>:xip/const:NOUN#50-59$<i>10","<:xip/d:DETERM$<i>7","<:xip/d:NMOD$<i>8",">:xip/d:NMOD$<i>6"],["s:und","i:und","_10#60-63","opennlp/p:KON","cnx/l:und","cnx/p:CC","cnx/syn:@CC","tt/l:und","tt/p:KON","mate/l:und","mate/p:KON",">:mate/d:CD$<i>9","<:mate/d:CJ$<i>12","xip/p:CONJ","xip/l:und","<>:xip/const:CONJ#60-63$<i>11"],["s:ein","i:ein","_11#64-67","opennlp/p:ART","cnx/l:ein","cnx/p:DET","cnx/syn:@PREMOD","tt/l:eine","tt/p:ART","mate/l:ein","mate/p:ART","mate/m:case:nom","mate/m:number:sg","mate/m:gender:neut",">:mate/d:NK$<i>12","xip/p:DET","xip/l:ein","<>:xip/const:DET#64-67$<i>12",">:xip/d:DETERM$<i>12"],["s:Vokal","i:vokal","_12#68-73","opennlp/p:NN","cnx/l:vokal","cnx/p:N","cnx/syn:@NH","<>:cnx/const:np#68-73$<i>13","tt/l:Vokal","tt/p:NN","mate/l:vokal","mate/p:NN","mate/m:case:nom","mate/m:number:sg","mate/m:gender:neut","<:mate/d:NK$<i>11",">:mate/d:CJ$<i>10","xip/p:NOUN","xip/l:Vokal","<>:xip/const:NOUN#68-73$<i>13","<:xip/d:DETERM$<i>11",">:xip/d:PRED$<i>3"],["s:Der","i:der","_13#75-78","<>:s#75-160$<i>25","opennlp/p:ART","cnx/l:die","cnx/p:DET","cnx/syn:@PREMOD","tt/l:die","tt/p:ART","mate/l:der","mate/p:ART","mate/m:case:nom","mate/m:number:sg","mate/m:gender:masc",">:mate/d:NK$<i>14","xip/p:DET","xip/l:der","<>:xip/const:TOP#75-160$<i>25","<>:xip/const:MC#75-159$<i>25<b>1","<>:xip/const:NP#75-88$<i>15<b>2","<>:xip/const:DET#75-78$<i>14",">:xip/d:DETERM$<i>14"],["s:Buchstabe","i:buchstabe","_14#79-88","opennlp/p:NN","cnx/l:buchstabe","cnx/p:N","cnx/syn:@NH","<>:cnx/const:np#79-88$<i>15","tt/l:Buchstabe","tt/p:NN","mate/l:buchstabe","mate/p:NN","mate/m:case:nom","mate/m:number:sg","mate/m:gender:masc","<:mate/d:NK$<i>13",">:mate/d:SB$<i>16","<:mate/d:NK$<i>15","xip/p:NOUN","xip/l:Buchstabe","<>:xip/const:NPA#79-88$<i>15<b>3","<>:xip/const:NOUN#79-88$<i>15","<:xip/d:DETERM$<i>13",">:xip/d:SUBJ$<i>16"],["s:A","i:a","_15#89-90","opennlp/p:NE","cnx/l:A","cnx/p:N","cnx/syn:@NH","<>:cnx/const:np#89-90$<i>16","tt/l:A","tt/p:NN","mate/p:NE","mate/m:case:nom","mate/m:number:sg","mate/m:gender:*",">:mate/d:NK$<i>14","xip/p:SYMBOL","xip/l:A","<>:xip/const:SYMBOL#89-90$<i>16","<>:xip/const:NP#89-90$<i>16<b>2","<>:xip/const:NPA#89-90$<i>16<b>3","<>:xip/const:NOUN#89-90$<i>16<b>4",">:xip/d:OBJ$<i>16"],["s:hat","i:hat","_16#91-94","opennlp/p:VAFIN","cnx/l:haben","cnx/p:V","cnx/m:IND","cnx/m:PRES","cnx/syn:@MAIN","tt/l:haben","tt/p:VAFIN","mate/l:haben","mate/p:VAFIN","mate/m:number:sg","mate/m:person:3","mate/m:tense:pres","mate/m:mood:ind","<:mate/d:SB$<i>14","<:mate/d:MO$<i>17","<:mate/d:OA$<i>22","xip/p:VERB","xip/l:haben","<>:xip/const:VERB#91-94$<i>17","<:xip/d:SUBJ$<i>14","<:xip/d:OBJ$<i>15","xip/d:VMAIN","<:xip/d:OBJ$<i>22"],["s:in","i:in","_17#95-97","opennlp/p:APPR","cnx/l:in","cnx/p:PREP","cnx/syn:@PREMARK","tt/l:in","tt/p:APPR","mate/l:in","mate/p:APPR",">:mate/d:MO$<i>16","<:mate/d:NK$<i>19","xip/p:PREP","xip/l:in","<>:xip/const:PP#95-114$<i>20<b>2","<>:xip/const:PREP#95-97$<i>18"],["s:deutschen","i:deutschen","_18#98-107","opennlp/p:ADJA","corenlp/ne_dewac_175m_600:I-MISC","corenlp/ne_hgc_175m_600:I-MISC","cnx/l:deutsch","cnx/p:A","cnx/syn:@PREMOD","<>:cnx/const:np#98-114$<i>20","tt/l:deutsch","tt/p:ADJA","mate/l:deutsch","mate/p:ADJA","mate/m:case:dat","mate/m:number:pl","mate/m:gender:fem","mate/m:degree:pos",">:mate/d:NK$<i>19","xip/p:ADJ","xip/l:deutsch","<>:xip/const:NP#98-114$<i>20<b>3","<>:xip/const:NPA#98-114$<i>20<b>4","<>:xip/const:AP#98-107$<i>19<b>5","<>:xip/const:ADJ#98-107$<i>19",">:xip/d:NMOD$<i>19"],["s:Texten","i:texten","_19#108-114","opennlp/p:NN","cnx/l:text","cnx/p:N","cnx/m:PL","cnx/syn:@NH","tt/l:Text","tt/p:NN","mate/l:text","mate/p:NN","mate/m:case:dat","mate/m:number:pl","mate/m:gender:fem","<:mate/d:NK$<i>18",">:mate/d:NK$<i>17","xip/p:NOUN","xip/l:texten","<>:xip/const:NOUN#108-114$<i>20","<:xip/d:NMOD$<i>18"],["s:eine","i:eine","_20#115-119","opennlp/p:ART","cnx/l:eine","cnx/p:DET","cnx/syn:@PREMOD","tt/l:eine","tt/p:ART","mate/l:ein","mate/p:ART","mate/m:case:acc","mate/m:number:sg","mate/m:gender:fem",">:mate/d:NK$<i>22","xip/p:DET","xip/l:ein","<>:xip/const:DET#115-119$<i>21","<>:xip/const:NP#115-148$<i>23<b>2",">:xip/d:DETERM$<i>22"],["s:durchschnittliche","i:durchschnittliche","_21#120-137","opennlp/p:ADJA","cnx/l:durchschnittlich","cnx/p:A","cnx/syn:@PREMOD","<>:cnx/const:np#120-159$<i>25","tt/l:durchschnittlich","tt/p:ADJA","mate/l:durchschnittlich","mate/p:ADJA","mate/m:case:acc","mate/m:number:sg","mate/m:gender:fem","mate/m:degree:pos",">:mate/d:NK$<i>22","xip/p:ADJ","xip/l:durchschnittlich","<>:xip/const:ADJ#120-137$<i>22","<>:xip/const:NPA#120-148$<i>23<b>3","<>:xip/const:AP#120-137$<i>22<b>4",">:xip/d:NMOD$<i>22"],["s:Häufigkeit","i:häufigkeit","_22#138-148","opennlp/p:NN","cnx/l:häufigkeit","cnx/p:N","cnx/syn:@NH","tt/l:Häufigkeit","tt/p:NN","mate/l:häufigkeit","mate/p:NN","mate/m:case:acc","mate/m:number:sg","mate/m:gender:fem","<:mate/d:NK$<i>20","<:mate/d:NK$<i>21",">:mate/d:OA$<i>16","<:mate/d:MNR$<i>23","xip/p:NOUN","xip/l:Häufigkeit","<>:xip/const:NOUN#138-148$<i>23","<:xip/d:DETERM$<i>20","<:xip/d:NMOD$<i>21",">:xip/d:OBJ$<i>16"],["s:von","i:von","_23#149-152","opennlp/p:APPR","cnx/l:von","cnx/p:PREP","cnx/syn:@POSTMOD","tt/l:von","tt/p:APPR","mate/l:von","mate/p:APPR",">:mate/d:MNR$<i>22","xip/p:PREP","xip/l:von","<>:xip/const:PP#149-159$<i>25<b>2","<>:xip/const:PREP#149-152$<i>24"],["s:6,51","i:6,51","_24#153-157","opennlp/p:CARD","cnx/l:6,51","cnx/p:NUM","cnx/syn:@PREMOD","tt/l:@card@","tt/p:CARD","mate/l:6,51","mate/p:CARD","xip/p:NUM","xip/l:6,51","<>:xip/const:NUM#153-157$<i>25","<>:xip/const:NP#153-159$<i>25<b>3","<>:xip/const:NPA#153-159$<i>25<b>4","<>:xip/const:NUM#153-157$<i>25<b>5"],["s:Er","i:er","_25#161-163","<>:s#161-224$<i>34","opennlp/p:PPER","cnx/l:er","cnx/p:PRON","cnx/syn:@NH","tt/l:er","tt/p:PPER","mate/l:er","mate/p:PPER","mate/m:case:nom","mate/m:number:sg","mate/m:gender:masc","mate/m:person:3",">:mate/d:SB$<i>26","xip/p:PRON","xip/l:er","<>:xip/const:TOP#161-224$<i>34","<>:xip/const:MC#161-167$<i>27<b>1","<>:xip/const:NP#161-163$<i>26<b>2","<>:xip/const:PRON#161-163$<i>26",">:xip/d:SUBJ$<i>26"],["s:ist","i:ist","_26#164-167","opennlp/p:VAFIN","cnx/l:sein","cnx/p:V","cnx/m:IND","cnx/m:PRES","cnx/syn:@MAIN","tt/l:sein","tt/p:VAFIN","mate/l:sein","mate/p:VAFIN","mate/m:number:sg","mate/m:person:3","mate/m:tense:pres","mate/m:mood:ind","<:mate/d:SB$<i>25","<:mate/d:MO$<i>27","<:mate/d:PD$<i>30","xip/p:VERB","xip/l:sein","<>:xip/const:VERB#164-167$<i>27","<:xip/d:SUBJ$<i>25","xip/d:VMAIN"],["s:damit","i:damit","_27#168-173","opennlp/p:PROAV","cnx/l:damit","cnx/p:ADV","cnx/syn:@ADVL","tt/l:damit","tt/p:PROAV","mate/l:damit","mate/p:PROAV",">:mate/d:MO$<i>26","xip/p:CONJ","xip/l:damit","<>:xip/const:CONJ#168-173$<i>28"],["s:der","i:der","_28#174-177","opennlp/p:ART","cnx/l:der","cnx/p:DET","cnx/syn:@PREMOD","tt/l:die","tt/p:ART","mate/l:der","mate/p:ART","mate/m:case:nom","mate/m:number:sg","mate/m:gender:masc",">:mate/d:NK$<i>30","xip/p:DET","xip/l:der","<>:xip/const:NP#174-203$<i>31<b>1","<>:xip/const:DET#174-177$<i>29",">:xip/d:DETERM$<i>30"],["s:sechsthäufigste","i:sechsthäufigste","_29#178-193","opennlp/p:ADJA","cnx/l:sechsthäufig","cnx/p:A","cnx/m:SUP","cnx/syn:@PREMOD","<>:cnx/const:np#178-203$<i>31","tt/p:ADJA","mate/l:sechsthäufig","mate/p:ADJA","mate/m:case:nom","mate/m:number:sg","mate/m:gender:masc","mate/m:degree:sup",">:mate/d:NK$<i>30","xip/p:ADJ","xip/l:sechs","xip/l:häufig","xip/l:sechshäufig","<>:xip/const:NPA#178-203$<i>31<b>2","<>:xip/const:AP#178-193$<i>30<b>3","<>:xip/const:ADJ#178-193$<i>30",">:xip/d:NMOD$<i>30"],["s:Buchstabe","i:buchstabe","_30#194-203","opennlp/p:NN","cnx/l:buchstabe","cnx/p:N","cnx/syn:@NH","tt/l:Buchstabe","tt/p:NN","mate/l:buchstabe","mate/p:NN","mate/m:case:nom","mate/m:number:sg","mate/m:gender:masc","<:mate/d:NK$<i>28","<:mate/d:NK$<i>29",">:mate/d:PD$<i>26","<:mate/d:MNR$<i>31","xip/p:NOUN","xip/l:Buchstabe","<>:xip/const:NOUN#194-203$<i>31","<:xip/d:DETERM$<i>28","<:xip/d:NMOD$<i>29","xip/d:THEMA"],["s:in","i:in","_31#204-206","opennlp/p:APPR","cnx/l:in","cnx/p:PREP","cnx/syn:@PREMARK","tt/l:in","tt/p:APPR","mate/l:in","mate/p:APPR",">:mate/d:MNR$<i>30","<:mate/d:NK$<i>33","xip/p:PREP","xip/l:in","<>:xip/const:PP#204-223$<i>34<b>1","<>:xip/const:PREP#204-206$<i>32"],["s:deutschen","i:deutschen","_32#207-216","opennlp/p:ADJA","corenlp/ne_dewac_175m_600:I-MISC","corenlp/ne_hgc_175m_600:I-MISC","cnx/l:deutsch","cnx/p:A","cnx/syn:@PREMOD","<>:cnx/const:np#207-223$<i>34","tt/l:deutsch","tt/p:ADJA","mate/l:deutsch","mate/p:ADJA","mate/m:case:dat","mate/m:number:pl","mate/m:gender:neut","mate/m:degree:pos",">:mate/d:NK$<i>33","xip/p:ADJ","xip/l:deutsch","<>:xip/const:NP#207-223$<i>34<b>2","<>:xip/const:NPA#207-223$<i>34<b>3","<>:xip/const:AP#207-216$<i>33<b>4","<>:xip/const:ADJ#207-216$<i>33",">:xip/d:NMOD$<i>33"],["s:Texten","i:texten","_33#217-223","opennlp/p:NN","cnx/l:text","cnx/p:N","cnx/m:PL","cnx/syn:@NH","tt/l:Text","tt/p:NN","mate/l:text","mate/p:NN","mate/m:case:dat","mate/m:number:pl","mate/m:gender:neut","<:mate/d:NK$<i>32",">:mate/d:NK$<i>31","xip/p:NOUN","xip/l:texten","<>:xip/const:NOUN#217-223$<i>34","<:xip/d:NMOD$<i>32"],["s:Mit","i:mit","_34#225-228","<>:s#225-377$<i>60","<>:p#225-377$<i>60","opennlp/p:APPR","cnx/l:mit","cnx/p:PREP","cnx/syn:@PREMARK","tt/l:mit","tt/p:APPR","mate/l:mit","mate/p:APPR",">:mate/d:MO$<i>40","<:mate/d:NK$<i>35","xip/p:PREP","xip/l:mit","<>:xip/const:PREP#225-228$<i>35","<>:xip/const:TOP#225-377$<i>60","<>:xip/const:MC#225-376$<i>60<b>1","<>:xip/const:PP#225-237$<i>36<b>2"],["s:Ausnahme","i:ausnahme","_35#229-237","opennlp/p:NN","cnx/l:ausnahme","cnx/p:N","cnx/syn:@NH","<>:cnx/const:np#229-254$<i>38","tt/l:Ausnahme","tt/p:NN","mate/l:ausnahme","mate/p:NN","mate/m:case:dat","mate/m:number:sg","mate/m:gender:fem",">:mate/d:NK$<i>34","<:mate/d:PG$<i>36","xip/p:NOUN","xip/l:Ausnahme","<>:xip/const:NOUN#229-237$<i>36","<>:xip/const:NP#229-237$<i>36<b>3","<>:xip/const:NPA#229-237$<i>36<b>4","<:xip/d:NMOD2$<i>39"],["s:von","i:von","_36#238-241","opennlp/p:APPR","cnx/l:von","cnx/p:PREP","cnx/syn:@POSTMOD","tt/l:von","tt/p:APPR","mate/l:von","mate/p:APPR",">:mate/d:PG$<i>35","<:mate/d:NK$<i>37","xip/p:PREP","xip/l:von","<>:xip/const:PP#238-254$<i>38<b>2","<>:xip/const:PREP#238-241$<i>37"],["s:Fremdwörtern","i:fremdwörtern","_37#242-254","opennlp/p:NN","cnx/l:fremd","cnx/l:wort","cnx/p:N","cnx/m:PL","cnx/syn:@NH","tt/l:Fremdwort","tt/p:NN","mate/l:fremdwörter","mate/p:NN","mate/m:case:dat","mate/m:number:pl","mate/m:gender:masc",">:mate/d:NK$<i>36","<:mate/d:CD$<i>38","xip/p:NOUN","xip/l:fremden","xip/l:Wort","xip/l:Fremdenwort","<>:xip/const:NP#242-254$<i>38<b>3","<>:xip/const:NPA#242-254$<i>38<b>4","<>:xip/const:NOUN#242-254$<i>38","<:xip/d:COORD$<i>38"],["s:und","i:und","_38#255-258","opennlp/p:KON","cnx/l:und","cnx/p:CC","cnx/syn:@CC","tt/l:und","tt/p:KON","mate/l:und","mate/p:KON",">:mate/d:CD$<i>37","<:mate/d:CJ$<i>39","xip/p:CONJ","xip/l:und","<>:xip/const:CONJ#255-258$<i>39",">:xip/d:COORD$<i>37",">:xip/d:COORD$<i>39"],["s:Namen","i:namen","_39#259-264","opennlp/p:NN","cnx/l:name","cnx/p:N","cnx/syn:@NH","<>:cnx/const:np#259-264$<i>40","tt/l:Name","tt/p:NN","mate/l:name","mate/p:NN","mate/m:case:dat","mate/m:number:pl","mate/m:gender:masc",">:mate/d:CJ$<i>38","xip/p:NOUN","xip/l:Name","<>:xip/const:NOUN#259-264$<i>40","<>:xip/const:NP#259-264$<i>40<b>2","<>:xip/const:NPA#259-264$<i>40<b>3","<:xip/d:COORD$<i>38",">:xip/d:NMOD2$<i>35",">:xip/d:PRED$<i>40"],["s:ist","i:ist","_40#265-268","opennlp/p:VAFIN","cnx/l:sein","cnx/p:V","cnx/m:IND","cnx/m:PRES","cnx/syn:@MAIN","tt/l:sein","tt/p:VAFIN","mate/l:sein","mate/p:VAFIN","mate/m:number:sg","mate/m:person:3","mate/m:tense:pres","mate/m:mood:ind","<:mate/d:MO$<i>34","<:mate/d:SB$<i>42","xip/p:VERB","xip/l:sein","<>:xip/const:VERB#265-268$<i>41","<:xip/d:PRED$<i>39","xip/d:VMAIN","<:xip/d:SUBJ$<i>42","<:xip/d:PRED$<i>45","<:xip/d:VMOD$<i>56"],["s:das","i:das","_41#269-272","opennlp/p:ART","cnx/l:das","cnx/p:PRON","cnx/syn:@NH","tt/l:die","tt/p:ART","mate/l:der","mate/p:ART","mate/m:case:nom","mate/m:number:sg","mate/m:gender:neut",">:mate/d:NK$<i>42","xip/p:DET","xip/l:das","<>:xip/const:NP#269-274$<i>43<b>2","<>:xip/const:DET#269-272$<i>42",">:xip/d:DETERM$<i>42"],["s:A","i:a","_42#273-274","opennlp/p:NN","cnx/l:a","cnx/p:PREP","cnx/syn:@PREMARK","tt/l:A","tt/p:NN","mate/p:NN","mate/m:case:nom","mate/m:number:sg","mate/m:gender:neut","<:mate/d:NK$<i>41",">:mate/d:SB$<i>40","<:mate/d:AG$<i>45","xip/p:SYMBOL","xip/l:A","<>:xip/const:NPA#273-274$<i>43<b>3","<>:xip/const:NOUN#273-274$<i>43<b>4","<>:xip/const:SYMBOL#273-274$<i>43","<:xip/d:DETERM$<i>41",">:xip/d:SUBJ$<i>40"],["s:der","i:der","_43#275-278","opennlp/p:ART","cnx/l:der","cnx/p:DET","cnx/syn:@PREMOD","tt/l:die","tt/p:ART","mate/l:der","mate/p:ART","mate/m:case:gen","mate/m:number:pl","mate/m:gender:masc",">:mate/d:NK$<i>45","xip/p:DET","xip/l:der","<>:xip/const:DET#275-278$<i>44","<>:xip/const:NP#275-296$<i>46<b>2",">:xip/d:DETERM$<i>45"],["s:einzige","i:einzige","_44#279-286","opennlp/p:ADJA","cnx/l:einzig","cnx/p:A","cnx/syn:@PREMOD","<>:cnx/const:np#279-296$<i>46","tt/l:einzig","tt/p:ADJA","mate/l:einzig","mate/p:ADJA","mate/m:case:nom","mate/m:number:sg","mate/m:gender:neut","mate/m:degree:pos",">:mate/d:NK$<i>45","xip/p:ADJ","xip/l:einzig","<>:xip/const:NPA#279-296$<i>46<b>3","<>:xip/const:AP#279-286$<i>45<b>4","<>:xip/const:ADJ#279-286$<i>45",">:xip/d:NMOD$<i>45"],["s:Buchstabe","i:buchstabe","_45#287-296","opennlp/p:NN","cnx/l:buchstabe","cnx/p:N","cnx/syn:@NH","tt/l:Buchstabe","tt/p:NN","mate/l:buchstabe","mate/p:NN","mate/m:case:nom","mate/m:number:sg","mate/m:gender:neut","<:mate/d:NK$<i>43","<:mate/d:NK$<i>44",">:mate/d:AG$<i>42","<:mate/d:MNR$<i>46","<:mate/d:RC$<i>55","<:mate/d:MNR$<i>57","xip/p:NOUN","xip/l:Buchstabe","<>:xip/const:NOUN#287-296$<i>46","<:xip/d:DETERM$<i>43","<:xip/d:NMOD$<i>44",">:xip/d:PRED$<i>40"],["s:im","i:im","_46#297-299","opennlp/p:APPRART","tt/l:im","tt/p:APPRART","mate/l:in","mate/p:APPRART","mate/m:case:dat","mate/m:number:sg","mate/m:gender:masc",">:mate/d:MNR$<i>45","<:mate/d:NK$<i>47","xip/p:PREP","xip/l:in","<>:xip/const:PREP#297-299$<i>47","<>:xip/const:PP#297-309$<i>48<b>2"],["s:Deutschen","i:deutschen","_47#300-309","opennlp/p:ADJA","corenlp/ne_dewac_175m_600:I-MISC","corenlp/ne_hgc_175m_600:I-MISC","cnx/l:Deutsche","cnx/p:N","cnx/syn:@NH","<>:cnx/const:np#300-309$<i>48","tt/l:Deutsche","tt/p:NN","tt/l:deutsch","tt/p:ADJA","mate/l:deutsche","mate/p:NN","mate/m:case:dat","mate/m:number:sg","mate/m:gender:masc",">:mate/d:NK$<i>46","xip/p:NOUN","xip/l:deutsch","<>:xip/const:NOUN#300-309$<i>48","<>:xip/const:NP#300-309$<i>48<b>3","<>:xip/const:NPA#300-309$<i>48<b>4"],["s:der","i:der","_48#311-314","opennlp/p:ART","cnx/l:die","cnx/p:PRON","cnx/syn:@NH","tt/l:die","tt/p:PRELS","tt/l:die","tt/p:ART","mate/l:der","mate/p:PRELS","mate/m:case:nom","mate/m:number:sg","mate/m:gender:masc",">:mate/d:SB$<i>55","xip/p:PRON","xip/l:der","<>:xip/const:SC#311-358$<i>56","<>:xip/const:NP#311-314$<i>49<b>1","<>:xip/const:PRON#311-314$<i>49",">:xip/d:SUBJ$<i>54"],["s:zweifach","i:zweifach","_49#315-323","opennlp/p:ADV","cnx/l:zwei","cnx/l:fach","cnx/p:A","cnx/syn:@NH","tt/l:zweifach","tt/p:ADJD","mate/l:zweifach","mate/p:ADJD","mate/m:degree:pos",">:mate/d:MO$<i>55","xip/p:ADJ","xip/l:zwei}fach","<>:xip/const:AP#315-323$<i>50<b>1","<>:xip/const:ADJ#315-323$<i>50",">:xip/d:VMOD$<i>54"],["s:am","i:am","_50#324-326","opennlp/p:APPRART","tt/l:am","tt/p:APPRART","mate/l:an","mate/p:APPRART","mate/m:case:dat","mate/m:number:sg","mate/m:gender:masc",">:mate/d:CVC$<i>54","<:mate/d:NK$<i>51","xip/p:PREP","xip/l:an","<>:xip/const:PREP#324-326$<i>51","<>:xip/const:PP#324-333$<i>52<b>1"],["s:Anfang","i:anfang","_51#327-333","opennlp/p:NN","cnx/l:anfang","cnx/p:N","cnx/syn:@NH","<>:cnx/const:np#327-333$<i>52","tt/l:Anfang","tt/p:NN","mate/l:anfang","mate/p:NN","mate/m:case:dat","mate/m:number:sg","mate/m:gender:masc",">:mate/d:NK$<i>50","<:mate/d:AG$<i>53","xip/p:NOUN","xip/l:Anfang","<>:xip/const:NOUN#327-333$<i>52","<>:xip/const:NP#327-333$<i>52<b>2","<>:xip/const:NPA#327-333$<i>52<b>3","<:xip/d:NMOD$<i>53"],["s:eines","i:eines","_52#334-339","opennlp/p:ART","cnx/l:ein","cnx/p:DET","cnx/syn:@PREMOD","tt/l:eine","tt/p:ART","mate/l:ein","mate/p:ART","mate/m:case:gen","mate/m:number:sg","mate/m:gender:neut",">:mate/d:NK$<i>53","xip/p:DET","xip/l:ein","<>:xip/const:NP#334-346$<i>54<b>1","<>:xip/const:DET#334-339$<i>53",">:xip/d:DETERM$<i>53"],["s:Wortes","i:wortes","_53#340-346","opennlp/p:NN","cnx/l:wort","cnx/p:N","cnx/syn:@NH","<>:cnx/const:np#340-346$<i>54","tt/l:Wort","tt/p:NN","mate/l:wort","mate/p:NN","mate/m:case:gen","mate/m:number:sg","mate/m:gender:neut","<:mate/d:NK$<i>52",">:mate/d:AG$<i>51","xip/p:NOUN","xip/l:Wort","<>:xip/const:NOUN#340-346$<i>54","<>:xip/const:NPA#340-346$<i>54<b>2","<:xip/d:DETERM$<i>52",">:xip/d:NMOD$<i>51"],["s:stehen","i:stehen","_54#347-353","opennlp/p:VVINF","cnx/l:stehen","cnx/p:V","cnx/m:INF","cnx/syn:@MAIN","tt/l:stehen","tt/p:VVINF","tt/l:stehen","tt/p:VVFIN","mate/l:stehen","mate/p:VVINF","<:mate/d:CVC$<i>50",">:mate/d:OC$<i>55","xip/p:VERB","xip/l:stehen","<>:xip/const:VERB#347-353$<i>55","<:xip/d:SUBJ$<i>48","<:xip/d:VMOD$<i>49",">:xip/d:MODAL$<i>55","xip/d:VMAIN"],["s:darf","i:darf","_55#354-358","opennlp/p:VMFIN","cnx/l:dürfen","cnx/p:V","cnx/m:IND","cnx/m:PRES","cnx/syn:@AUX","tt/l:dürfen","tt/p:VMFIN","mate/l:dürfen","mate/p:VMFIN","mate/m:number:sg","mate/m:person:3","mate/m:tense:pres","mate/m:mood:ind","<:mate/d:SB$<i>48","<:mate/d:MO$<i>49","<:mate/d:OC$<i>54",">:mate/d:RC$<i>45","xip/p:VERB","xip/l:dürfen","<>:xip/const:VERB#354-358$<i>56","<:xip/d:MODAL$<i>54"],["s:etwa","i:etwa","_56#360-364","opennlp/p:ADV","cnx/l:etwa","cnx/p:ADV","cnx/syn:@ADVL","tt/l:etwa","tt/p:ADV","mate/l:etwa","mate/p:ADV",">:mate/d:MO$<i>57","xip/p:ADV","xip/l:etwa","<>:xip/const:ADV#360-364$<i>57",">:xip/d:VMOD$<i>40"],["s:im","i:im","_57#365-367","opennlp/p:APPRART","tt/l:im","tt/p:APPRART","mate/l:in","mate/p:APPRART","mate/m:case:dat","mate/m:number:sg","mate/m:gender:masc","<:mate/d:MO$<i>56",">:mate/d:MNR$<i>45","<:mate/d:NK$<i>58","xip/p:PREP","xip/l:in","<>:xip/const:PREP#365-367$<i>58"],["s:Wort","i:wort","_58#368-372","opennlp/p:NN","cnx/l:wort","cnx/p:N","cnx/syn:@PREMOD","<>:cnx/const:np#368-376$<i>60","tt/l:Wort","tt/p:NN","mate/l:wort","mate/p:NN","mate/m:case:dat","mate/m:number:sg","mate/m:gender:masc",">:mate/d:NK$<i>57","<:mate/d:NK$<i>59","xip/p:NOUN","xip/l:Wort","<>:xip/const:NOUN#368-372$<i>59","<:xip/d:NMOD$<i>59"],["s:Aal","i:aal","_59#373-376","opennlp/p:NE","cnx/l:aal","cnx/p:N","cnx/syn:@NH","tt/l:Aal","tt/p:NN","mate/l:aal","mate/p:NE","mate/m:case:nom","mate/m:number:sg","mate/m:gender:*",">:mate/d:NK$<i>58","xip/p:NOUN","xip/l:Aal","<>:xip/const:NOUN#373-376$<i>60",">:xip/d:NMOD$<i>58"],["s:1.","i:1.","_60#378-380","<>:s#378-685$<i>105","opennlp/p:ADJA","cnx/l:1.","cnx/p:NUM","cnx/syn:@PREMOD","tt/l:1.","tt/p:ADJA","xip/p:NUM","xip/l:1.","<>:xip/const:NP#378-391$<i>62","<>:xip/const:NPA#378-391$<i>62<b>1","<>:xip/const:TOP#378-499$<i>78","<>:xip/const:NUM#378-380$<i>61"],["s:Aussprache","i:aussprache","_61#381-391","opennlp/p:NN","cnx/l:aussprache","cnx/p:N","cnx/syn:@NH","<>:cnx/const:np#381-404$<i>64","tt/l:Aussprache","tt/p:NN","mate/l:aussprache","mate/p:NN","mate/m:case:nom","mate/m:number:sg","mate/m:gender:fem","xip/p:NOUN","xip/l:Aussprache","<>:xip/const:NOUN#381-391$<i>62",">:xip/d:OBJ$<i>68","<:xip/d:NMOD2$<i>67"],["s:Im","i:im","_62#392-394","<>:p#392-1092$<i>180","opennlp/p:APPRART","tt/l:im","tt/p:APPRART","mate/l:in","mate/p:APPRART","mate/m:case:dat","mate/m:number:sg","mate/m:gender:neut",">:mate/d:MO$<i>68","<:mate/d:NK$<i>63","xip/p:PREP","xip/l:in","<>:xip/const:PREP#392-394$<i>63","<>:xip/const:PP#392-404$<i>64"],["s:Deutschen","i:deutschen","_63#395-404","opennlp/p:ADJA","corenlp/ne_dewac_175m_600:I-MISC","corenlp/ne_hgc_175m_600:I-MISC","cnx/l:Deutsche","cnx/p:N","cnx/syn:@NH","tt/l:Deutsche","tt/p:NN","tt/l:deutsch","tt/p:ADJA","mate/l:deutsche","mate/p:NN","mate/m:case:dat","mate/m:number:sg","mate/m:gender:neut",">:mate/d:NK$<i>62","<:mate/d:CD$<i>64","xip/p:NOUN","xip/l:deutsch","<>:xip/const:NOUN#395-404$<i>64","<>:xip/const:NP#395-404$<i>64<b>1","<>:xip/const:NPA#395-404$<i>64<b>2","<:xip/d:COORD$<i>64"],["s:und","i:und","_64#405-408","opennlp/p:KON","cnx/l:und","cnx/p:CC","cnx/syn:@CC","tt/l:und","tt/p:KON","mate/l:und","mate/p:KON",">:mate/d:CD$<i>63","<:mate/d:CJ$<i>67","xip/p:CONJ","xip/l:und","<>:xip/const:CONJ#405-408$<i>65",">:xip/d:COORD$<i>63",">:xip/d:COORD$<i>67"],["s:vielen","i:vielen","_65#409-415","opennlp/p:PIAT","cnx/l:viel","cnx/p:PRON","cnx/syn:@PREMOD","tt/l:viele","tt/p:PIAT","mate/l:vieler","mate/p:PIAT","mate/m:case:dat","mate/m:number:pl","mate/m:gender:masc",">:mate/d:NK$<i>67","xip/p:ADJ","xip/l:viel","<>:xip/const:NP#409-432$<i>68","<>:xip/const:NPA#409-432$<i>68<b>1","<>:xip/const:AP#409-415$<i>66<b>2","<>:xip/const:ADJ#409-415$<i>66",">:xip/d:NMOD$<i>67"],["s:anderen","i:anderen","_66#416-423","opennlp/p:ADJA","cnx/l:andere","cnx/p:PRON","cnx/syn:@PREMOD","tt/l:ander","tt/p:ADJA","mate/l:anderer","mate/p:ADJA","mate/m:case:dat","mate/m:number:pl","mate/m:gender:masc","mate/m:degree:pos",">:mate/d:NK$<i>67","xip/p:ADJ","xip/l:andere","<>:xip/const:AP#416-423$<i>67<b>2","<>:xip/const:ADJ#416-423$<i>67",">:xip/d:NMOD$<i>67"],["s:Sprachen","i:sprachen","_67#424-432","opennlp/p:NN","cnx/l:sprache","cnx/p:N","cnx/m:PL","cnx/syn:@NH","<>:cnx/const:np#424-432$<i>68","tt/l:Sprache","tt/p:NN","mate/l:sprache","mate/p:NN","mate/m:case:dat","mate/m:number:pl","mate/m:gender:masc","<:mate/d:NK$<i>65","<:mate/d:NK$<i>66",">:mate/d:CJ$<i>64","xip/p:NOUN","xip/l:Sprache","<>:xip/const:NOUN#424-432$<i>68","<:xip/d:COORD$<i>64","<:xip/d:NMOD$<i>65","<:xip/d:NMOD$<i>66",">:xip/d:NMOD2$<i>61"],["s:steht","i:steht","_68#433-438","opennlp/p:VVFIN","cnx/l:stehen","cnx/p:V","cnx/m:IND","cnx/m:PRES","cnx/syn:@MAIN","tt/l:stehen","tt/p:VVFIN","mate/l:stehen","mate/p:VVFIN","mate/m:number:sg","mate/m:person:3","mate/m:tense:pres","mate/m:mood:ind","<:mate/d:MO$<i>62","<:mate/d:SB$<i>70","<:mate/d:CJ$<i>79","xip/p:VERB","xip/l:stehen","<>:xip/const:VERB#433-438$<i>69","<:xip/d:OBJ$<i>61","xip/d:VMAIN","<:xip/d:SUBJ$<i>70"],["s:der","i:der","_69#439-442","opennlp/p:ART","cnx/l:die","cnx/p:PRON","cnx/syn:@NH","tt/l:die","tt/p:ART","mate/l:der","mate/p:ART","mate/m:case:nom","mate/m:number:sg","mate/m:gender:masc",">:mate/d:NK$<i>70","xip/p:DET","xip/l:der","<>:xip/const:NP#439-452$<i>71","<>:xip/const:DET#439-442$<i>70",">:xip/d:DETERM$<i>70"],["s:Buchstabe","i:buchstabe","_70#443-452","opennlp/p:NN","cnx/l:buchstabe","cnx/p:N","cnx/syn:@NH","<>:cnx/const:np#443-496$<i>77","tt/l:Buchstabe","tt/p:NN","mate/l:buchstabe","mate/p:NN","mate/m:case:nom","mate/m:number:sg","mate/m:gender:masc","<:mate/d:NK$<i>69",">:mate/d:SB$<i>68","<:mate/d:MNR$<i>71","xip/p:NOUN","xip/l:Buchstabe","<>:xip/const:NPA#443-452$<i>71<b>1","<>:xip/const:NOUN#443-452$<i>71","<:xip/d:DETERM$<i>69",">:xip/d:SUBJ$<i>68"],["s:für","i:für","_71#453-456","opennlp/p:APPR","cnx/l:für","cnx/p:PREP","cnx/syn:@POSTMOD","tt/l:für","tt/p:APPR","mate/l:für","mate/p:APPR",">:mate/d:MNR$<i>70","<:mate/d:NK$<i>76","xip/p:PREP","xip/l:für","<>:xip/const:PP#453-496$<i>77","<>:xip/const:PREP#453-456$<i>72"],["s:den","i:den","_72#457-460","opennlp/p:ART","cnx/l:der","cnx/p:DET","cnx/syn:@PREMOD","tt/l:die","tt/p:ART","mate/l:der","mate/p:ART","mate/m:case:acc","mate/m:number:sg","mate/m:gender:masc",">:mate/d:NK$<i>76","xip/p:DET","xip/l:der","<>:xip/const:DET#457-460$<i>73","<>:xip/const:NP#457-496$<i>77<b>1",">:xip/d:DETERM$<i>76"],["s:offenen","i:offenen","_73#461-468","opennlp/p:ADJA","cnx/l:offen","cnx/p:A","cnx/syn:@PREMOD","tt/l:offen","tt/p:ADJA","mate/l:offen","mate/p:ADJA","mate/m:case:acc","mate/m:number:sg","mate/m:gender:masc","mate/m:degree:pos",">:mate/d:MO$<i>74","xip/p:ADJ","xip/l:offen","<>:xip/const:ADJ#461-468$<i>74","<>:xip/const:NPA#461-496$<i>77<b>2","<>:xip/const:AP#461-468$<i>74<b>3",">:xip/d:NMOD$<i>76"],["s:vorderen","i:vorderen","_74#469-477","opennlp/p:ADJA","cnx/l:vorder","cnx/p:A","cnx/syn:@PREMOD","tt/l:vorder","tt/p:ADJA","mate/l:vorderer","mate/p:ADJA","mate/m:case:gen","mate/m:number:pl","mate/m:gender:fem","mate/m:degree:comp","<:mate/d:MO$<i>73",">:mate/d:NK$<i>76","xip/p:ADJ","xip/l:vorder","<>:xip/const:AP#469-477$<i>75<b>3","<>:xip/const:ADJ#469-477$<i>75",">:xip/d:NMOD$<i>76"],["s:ungerundeten","i:ungerundeten","_75#478-490","opennlp/p:ADJA","cnx/l:ungerundet","cnx/p:A","cnx/syn:@PREMOD","tt/p:ADJA","mate/l:ungerundet","mate/p:ADJA","mate/m:case:acc","mate/m:number:sg","mate/m:gender:masc","mate/m:degree:pos",">:mate/d:NK$<i>76","xip/p:ADJ","xip/l:ungerundeten","<>:xip/const:AP#478-490$<i>76<b>3","<>:xip/const:ADJ#478-490$<i>76",">:xip/d:NMOD$<i>76"],["s:Vokal","i:vokal","_76#491-496","opennlp/p:NN","cnx/l:vokal","cnx/p:N","cnx/syn:@NH","tt/l:Vokal","tt/p:NN","mate/l:vokal","mate/p:NN","mate/m:case:acc","mate/m:number:sg","mate/m:gender:masc","<:mate/d:NK$<i>72","<:mate/d:NK$<i>74","<:mate/d:NK$<i>75",">:mate/d:NK$<i>71","xip/p:NOUN","xip/l:Vokal","<>:xip/const:NOUN#491-496$<i>77","<:xip/d:DETERM$<i>72","<:xip/d:NMOD$<i>73","<:xip/d:NMOD$<i>74","<:xip/d:NMOD$<i>75"],["s:a:","i:a:","_77#497-499","opennlp/p:NE"],["s:A","i:a","_78#500-501","opennlp/p:NE","cnx/l:A","cnx/p:N","cnx/syn:@NH","<>:cnx/const:np#500-501$<i>79","tt/l:A","tt/p:NN","mate/p:$(","mate/m:case:nom","mate/m:number:sg","mate/m:gender:*","xip/p:SYMBOL","xip/l:A","<>:xip/const:SYMBOL#500-501$<i>79","<>:xip/const:TOP#500-685$<i>105","<>:xip/const:MC#500-534$<i>84<b>1","<>:xip/const:NP#500-501$<i>79<b>2","<>:xip/const:NPA#500-501$<i>79<b>3","<>:xip/const:NOUN#500-501$<i>79<b>4",">:xip/d:SUBJ$<i>79"],["s:ist","i:ist","_79#502-505","opennlp/p:VAFIN","cnx/l:sein","cnx/p:V","cnx/m:IND","cnx/m:PRES","cnx/syn:@MAIN","tt/l:sein","tt/p:VAFIN","mate/l:sein","mate/p:VAFIN","mate/m:number:sg","mate/m:person:3","mate/m:tense:pres","mate/m:mood:ind",">:mate/d:CJ$<i>68","<:mate/d:PD$<i>81","xip/p:VERB","xip/l:sein","<>:xip/const:VERB#502-505$<i>80","<:xip/d:SUBJ$<i>78","xip/d:VMAIN","<:xip/d:PRED$<i>81"],["s:der","i:der","_80#506-509","opennlp/p:ART","cnx/l:der","cnx/p:DET","cnx/syn:@PREMOD","tt/l:die","tt/p:ART","mate/l:der","mate/p:ART","mate/m:case:nom","mate/m:number:sg","mate/m:gender:masc",">:mate/d:NK$<i>81","xip/p:DET","xip/l:der","<>:xip/const:DET#506-509$<i>81","<>:xip/const:NP#506-523$<i>82<b>2",">:xip/d:DETERM$<i>81"],["s:klangreichste","i:klangreichste","_81#510-523","opennlp/p:ADJA","cnx/l:klang","cnx/l:reich","cnx/p:A","cnx/m:SUP","cnx/syn:@NH","tt/p:ADJA","mate/l:klangreich","mate/p:ADJA","mate/m:case:nom","mate/m:number:sg","mate/m:gender:masc","mate/m:degree:sup","<:mate/d:NK$<i>80",">:mate/d:PD$<i>79","<:mate/d:AG$<i>83","xip/p:ADJ","xip/l:Klang","xip/l:reich","xip/l:klangreich","<>:xip/const:ADJ#510-523$<i>82","<>:xip/const:AP#510-523$<i>82<b>3","<:xip/d:DETERM$<i>80",">:xip/d:PRED$<i>79","<:xip/d:NMOD$<i>83"],["s:der","i:der","_82#524-527","opennlp/p:ART","cnx/l:die","cnx/p:DET","cnx/syn:@PREMOD","tt/l:die","tt/p:ART","mate/l:der","mate/p:ART","mate/m:case:nom","mate/m:number:sg","mate/m:gender:masc",">:mate/d:NK$<i>83","xip/p:DET","xip/l:der","<>:xip/const:DET#524-527$<i>83","<>:xip/const:NP#524-534$<i>84<b>2",">:xip/d:DETERM$<i>83"],["s:Vokale","i:vokale","_83#528-534","opennlp/p:NN","cnx/l:vokal","cnx/p:N","cnx/m:PL","cnx/syn:@NH","<>:cnx/const:np#528-534$<i>84","tt/l:Vokal","tt/p:NN","mate/l:vokal","mate/p:NN","mate/m:case:nom","mate/m:number:sg","mate/m:gender:masc","<:mate/d:NK$<i>82",">:mate/d:AG$<i>81","<:mate/d:RC$<i>95","xip/p:NOUN","xip/l:Vokal","<>:xip/const:NOUN#528-534$<i>84","<>:xip/const:NPA#528-534$<i>84<b>3","<:xip/d:DETERM$<i>82",">:xip/d:NMOD$<i>81"],["s:bei","i:bei","_84#536-539","opennlp/p:APPR","cnx/l:bei","cnx/p:PREP","cnx/syn:@PREMARK","tt/l:bei","tt/p:APPR","mate/l:bei","mate/p:APPR",">:mate/d:MO$<i>95","<:mate/d:NK$<i>86","xip/p:PREP","xip/l:bei","<>:xip/const:PREP#536-539$<i>85","<>:xip/const:MC#536-621$<i>96<b>1","<>:xip/const:PP#536-560$<i>87<b>2"],["s:dessen","i:dessen","_85#540-546","opennlp/p:ART","cnx/l:der","cnx/p:PRON","cnx/syn:@PREMOD","tt/l:die","tt/p:PDAT","mate/l:der","mate/p:PRELAT","mate/m:case:gen","mate/m:number:sg","mate/m:gender:masc",">:mate/d:AG$<i>86","xip/p:DET","xip/l:dessen","<>:xip/const:DET#540-546$<i>86","<>:xip/const:NP#540-560$<i>87<b>3",">:xip/d:DETERM$<i>86"],["s:Hervorbringen","i:hervorbringen","_86#547-560","opennlp/p:NN","cnx/l:Hervorbringen","cnx/p:N","cnx/m:Prop","cnx/syn:@NH","<>:cnx/const:np#547-560$<i>87","tt/l:Hervorbringen","tt/p:NN","mate/l:hervorbring","mate/p:NN","mate/m:case:nom","mate/m:number:sg","mate/m:gender:neut","<:mate/d:AG$<i>85",">:mate/d:NK$<i>84","xip/p:NOUN","xip/l:hervorbringen","<>:xip/const:NOUN#547-560$<i>87","<>:xip/const:NPA#547-560$<i>87<b>4","<:xip/d:DETERM$<i>85"],["s:der","i:der","_87#561-564","opennlp/p:ART","cnx/l:der","cnx/p:DET","cnx/syn:@PREMOD","tt/l:die","tt/p:ART","mate/l:der","mate/p:ART","mate/m:case:gen","mate/m:number:sg","mate/m:gender:fem",">:mate/d:NK$<i>88","xip/p:DET","xip/l:der","<>:xip/const:DET#561-564$<i>88","<>:xip/const:NP#561-573$<i>89<b>2",">:xip/d:DETERM$<i>88"],["s:Stimmton","i:stimmton","_88#565-573","opennlp/p:NN","cnx/l:stimmton","cnx/p:N","cnx/syn:@NH","<>:cnx/const:np#565-573$<i>89","tt/l:Stimmton","tt/p:NN","mate/l:stimmton","mate/p:NN","mate/m:case:gen","mate/m:number:sg","mate/m:gender:fem","<:mate/d:NK$<i>87",">:mate/d:SB$<i>95","xip/p:NOUN","xip/l:stimmen","xip/l:Ton","xip/l:Stimmenton","<>:xip/const:NOUN#565-573$<i>89","<>:xip/const:NPA#565-573$<i>89<b>3","<:xip/d:DETERM$<i>87",">:xip/d:SUBJ$<i>95"],["s:frei","i:frei","_89#574-578","opennlp/p:ADJD","cnx/l:frei","cnx/p:A","cnx/syn:@NH","tt/l:frei","tt/p:ADJD","mate/l:frei","mate/p:ADJD","mate/m:degree:pos",">:mate/d:MO$<i>95","xip/p:ADJ","xip/l:frei","<>:xip/const:ADJ#574-578$<i>90","<>:xip/const:AP#574-578$<i>90<b>2",">:xip/d:VMOD$<i>95"],["s:aus","i:aus","_90#579-582","opennlp/p:APPR","cnx/l:aus","cnx/p:PREP","cnx/syn:@POSTMOD","tt/l:aus","tt/p:APPR","mate/l:aus","mate/p:APPR",">:mate/d:MO$<i>95","<:mate/d:NK$<i>94","xip/p:PREP","xip/l:aus","<>:xip/const:PREP#579-582$<i>91","<>:xip/const:PP#579-609$<i>95<b>2"],["s:den","i:den","_91#583-586","opennlp/p:ART","cnx/l:die","cnx/p:DET","cnx/syn:@PREMOD","tt/l:die","tt/p:ART","mate/l:der","mate/p:ART","mate/m:case:dat","mate/m:number:pl","mate/m:gender:neut",">:mate/d:NK$<i>94","xip/p:DET","xip/l:der","<>:xip/const:DET#583-586$<i>92","<>:xip/const:NP#583-609$<i>95<b>3",">:xip/d:DETERM$<i>94"],["s:weit","i:weit","_92#587-591","opennlp/p:ADJD","cnx/l:weit","cnx/p:A","cnx/syn:@PREMOD","<>:cnx/const:np#587-609$<i>95","tt/l:weit","tt/p:ADJD","mate/l:weit","mate/p:ADJD","mate/m:degree:pos",">:mate/d:MO$<i>93","xip/p:ADJ","xip/l:weit","<>:xip/const:ADJ#587-591$<i>93","<>:xip/const:NPA#587-609$<i>95<b>4","<>:xip/const:AP#587-602$<i>94<b>5",">:xip/d:ADJMOD$<i>93"],["s:geöffneten","i:geöffneten","_93#592-602","opennlp/p:ADJA","cnx/l:geöffnet","cnx/p:A","cnx/syn:@PREMOD","tt/l:geöffnet","tt/p:ADJA","mate/l:geöffnet","mate/p:ADJA","mate/m:case:dat","mate/m:number:pl","mate/m:gender:neut","mate/m:degree:pos","<:mate/d:MO$<i>92",">:mate/d:NK$<i>94","xip/p:ADJ","xip/l:öffnen","<>:xip/const:ADJ#592-602$<i>94","<:xip/d:ADJMOD$<i>92",">:xip/d:NMOD$<i>94"],["s:Lippen","i:lippen","_94#603-609","opennlp/p:NN","cnx/l:lippe","cnx/p:N","cnx/m:PL","cnx/syn:@NH","tt/l:Lippe","tt/p:NN","mate/l:lippe","mate/p:NN","mate/m:case:dat","mate/m:number:pl","mate/m:gender:neut","<:mate/d:NK$<i>91","<:mate/d:NK$<i>93",">:mate/d:NK$<i>90","xip/p:NOUN","xip/l:Lippe","<>:xip/const:NOUN#603-609$<i>95","<:xip/d:DETERM$<i>91","<:xip/d:NMOD$<i>93"],["s:hervorkommt","i:hervorkommt","_95#610-621","opennlp/p:VVFIN","cnx/l:hervor","cnx/l:kommen","cnx/p:V","cnx/m:IND","cnx/m:PRES","cnx/syn:@MAIN","tt/l:hervorkommen","tt/p:VVFIN","mate/l:hervorkommen","mate/p:VVFIN","mate/m:number:sg","mate/m:person:3","mate/m:tense:pres","mate/m:mood:ind","<:mate/d:MO$<i>84","<:mate/d:SB$<i>88","<:mate/d:MO$<i>89","<:mate/d:MO$<i>90",">:mate/d:RC$<i>83","<:mate/d:MO$<i>104","xip/p:VERB","xip/l:hervorkommen","<>:xip/const:VERB#610-621$<i>96","<:xip/d:SUBJ$<i>88","<:xip/d:VMOD$<i>89","xip/d:VMAIN"],["s:während","i:während","_96#623-630","opennlp/p:KOUS","cnx/l:während","cnx/p:CS","cnx/syn:@PREMARK","tt/l:während","tt/p:KOUS","mate/l:während","mate/p:KOUS",">:mate/d:CP$<i>104","xip/p:ADJ","xip/l:währen","<>:xip/const:ADJ#623-630$<i>97","<>:xip/const:MC#623-684$<i>105<b>1","<>:xip/const:AP#623-630$<i>97<b>2",">:xip/d:VMOD$<i>103"],["s:die","i:die","_97#631-634","opennlp/p:ART","cnx/l:die","cnx/p:DET","cnx/syn:@PREMOD","tt/l:die","tt/p:ART","mate/l:der","mate/p:ART","mate/m:case:nom","mate/m:number:sg","mate/m:gender:fem",">:mate/d:NK$<i>98","xip/p:DET","xip/l:die","<>:xip/const:DET#631-634$<i>98","<>:xip/const:NP#631-640$<i>99<b>2",">:xip/d:DETERM$<i>98"],["s:Zunge","i:zunge","_98#635-640","opennlp/p:NN","cnx/l:zunge","cnx/p:N","cnx/syn:@NH","<>:cnx/const:np#635-664$<i>103","tt/l:Zunge","tt/p:NN","mate/l:zunge","mate/p:NN","mate/m:case:nom","mate/m:number:sg","mate/m:gender:fem","<:mate/d:NK$<i>97",">:mate/d:SB$<i>104","xip/p:NOUN","xip/l:Zunge","<>:xip/const:NPA#635-640$<i>99<b>3","<>:xip/const:NOUN#635-640$<i>99","<:xip/d:DETERM$<i>97",">:xip/d:SUBJ$<i>103"],["s:in","i:in","_99#641-643","opennlp/p:APPR","cnx/l:in","cnx/p:PREP","cnx/syn:@POSTMOD","tt/l:in","tt/p:APPR","mate/l:in","mate/p:APPR",">:mate/d:MO$<i>103","<:mate/d:NK$<i>102","xip/p:PREP","xip/l:in","<>:xip/const:PREP#641-643$<i>100","<>:xip/const:PP#641-664$<i>103<b>2"],["s:eine","i:eine","_100#644-648","opennlp/p:ART","cnx/l:eine","cnx/p:DET","cnx/syn:@PREMOD","tt/l:eine","tt/p:ART","mate/l:ein","mate/p:ART","mate/m:case:acc","mate/m:number:sg","mate/m:gender:fem",">:mate/d:NK$<i>102","xip/p:DET","xip/l:ein","<>:xip/const:DET#644-648$<i>101","<>:xip/const:NP#644-664$<i>103<b>3",">:xip/d:DETERM$<i>102"],["s:flache","i:flache","_101#649-655","opennlp/p:ADJA","cnx/l:flach","cnx/p:A","cnx/syn:@PREMOD","tt/l:flach","tt/p:ADJA","mate/l:flach","mate/p:ADJA","mate/m:case:acc","mate/m:number:sg","mate/m:gender:fem","mate/m:degree:pos",">:mate/d:NK$<i>102","xip/p:ADJ","xip/l:flach","<>:xip/const:ADJ#649-655$<i>102","<>:xip/const:NPA#649-664$<i>103<b>4","<>:xip/const:AP#649-655$<i>102<b>5",">:xip/d:NMOD$<i>102"],["s:Stellung","i:stellung","_102#656-664","opennlp/p:NN","cnx/l:stellung","cnx/p:N","cnx/syn:@NH","tt/l:Stellung","tt/p:NN","mate/l:stellung","mate/p:NN","mate/m:case:acc","mate/m:number:sg","mate/m:gender:fem","<:mate/d:NK$<i>100","<:mate/d:NK$<i>101",">:mate/d:NK$<i>99","xip/p:NOUN","xip/l:Stellung","<>:xip/const:NOUN#656-664$<i>103","<:xip/d:DETERM$<i>100","<:xip/d:NMOD$<i>101"],["s:niedergedrückt","i:niedergedrückt","_103#665-679","opennlp/p:VVPP","cnx/l:nieder","cnx/l:drücken","cnx/p:V","cnx/m:PCP","cnx/m:PERF","cnx/syn:@MAIN","tt/l:niederdrücken","tt/p:VVPP","mate/l:niederdrücken","mate/p:VVPP","<:mate/d:MO$<i>99",">:mate/d:OC$<i>104","xip/p:VERB","xip/l:niederdrücken","<>:xip/const:VERB#665-679$<i>104","<:xip/d:VMOD$<i>96","<:xip/d:SUBJ$<i>98",">:xip/d:AUXIL$<i>104","xip/d:VMAIN"],["s:wird","i:wird","_104#680-684","opennlp/p:VAFIN","cnx/l:werden","cnx/p:V","cnx/m:IND","cnx/m:PRES","cnx/syn:@AUX","tt/l:werden","tt/p:VAFIN","mate/l:werden","mate/p:VAFIN","mate/m:number:sg","mate/m:person:3","mate/m:tense:pres","mate/m:mood:ind","<:mate/d:CP$<i>96","<:mate/d:SB$<i>98","<:mate/d:OC$<i>103",">:mate/d:MO$<i>95","xip/p:VERB","xip/l:werden","<>:xip/const:VERB#680-684$<i>105","<:xip/d:AUXIL$<i>103"],["s:Stellt","i:stellt","_105#686-692","<>:s#686-919$<i>149","opennlp/p:VVFIN","cnx/l:stellen","cnx/p:V","cnx/m:IND","cnx/m:PRES","cnx/syn:@MAIN","tt/l:stellen","tt/p:VVFIN","mate/l:stellen","mate/p:VVFIN","mate/m:number:sg","mate/m:person:3","mate/m:tense:pres","mate/m:mood:ind",">:mate/d:RE$<i>120","<:mate/d:SB$<i>106","<:mate/d:OA$<i>108","<:mate/d:MO$<i>115","<:mate/d:SVP$<i>119","xip/p:VERB","xip/l:stellen","<>:xip/const:VERB#686-692$<i>106","<>:xip/const:TOP#686-919$<i>149","<>:xip/const:MC#686-772$<i>120<b>1","xip/d:VMAIN","<:xip/d:SUBJ$<i>106","<:xip/d:OBJ$<i>108","<:xip/d:OBJ$<i>114","<:xip/d:VPREF$<i>119"],["s:man","i:man","_106#693-696","opennlp/p:PIS","cnx/l:man","cnx/p:PRON","cnx/syn:@NH","tt/l:man","tt/p:PIS","mate/l:man","mate/p:PIS","mate/m:case:nom","mate/m:number:sg","mate/m:gender:*",">:mate/d:SB$<i>105","xip/p:PRON","xip/l:man","<>:xip/const:NP#693-696$<i>107<b>2","<>:xip/const:PRON#693-696$<i>107",">:xip/d:SUBJ$<i>105"],["s:das","i:das","_107#697-700","opennlp/p:ART","cnx/l:das","cnx/p:DET","cnx/syn:@PREMOD","tt/l:die","tt/p:ART","mate/l:der","mate/p:ART","mate/m:case:acc","mate/m:number:sg","mate/m:gender:neut",">:mate/d:NK$<i>108","xip/p:DET","xip/l:das","<>:xip/const:DET#697-700$<i>108","<>:xip/const:NP#697-711$<i>109<b>2",">:xip/d:DETERM$<i>108"],["s:Verhältnis","i:verhältnis","_108#701-711","opennlp/p:NN","cnx/l:verhältnis","cnx/p:N","cnx/syn:@NH","<>:cnx/const:np#701-711$<i>109","tt/l:Verhältnis","tt/p:NN","mate/l:verhältnis","mate/p:NN","mate/m:case:acc","mate/m:number:sg","mate/m:gender:neut","<:mate/d:NK$<i>107",">:mate/d:OA$<i>105","<:mate/d:AG$<i>111","xip/p:NOUN","xip/l:Verhältnis","<>:xip/const:NPA#701-711$<i>109<b>3","<>:xip/const:NOUN#701-711$<i>109","<:xip/d:DETERM$<i>107",">:xip/d:OBJ$<i>105","<:xip/d:NMOD$<i>111"],["s:der","i:der","_109#712-715","opennlp/p:ART","cnx/l:der","cnx/p:PRON","cnx/syn:@NH","tt/l:die","tt/p:ART","mate/l:der","mate/p:ART","mate/m:case:gen","mate/m:number:pl","mate/m:gender:masc",">:mate/d:NK$<i>111","xip/p:DET","xip/l:der","<>:xip/const:DET#712-715$<i>110","<>:xip/const:NP#712-732$<i>112<b>2",">:xip/d:DETERM$<i>111"],["s:drei","i:drei","_110#716-720","opennlp/p:CARD","cnx/l:drei","cnx/p:NUM","cnx/syn:@PREMOD","tt/l:drei","tt/p:CARD","mate/l:drei","mate/p:CARD",">:mate/d:NK$<i>111","xip/p:NUM","xip/l:drei","<>:xip/const:NUM#716-720$<i>111","<>:xip/const:NPA#716-732$<i>112<b>3","<>:xip/const:NUM#716-720$<i>111<b>4",">:xip/d:NMOD$<i>111"],["s:Hauptvokale","i:hauptvokale","_111#721-732","opennlp/p:NN","cnx/l:haupt","cnx/l:vokal","cnx/p:N","cnx/m:PL","cnx/syn:@NH","<>:cnx/const:np#721-732$<i>112","tt/p:NN","mate/l:hauptvokal","mate/p:NN","mate/m:case:gen","mate/m:number:pl","mate/m:gender:masc","<:mate/d:NK$<i>109","<:mate/d:NK$<i>110",">:mate/d:AG$<i>108","xip/p:NOUN","xip/l:Haupt","xip/l:Vokal","xip/l:Hauptvokal","<>:xip/const:NOUN#721-732$<i>112","<:xip/d:DETERM$<i>109","<:xip/d:NMOD$<i>110",">:xip/d:NMOD$<i>108"],["s:a,","i:a,","_112#733-735","opennlp/p:VVPP"],["s:i","i:i","_113#736-737","opennlp/p:VAFIN","cnx/l:i","cnx/p:N","cnx/syn:@NH","<>:cnx/const:np#736-737$<i>114","tt/l:i","tt/p:NE","tt/l:i","tt/p:XY","tt/l:i","tt/p:FM","mate/l:I","mate/p:XY","xip/p:SYMBOL","xip/l:i","<>:xip/const:SYMBOL#736-737$<i>114","<>:xip/const:NP#736-737$<i>114","<>:xip/const:NPA#736-737$<i>114<b>1","<>:xip/const:NOUN#736-737$<i>114<b>2"],["s:u","i:u","_114#739-740","opennlp/p:KON","cnx/l:u","cnx/p:N","cnx/syn:@NH","<>:cnx/const:np#739-740$<i>115","tt/l:u","tt/p:FM","tt/l:u","tt/p:XY","tt/l:u","tt/p:NE","mate/l:u","mate/p:KON",">:mate/d:MO$<i>115","xip/p:SYMBOL","xip/l:u","<>:xip/const:SYMBOL#739-740$<i>115",">:xip/d:OBJ$<i>105"],["s:durch","i:durch","_115#741-746","opennlp/p:APPR","cnx/l:durch","cnx/p:PREP","cnx/syn:@PREMARK","tt/l:durch","tt/p:APPR","mate/l:durch","mate/p:APPR","<:mate/d:MO$<i>114",">:mate/d:MO$<i>105","<:mate/d:NK$<i>118","xip/p:PREP","xip/l:durch","<>:xip/const:PREP#741-746$<i>116"],["s:eine","i:eine","_116#747-751","opennlp/p:ART","cnx/l:eine","cnx/p:DET","cnx/syn:@PREMOD","tt/l:eine","tt/p:ART","mate/l:ein","mate/p:ART","mate/m:case:acc","mate/m:number:sg","mate/m:gender:fem",">:mate/d:NK$<i>118","xip/p:DET","xip/l:ein","<>:xip/const:DET#747-751$<i>117",">:xip/d:DETERM$<i>118"],["s:senkrechte","i:senkrechte","_117#752-762","opennlp/p:ADJA","cnx/l:senk","cnx/l:recht","cnx/p:A","cnx/syn:@PREMOD","<>:cnx/const:np#752-768$<i>119","tt/l:senkrecht","tt/p:ADJA","mate/l:senkrecht","mate/p:ADJA","mate/m:case:acc","mate/m:number:sg","mate/m:gender:fem","mate/m:degree:pos",">:mate/d:NK$<i>118","xip/p:ADJ","xip/l:senkrecht","<>:xip/const:ADJ#752-762$<i>118",">:xip/d:NMOD$<i>118"],["s:Linie","i:linie","_118#763-768","opennlp/p:NN","cnx/l:linie","cnx/p:N","cnx/syn:@NH","tt/l:Linie","tt/p:NN","mate/l:linie","mate/p:NN","mate/m:case:acc","mate/m:number:sg","mate/m:gender:fem","<:mate/d:NK$<i>116","<:mate/d:NK$<i>117",">:mate/d:NK$<i>115","xip/p:NOUN","xip/l:Linie","<>:xip/const:NOUN#763-768$<i>119","<:xip/d:DETERM$<i>116","<:xip/d:NMOD$<i>117"],["s:dar","i:dar","_119#769-772","opennlp/p:PTKVZ","cnx/l:dar","cnx/p:ADV","cnx/syn:@ADVL","tt/l:dar","tt/p:PTKVZ","mate/l:dar","mate/p:PTKVZ",">:mate/d:SVP$<i>105","xip/p:PTCL","xip/l:dar","<>:xip/const:PTCL#769-772$<i>120",">:xip/d:VPREF$<i>105"],["s:so","i:so","_120#774-776","opennlp/p:ADV","cnx/l:so","cnx/p:ADV","cnx/syn:@ADVL","tt/l:so","tt/p:ADV","mate/l:so","mate/p:ADV","<:mate/d:RE$<i>105",">:mate/d:MO$<i>121","xip/p:ADV","xip/l:so","<>:xip/const:MC#774-813$<i>129<b>1","<>:xip/const:ADV#774-776$<i>121",">:xip/d:VMOD$<i>121"],["s:kommt","i:kommt","_121#777-782","opennlp/p:VVFIN","cnx/l:kommen","cnx/p:V","cnx/m:IND","cnx/m:PRES","cnx/syn:@MAIN","tt/l:kommen","tt/p:VVFIN","mate/l:kommen","mate/p:VVFIN","mate/m:number:sg","mate/m:person:3","mate/m:tense:pres","mate/m:mood:ind","<:mate/d:MO$<i>120","<:mate/d:SB$<i>122","<:mate/d:MO$<i>123","xip/p:VERB","xip/l:kommen","<>:xip/const:VERB#777-782$<i>122","<:xip/d:VMOD$<i>120","xip/d:VMAIN","<:xip/d:SUBJ$<i>122"],["s:i","i:i","_122#783-784","opennlp/p:APPR","cnx/l:i","cnx/p:N","cnx/syn:@NH","<>:cnx/const:np#783-784$<i>123","tt/l:i","tt/p:XY","tt/l:i","tt/p:NE","tt/l:i","tt/p:FM","mate/l:I","mate/p:PPER","mate/m:case:nom","mate/m:number:sg","mate/m:gender:fem","mate/m:person:3",">:mate/d:SB$<i>121","xip/p:SYMBOL","xip/l:i","<>:xip/const:SYMBOL#783-784$<i>123","<>:xip/const:NP#783-784$<i>123<b>2","<>:xip/const:NPA#783-784$<i>123<b>3","<>:xip/const:NOUN#783-784$<i>123<b>4",">:xip/d:SUBJ$<i>121"],["s:als","i:als","_123#785-788","opennlp/p:APPR","cnx/l:als","cnx/p:PREP","cnx/syn:@PREMARK","tt/l:als","tt/p:KOKOM","mate/l:als","mate/p:APPR",">:mate/d:MO$<i>121","<:mate/d:NK$<i>125","<:mate/d:CD$<i>129","xip/p:PREP","xip/l:als","<>:xip/const:PP#785-800$<i>126<b>2","<>:xip/const:PREP#785-788$<i>124"],["s:der","i:der","_124#789-792","opennlp/p:ART","cnx/l:die","cnx/p:PRON","cnx/syn:@NH","tt/l:die","tt/p:ART","mate/l:der","mate/p:ART","mate/m:case:nom","mate/m:number:sg","mate/m:gender:masc",">:mate/d:NK$<i>125","xip/p:DET","xip/l:der","<>:xip/const:NP#789-800$<i>126<b>3","<>:xip/const:DET#789-792$<i>125",">:xip/d:DETERM$<i>125"],["s:hellste","i:hellste","_125#793-800","opennlp/p:ADJA","cnx/l:hell","cnx/p:A","cnx/m:SUP","cnx/syn:@NH","tt/l:hell","tt/p:ADJA","mate/l:hell","mate/p:ADJA","mate/m:case:nom","mate/m:number:sg","mate/m:gender:masc","mate/m:degree:sup","<:mate/d:NK$<i>124",">:mate/d:NK$<i>123","<:mate/d:MNR$<i>126","xip/p:ADJ","xip/l:hell","<>:xip/const:AP#793-800$<i>126<b>4","<>:xip/const:ADJ#793-800$<i>126","<:xip/d:DETERM$<i>124"],["s:an","i:an","_126#801-803","opennlp/p:APPR","cnx/l:an","cnx/p:ADV","cnx/syn:@ADVL","tt/l:an","tt/p:APPR","mate/l:an","mate/p:APPR",">:mate/d:MNR$<i>125","<:mate/d:NK$<i>128","xip/p:PREP","xip/l:an","<>:xip/const:PREP#801-803$<i>127","<>:xip/const:PP#801-813$<i>129<b>2"],["s:das","i:das","_127#804-807","opennlp/p:ART","cnx/l:das","cnx/p:PRON","cnx/syn:@NH","tt/l:die","tt/p:ART","mate/l:der","mate/p:ART","mate/m:case:acc","mate/m:number:sg","mate/m:gender:neut",">:mate/d:NK$<i>128","xip/p:DET","xip/l:das","<>:xip/const:DET#804-807$<i>128","<>:xip/const:NP#804-813$<i>129<b>3",">:xip/d:DETERM$<i>128"],["s:obere","i:obere","_128#808-813","opennlp/p:ADJA","cnx/l:ober","cnx/p:A","cnx/syn:@NH","tt/l:ober","tt/p:ADJA","mate/l:oberer","mate/p:ADJA","mate/m:case:acc","mate/m:number:sg","mate/m:gender:neut","mate/m:degree:pos","<:mate/d:NK$<i>127",">:mate/d:NK$<i>126","xip/p:ADJ","xip/l:ober","<>:xip/const:AP#808-813$<i>129<b>4","<>:xip/const:ADJ#808-813$<i>129","<:xip/d:DETERM$<i>127"],["s:u","i:u","_129#815-816","opennlp/p:KON","cnx/l:u","cnx/p:N","cnx/syn:@NH","<>:cnx/const:np#815-816$<i>130","tt/l:u","tt/p:FM","tt/l:u","tt/p:XY","tt/l:u","tt/p:NE","mate/l:u","mate/p:KON",">:mate/d:CD$<i>123","<:mate/d:CJ$<i>130","xip/p:SYMBOL","xip/l:u","<>:xip/const:SYMBOL#815-816$<i>130","<>:xip/const:MC#815-919$<i>149<b>1","<>:xip/const:NP#815-816$<i>130<b>2","<>:xip/const:NPA#815-816$<i>130<b>3","<>:xip/const:NOUN#815-816$<i>130<b>4",">:xip/d:SUBJ$<i>132"],["s:als","i:als","_130#817-820","opennlp/p:APPR","cnx/l:als","cnx/p:PREP","cnx/syn:@PREMARK","tt/l:als","tt/p:KOKOM","mate/l:als","mate/p:APPR",">:mate/d:CJ$<i>129","<:mate/d:NK$<i>132","<:mate/d:MO$<i>133","xip/p:PREP","xip/l:als","<>:xip/const:PP#817-824$<i>132<b>2","<>:xip/const:PREP#817-820$<i>131"],["s:der","i:der","_131#821-824","opennlp/p:ART","cnx/l:die","cnx/p:PRON","cnx/syn:@NH","tt/l:die","tt/p:ART","mate/l:der","mate/p:ART","mate/m:case:nom","mate/m:number:sg","mate/m:gender:masc",">:mate/d:NK$<i>132","xip/p:PRON","xip/l:der","<>:xip/const:PRON#821-824$<i>132","<>:xip/const:NP#821-824$<i>132<b>3"],["s:dumpfeste","i:dumpfeste","_132#825-834","opennlp/p:ADJA","cnx/l:dumpfe","cnx/p:A","cnx/m:SUP","cnx/syn:@NH","tt/l:dumpfest","tt/p:ADJA","mate/l:dumpfest","mate/p:ADJA","mate/m:case:nom","mate/m:number:sg","mate/m:gender:masc","mate/m:degree:sup","<:mate/d:NK$<i>131",">:mate/d:NK$<i>130","xip/p:VERB","xip/l:dumpfesen","<>:xip/const:VERB#825-834$<i>133","<:xip/d:SUBJ$<i>129","xip/d:VMAIN"],["s:an","i:an","_133#835-837","opennlp/p:APPR","cnx/l:an","cnx/p:ADV","cnx/syn:@ADVL","tt/l:an","tt/p:APPR","mate/l:an","mate/p:APPR",">:mate/d:MO$<i>130","<:mate/d:NK$<i>136","xip/p:PREP","xip/l:an","<>:xip/const:PREP#835-837$<i>134","<>:xip/const:PP#835-853$<i>137<b>2"],["s:das","i:das","_134#838-841","opennlp/p:ART","cnx/l:das","cnx/p:DET","cnx/syn:@PREMOD","tt/l:die","tt/p:ART","mate/l:der","mate/p:ART","mate/m:case:acc","mate/m:number:sg","mate/m:gender:neut",">:mate/d:NK$<i>136","xip/p:DET","xip/l:das","<>:xip/const:DET#838-841$<i>135","<>:xip/const:NP#838-853$<i>137<b>3",">:xip/d:DETERM$<i>136"],["s:untere","i:untere","_135#842-848","opennlp/p:ADJA","cnx/l:unter","cnx/p:A","cnx/syn:@PREMOD","<>:cnx/const:np#842-853$<i>137","tt/l:unter","tt/p:ADJA","mate/l:unterer","mate/p:ADJA","mate/m:case:acc","mate/m:number:sg","mate/m:gender:neut","mate/m:degree:pos",">:mate/d:NK$<i>136","xip/p:ADJ","xip/l:unter","<>:xip/const:NPA#842-853$<i>137<b>4","<>:xip/const:AP#842-848$<i>136<b>5","<>:xip/const:ADJ#842-848$<i>136",">:xip/d:NMOD$<i>136"],["s:Ende","i:ende","_136#849-853","opennlp/p:NN","cnx/l:ende","cnx/p:N","cnx/syn:@NH","tt/l:Ende","tt/p:NN","mate/l:ende","mate/p:NN","mate/m:case:acc","mate/m:number:sg","mate/m:gender:neut","<:mate/d:NK$<i>134","<:mate/d:NK$<i>135",">:mate/d:NK$<i>133","<:mate/d:PAR$<i>137","xip/p:NOUN","xip/l:Ende","<>:xip/const:NOUN#849-853$<i>137","<:xip/d:DETERM$<i>134","<:xip/d:NMOD$<i>135"],["s:a","i:a","_137#855-856","opennlp/p:NE","cnx/l:a","cnx/p:PREP","cnx/syn:@PREMARK","tt/l:a","tt/p:FM","mate/p:PRELS",">:mate/d:PAR$<i>136","<:mate/d:RE$<i>148","xip/p:SYMBOL","xip/l:a","<>:xip/const:INFC#855-918$<i>149","<>:xip/const:NP#855-856$<i>138<b>1","<>:xip/const:NPA#855-856$<i>138<b>2","<>:xip/const:NOUN#855-856$<i>138<b>3","<>:xip/const:SYMBOL#855-856$<i>138"],["s:als","i:als","_138#857-860","opennlp/p:APPR","cnx/l:als","cnx/p:CS","cnx/syn:@PREMARK","tt/l:als","tt/p:KOKOM","tt/l:als","tt/p:KOUS","mate/l:als","mate/p:APPR",">:mate/d:MO$<i>148","<:mate/d:NK$<i>141","xip/p:PREP","xip/l:als","<>:xip/const:PP#857-879$<i>142<b>1","<>:xip/const:PREP#857-860$<i>139"],["s:der","i:der","_139#861-864","opennlp/p:ART","cnx/l:der","cnx/p:DET","cnx/syn:@PREMOD","tt/l:die","tt/p:ART","mate/l:der","mate/p:ART","mate/m:case:nom","mate/m:number:sg","mate/m:gender:masc",">:mate/d:NK$<i>141","xip/p:DET","xip/l:der","<>:xip/const:NP#861-879$<i>142<b>2","<>:xip/const:DET#861-864$<i>140",">:xip/d:DETERM$<i>141"],["s:mittlere","i:mittlere","_140#865-873","opennlp/p:ADJA","cnx/l:mittel","cnx/p:A","cnx/m:CMP","cnx/syn:@PREMOD","<>:cnx/const:np#865-879$<i>142","tt/l:mittel","tt/p:ADJA","mate/l:mittlerer","mate/p:ADJA","mate/m:case:nom","mate/m:number:sg","mate/m:gender:masc","mate/m:degree:pos",">:mate/d:NK$<i>141","xip/p:ADJ","xip/l:mittler","<>:xip/const:ADJ#865-873$<i>141","<>:xip/const:NPA#865-879$<i>142<b>3","<>:xip/const:AP#865-873$<i>141<b>4",">:xip/d:NMOD$<i>141"],["s:Vokal","i:vokal","_141#874-879","opennlp/p:NN","cnx/l:vokal","cnx/p:N","cnx/syn:@NH","tt/l:Vokal","tt/p:NN","mate/l:vokal","mate/p:NN","mate/m:case:nom","mate/m:number:sg","mate/m:gender:masc","<:mate/d:NK$<i>139","<:mate/d:NK$<i>140",">:mate/d:NK$<i>138","xip/p:NOUN","xip/l:Vokal","<>:xip/const:NOUN#874-879$<i>142","<:xip/d:DETERM$<i>139","<:xip/d:NMOD$<i>140"],["s:genau","i:genau","_142#880-885","opennlp/p:ADJD","cnx/l:genau","cnx/p:ADV","cnx/syn:@ADVL","tt/l:genau","tt/p:ADJD","mate/l:genau","mate/p:ADJD","mate/m:degree:pos",">:mate/d:MO$<i>148","xip/p:ADJ","xip/l:genau","<>:xip/const:AP#880-885$<i>143<b>1","<>:xip/const:ADJ#880-885$<i>143"],["s:in","i:in","_143#886-888","opennlp/p:APPR","cnx/l:in","cnx/p:PREP","cnx/syn:@PREMARK","tt/l:in","tt/p:APPR","mate/l:in","mate/p:APPR",">:mate/d:MO$<i>148","<:mate/d:NK$<i>145","xip/p:PREP","xip/l:in","<>:xip/const:PP#886-898$<i>146<b>1","<>:xip/const:PREP#886-888$<i>144"],["s:die","i:die","_144#889-892","opennlp/p:ART","cnx/l:die","cnx/p:DET","cnx/syn:@PREMOD","tt/l:die","tt/p:ART","mate/l:der","mate/p:ART","mate/m:case:acc","mate/m:number:sg","mate/m:gender:fem",">:mate/d:NK$<i>145","xip/p:DET","xip/l:die","<>:xip/const:NP#889-898$<i>146<b>2","<>:xip/const:DET#889-892$<i>145",">:xip/d:DETERM$<i>145"],["s:Mitte","i:mitte","_145#893-898","opennlp/p:NN","cnx/l:mitte","cnx/p:N","cnx/syn:@NH","<>:cnx/const:np#893-898$<i>146","tt/l:Mitte","tt/p:NN","mate/l:mitte","mate/p:NN","mate/m:case:acc","mate/m:number:sg","mate/m:gender:fem","<:mate/d:NK$<i>144",">:mate/d:NK$<i>143","<:mate/d:AG$<i>146","xip/p:NOUN","xip/l:Mitte","<>:xip/const:NOUN#893-898$<i>146","<>:xip/const:NPA#893-898$<i>146<b>3","<:xip/d:DETERM$<i>144"],["s:derselben","i:derselben","_146#899-908","opennlp/p:PDAT","cnx/l:dieselbe","cnx/p:PRON","cnx/syn:@NH","tt/l:dieselbe","tt/p:PDAT","mate/l:derselbe","mate/p:PDS",">:mate/d:AG$<i>145","xip/p:PRON","xip/l:dieselben","<>:xip/const:PRON#899-908$<i>147","<>:xip/const:NP#899-908$<i>147<b>1"],["s:zu","i:zu","_147#909-911","opennlp/p:PTKZU","cnx/l:zu","cnx/p:PREP","cnx/syn:@PREMARK","tt/l:zu","tt/p:PTKZU","mate/l:zu","mate/p:PTKZU",">:mate/d:PM$<i>148","xip/p:PTCL","xip/l:zu","<>:xip/const:PTCL#909-911$<i>148","<>:xip/const:VERB#909-918$<i>149<b>1"],["s:stehen","i:stehen","_148#912-918","opennlp/p:VVINF","cnx/l:stehen","cnx/p:V","cnx/m:INF","cnx/syn:@MAIN","tt/l:stehen","tt/p:VVINF","mate/l:stehen","mate/p:VVINF","<:mate/d:MO$<i>138","<:mate/d:MO$<i>142","<:mate/d:MO$<i>143","<:mate/d:PM$<i>147",">:mate/d:RE$<i>137","xip/p:VERB","xip/l:stehen","<>:xip/const:VERB#912-918$<i>149"],["s:Im","i:im","_149#920-922","<>:s#920-1092$<i>180","opennlp/p:APPRART","tt/l:im","tt/p:APPRART","mate/l:in","mate/p:APPRART","mate/m:case:dat","mate/m:number:sg","mate/m:gender:neut",">:mate/d:MO$<i>151","<:mate/d:NK$<i>150","xip/p:PREP","xip/l:in","<>:xip/const:TOP#920-978$<i>158","<>:xip/const:MC#920-977$<i>158<b>1","<>:xip/const:PP#920-932$<i>151<b>2","<>:xip/const:PREP#920-922$<i>150"],["s:Deutschen","i:deutschen","_150#923-932","opennlp/p:NN","corenlp/ne_dewac_175m_600:I-MISC","corenlp/ne_hgc_175m_600:I-MISC","cnx/l:Deutsche","cnx/p:N","cnx/syn:@NH","<>:cnx/const:np#923-932$<i>151","tt/l:Deutsche","tt/p:NN","mate/l:deutsche","mate/p:NN","mate/m:case:dat","mate/m:number:sg","mate/m:gender:neut",">:mate/d:NK$<i>149","xip/p:NOUN","xip/l:deutsch","<>:xip/const:NOUN#923-932$<i>151","<>:xip/const:NP#923-932$<i>151<b>3","<>:xip/const:NPA#923-932$<i>151<b>4"],["s:gibt","i:gibt","_151#933-937","opennlp/p:VVFIN","cnx/l:geben","cnx/p:V","cnx/m:IND","cnx/m:PRES","cnx/syn:@MAIN","tt/l:geben","tt/p:VVFIN","mate/l:geben","mate/p:VVFIN","mate/m:number:sg","mate/m:person:3","mate/m:tense:pres","mate/m:mood:ind","<:mate/d:MO$<i>149","<:mate/d:EP$<i>152","<:mate/d:OA$<i>155","xip/p:VERB","xip/l:geben","<>:xip/const:VERB#933-937$<i>152","xip/d:VMAIN","<:xip/d:OBJ$<i>157"],["s:es","i:es","_152#938-940","opennlp/p:PPER","cnx/l:es","cnx/p:PRON","cnx/syn:@NH","tt/l:es","tt/p:PPER","mate/l:es","mate/p:PPER","mate/m:case:nom","mate/m:number:sg","mate/m:gender:neut","mate/m:person:3",">:mate/d:EP$<i>151","xip/p:PRON","xip/l:es","<>:xip/const:NP#938-966$<i>156<b>2","<>:xip/const:NP#938-940$<i>153<b>3","<>:xip/const:PRON#938-940$<i>153"],["s:zwei","i:zwei","_153#941-945","opennlp/p:CARD","cnx/l:zwei","cnx/p:NUM","cnx/syn:@PREMOD","tt/l:zwei","tt/p:CARD","mate/l:zwei","mate/p:CARD",">:mate/d:NK$<i>155","xip/p:NUM","xip/l:zwei","<>:xip/const:NUM#941-945$<i>154","<>:xip/const:NP#941-966$<i>156<b>3","<>:xip/const:NPA#941-966$<i>156<b>4","<>:xip/const:NUM#941-945$<i>154<b>5",">:xip/d:NMOD$<i>155"],["s:verschiedene","i:verschiedene","_154#946-958","opennlp/p:ADJA","cnx/l:verschieden","cnx/p:A","cnx/syn:@PREMOD","<>:cnx/const:np#946-966$<i>156","tt/l:verschieden","tt/p:ADJA","mate/l:verschieden","mate/p:ADJA","mate/m:case:acc","mate/m:number:pl","mate/m:gender:neut","mate/m:degree:pos",">:mate/d:NK$<i>155","xip/p:ADJ","xip/l:verscheiden","<>:xip/const:AP#946-958$<i>155<b>5","<>:xip/const:ADJ#946-958$<i>155",">:xip/d:NMOD$<i>155"],["s:Phoneme","i:phoneme","_155#959-966","opennlp/p:NN","cnx/l:phonem","cnx/p:N","cnx/m:PL","cnx/syn:@NH","tt/l:Phonem","tt/p:NN","mate/l:phonem","mate/p:NN","mate/m:case:acc","mate/m:number:pl","mate/m:gender:neut","<:mate/d:NK$<i>153","<:mate/d:NK$<i>154",">:mate/d:OA$<i>151","<:mate/d:AG$<i>157","<:mate/d:APP$<i>159","<:mate/d:CC$<i>162","xip/p:NOUN","xip/l:Phonem","<>:xip/const:NOUN#959-966$<i>156","<:xip/d:NMOD$<i>153","<:xip/d:NMOD$<i>154"],["s:des","i:des","_156#967-970","opennlp/p:ART","cnx/l:der","cnx/p:DET","cnx/syn:@PREMOD","tt/l:die","tt/p:ART","mate/l:der","mate/p:ART","mate/m:case:gen","mate/m:number:sg","mate/m:gender:masc",">:mate/d:NK$<i>157","xip/p:DET","xip/l:der","<>:xip/const:NP#967-977$<i>158<b>2","<>:xip/const:DET#967-970$<i>157",">:xip/d:DETERM$<i>157"],["s:Vokals","i:vokals","_157#971-977","opennlp/p:NN","cnx/l:vokal","cnx/p:N","cnx/syn:@NH","<>:cnx/const:np#971-977$<i>158","tt/l:Vokal","tt/p:NN","mate/l:vokal","mate/p:NN","mate/m:case:gen","mate/m:number:sg","mate/m:gender:masc","<:mate/d:NK$<i>156",">:mate/d:AG$<i>155","xip/p:NOUN","xip/l:Vokal","<>:xip/const:NPA#971-977$<i>158<b>3","<>:xip/const:NOUN#971-977$<i>158","<:xip/d:DETERM$<i>156",">:xip/d:OBJ$<i>151"],["s:den","i:den","_158#979-982","opennlp/p:ART","cnx/l:der","cnx/p:DET","cnx/syn:@PREMOD","tt/l:die","tt/p:ART","mate/l:der","mate/p:ART","mate/m:case:acc","mate/m:number:sg","mate/m:gender:masc",">:mate/d:NK$<i>159","xip/p:DET","xip/l:der","<>:xip/const:DET#979-982$<i>159","<>:xip/const:TOP#979-1092$<i>180","<>:xip/const:INS#979-1074$<i>175<b>1","<>:xip/const:NP#979-992$<i>160<b>2",">:xip/d:DETERM$<i>159"],["s:Kurzvokal","i:kurzvokal","_159#983-992","opennlp/p:NN","cnx/l:kurz","cnx/l:vokal","cnx/p:N","cnx/syn:@NH","<>:cnx/const:np#983-992$<i>160","tt/p:NN","mate/l:kurzvokal","mate/p:NN","mate/m:case:acc","mate/m:number:sg","mate/m:gender:masc","<:mate/d:NK$<i>158",">:mate/d:APP$<i>155","xip/p:NOUN","xip/l:kurz","xip/l:Vokal","xip/l:Kurzvokal","<>:xip/const:NPA#983-992$<i>160<b>3","<>:xip/const:NOUN#983-992$<i>160","<:xip/d:DETERM$<i>158"],["s:a,","i:a,","_160#993-995","opennlp/p:ADV"],["s:wie","i:wie","_161#996-999","opennlp/p:KOKOM","cnx/l:wie","cnx/p:ADV","cnx/syn:@ADVL","tt/l:wie","tt/p:KOUS","tt/l:wie","tt/p:KOKOM","mate/l:wie","mate/p:PWAV",">:mate/d:CM$<i>162","xip/p:ADV","xip/l:wie","<>:xip/const:ADV#996-999$<i>162"],["s:z","i:z","_162#1000-1001","opennlp/p:ADV","cnx/l:z","cnx/p:N","cnx/syn:@NH","<>:cnx/const:np#1000-1001$<i>163","mate/l:z","mate/p:PPER","<:mate/d:CM$<i>161",">:mate/d:CC$<i>155","<>:xip/const:ADV#1000-1005$<i>164"],["s:B.","i:b.","_163#1003-1005","opennlp/p:NN","tt/l:B.","tt/p:NN"],["s:in","i:in","_164#1006-1008","opennlp/p:APPR","cnx/l:in","cnx/p:PREP","cnx/syn:@PREMARK","tt/l:in","tt/p:APPR","mate/l:in","mate/p:APPR","<:mate/d:NK$<i>165","xip/p:PREP","xip/l:in","<>:xip/const:PREP#1006-1008$<i>165"],["s:satt","i:satt","_165#1009-1013","opennlp/p:NE","cnx/l:satt","cnx/p:A","cnx/syn:@NH","tt/l:satt","tt/p:ADJD","mate/l:satt","mate/p:ADJD","mate/m:degree:pos",">:mate/d:NK$<i>164","xip/p:ADJ","xip/l:satt","<>:xip/const:ADJ#1009-1013$<i>166","<>:xip/const:AP#1009-1013$<i>166"],["s:und","i:und","_166#1015-1018","opennlp/p:KON","cnx/l:und","cnx/p:CC","cnx/syn:@CC","tt/l:und","tt/p:KON","mate/l:und","mate/p:KON","<:mate/d:CJ$<i>173","xip/p:CONJ","xip/l:und","<>:xip/const:CONJ#1015-1018$<i>167"],["s:den","i:den","_167#1019-1022","opennlp/p:ART","cnx/l:die","cnx/p:DET","cnx/syn:@PREMOD","tt/l:die","tt/p:ART","tt/l:die","tt/p:PDS","mate/l:der","mate/p:ART","mate/m:case:acc","mate/m:number:sg","mate/m:gender:masc",">:mate/d:NK$<i>173","xip/p:DET","xip/l:der","<>:xip/const:DET#1019-1022$<i>168",">:xip/d:DETERM$<i>173"],["s:weiter","i:weiter","_168#1023-1029","opennlp/p:ADV","cnx/l:weit","cnx/p:A","cnx/syn:@NH","tt/l:weiter","tt/p:ADV","mate/l:weiter","mate/p:ADV",">:mate/d:MO$<i>172","xip/p:ADV","xip/l:weiter","<>:xip/const:ADV#1023-1029$<i>169"],["s:hinten","i:hinten","_169#1030-1036","opennlp/p:ADV","cnx/l:hinten","cnx/p:ADV","cnx/syn:@ADVL","tt/l:hinten","tt/p:ADV","mate/l:hinten","mate/p:ADV",">:mate/d:MO$<i>170","xip/p:ADV","xip/l:hinten","<>:xip/const:ADV#1030-1036$<i>170"],["s:im","i:im","_170#1037-1039","opennlp/p:APPRART","tt/l:im","tt/p:APPRART","mate/l:in","mate/p:APPRART","mate/m:case:dat","mate/m:number:sg","mate/m:gender:masc","<:mate/d:MO$<i>169",">:mate/d:MO$<i>172","<:mate/d:NK$<i>171","xip/p:PREP","xip/l:in","<>:xip/const:PREP#1037-1039$<i>171"],["s:Rachenraum","i:rachenraum","_171#1040-1050","opennlp/p:NN","cnx/l:rache","cnx/l:raum","cnx/p:N","cnx/syn:@NH","<>:cnx/const:np#1040-1050$<i>172","tt/l:Rachenraum","tt/p:NN","mate/l:rachenraum","mate/p:NN","mate/m:case:dat","mate/m:number:sg","mate/m:gender:masc",">:mate/d:NK$<i>170","xip/p:NOUN","xip/l:Rachen","xip/l:Raum","xip/l:Rachenraum","<>:xip/const:NOUN#1040-1050$<i>172"],["s:gebildeten","i:gebildeten","_172#1051-1061","opennlp/p:ADJA","cnx/l:gebildet","cnx/p:A","cnx/syn:@PREMOD","<>:cnx/const:np#1051-1071$<i>174","tt/l:gebildet","tt/p:ADJA","mate/l:gebildet","mate/p:ADJA","mate/m:case:acc","mate/m:number:sg","mate/m:gender:masc","mate/m:degree:pos","<:mate/d:MO$<i>168","<:mate/d:MO$<i>170",">:mate/d:NK$<i>173","xip/p:ADJ","xip/l:bilden","<>:xip/const:ADJ#1051-1061$<i>173",">:xip/d:NMOD$<i>173"],["s:Langvokal","i:langvokal","_173#1062-1071","opennlp/p:NN","cnx/l:lang","cnx/l:vokal","cnx/p:N","cnx/syn:@NH","tt/p:NN","mate/l:langvokal","mate/p:NN","mate/m:case:acc","mate/m:number:sg","mate/m:gender:masc","<:mate/d:NK$<i>167","<:mate/d:NK$<i>172",">:mate/d:CJ$<i>166","<:mate/d:CC$<i>176","xip/p:NOUN","xip/l:langen","xip/l:Vokal","xip/l:Langenvokal","<>:xip/const:NOUN#1062-1071$<i>174","<:xip/d:DETERM$<i>167","<:xip/d:NMOD$<i>172"],["s:a,","i:a,","_174#1072-1074","opennlp/p:$,"],["s:wie","i:wie","_175#1075-1078","opennlp/p:KOKOM","cnx/l:wie","cnx/p:ADV","cnx/syn:@ADVL","tt/l:wie","tt/p:KOUS","tt/l:wie","tt/p:KOKOM","mate/l:wie","mate/p:PWAV",">:mate/d:CM$<i>176","xip/p:ADV","xip/l:wie","<>:xip/const:ADV#1075-1078$<i>176"],["s:z","i:z","_176#1079-1080","opennlp/p:ADV","cnx/l:z","cnx/p:N","cnx/syn:@NH","<>:cnx/const:np#1079-1080$<i>177","mate/l:z","mate/p:PPER","<:mate/d:CM$<i>175",">:mate/d:CC$<i>173","<>:xip/const:ADV#1079-1084$<i>178"],["s:B.","i:b.","_177#1082-1084","opennlp/p:NN","tt/l:B.","tt/p:NN"],["s:in","i:in","_178#1085-1087","opennlp/p:APPR","cnx/l:in","cnx/p:PREP","cnx/syn:@PREMARK","tt/l:in","tt/p:APPR","mate/l:in","mate/p:APPR","<:mate/d:NK$<i>179","xip/p:PREP","xip/l:in","<>:xip/const:PP#1085-1091$<i>180<b>1","<>:xip/const:PREP#1085-1087$<i>179"],["s:Rat","i:rat","_179#1088-1091","opennlp/p:NN","cnx/l:rat","cnx/p:N","cnx/syn:@NH","<>:cnx/const:np#1088-1091$<i>180","tt/l:Rat","tt/p:NN","mate/l:Rat","mate/p:NN","mate/m:case:acc","mate/m:number:sg","mate/m:gender:masc",">:mate/d:NK$<i>178","xip/p:NOUN","xip/l:Rat","<>:xip/const:NP#1088-1091$<i>180<b>2","<>:xip/const:NPA#1088-1091$<i>180<b>3","<>:xip/const:NOUN#1088-1091$<i>180"],["s:Die","i:die","_180#1093-1096","<>:s#1093-1149$<i>187","<>:p#1093-1149$<i>187","opennlp/p:ART","cnx/l:die","cnx/p:DET","cnx/syn:@PREMOD","tt/l:die","tt/p:ART","mate/l:der","mate/p:ART","mate/m:case:nom","mate/m:number:sg","mate/m:gender:fem",">:mate/d:NK$<i>181","xip/p:DET","xip/l:die","<>:xip/const:TOP#1093-1149$<i>187","<>:xip/const:MC#1093-1148$<i>187<b>1","<>:xip/const:NP#1093-1102$<i>182<b>2","<>:xip/const:DET#1093-1096$<i>181",">:xip/d:DETERM$<i>181"],["s:Länge","i:länge","_181#1097-1102","opennlp/p:NN","cnx/l:länge","cnx/p:N","cnx/syn:@NH","<>:cnx/const:np#1097-1102$<i>182","tt/l:Länge","tt/p:NN","mate/l:länge","mate/p:NN","mate/m:case:nom","mate/m:number:sg","mate/m:gender:fem","<:mate/d:NK$<i>180",">:mate/d:SB$<i>184","<:mate/d:AG$<i>183","xip/p:NOUN","xip/l:Länge","<>:xip/const:NPA#1097-1102$<i>182<b>3","<>:xip/const:NOUN#1097-1102$<i>182","<:xip/d:DETERM$<i>180",">:xip/d:SUBJ$<i>186","<:xip/d:NMOD$<i>183"],["s:des","i:des","_182#1103-1106","opennlp/p:ART","cnx/l:der","cnx/p:DET","cnx/syn:@PREMOD","tt/l:die","tt/p:ART","mate/l:der","mate/p:ART","mate/m:case:gen","mate/m:number:sg","mate/m:gender:neut",">:mate/d:NK$<i>183","xip/p:DET","xip/l:der","<>:xip/const:DET#1103-1106$<i>183","<>:xip/const:NP#1103-1113$<i>184<b>2",">:xip/d:DETERM$<i>183"],["s:Vokals","i:vokals","_183#1107-1113","opennlp/p:NN","cnx/l:vokal","cnx/p:N","cnx/syn:@NH","<>:cnx/const:np#1107-1113$<i>184","tt/l:Vokal","tt/p:NN","mate/l:vokal","mate/p:NN","mate/m:case:gen","mate/m:number:sg","mate/m:gender:neut","<:mate/d:NK$<i>182",">:mate/d:AG$<i>181","xip/p:NOUN","xip/l:Vokal","<>:xip/const:NPA#1107-1113$<i>184<b>3","<>:xip/const:NOUN#1107-1113$<i>184","<:xip/d:DETERM$<i>182",">:xip/d:NMOD$<i>181"],["s:ist","i:ist","_184#1114-1117","opennlp/p:VAFIN","cnx/l:sein","cnx/p:V","cnx/m:IND","cnx/m:PRES","cnx/syn:@AUX","tt/l:sein","tt/p:VAFIN","mate/l:sein","mate/p:VAFIN","mate/m:number:sg","mate/m:person:3","mate/m:tense:pres","mate/m:mood:ind","<:mate/d:SB$<i>181","<:mate/d:PD$<i>186","xip/p:VERB","xip/l:sein","<>:xip/const:VERB#1114-1117$<i>185","<:xip/d:AUXIL$<i>186"],["s:unterschiedlich","i:unterschiedlich","_185#1118-1133","opennlp/p:ADJD","cnx/l:unterschiedlich","cnx/p:A","cnx/syn:@NH","tt/l:unterschiedlich","tt/p:ADJD","mate/l:unterschiedlich","mate/p:ADJD","mate/m:degree:pos",">:mate/d:MO$<i>186","xip/p:ADJ","xip/l:unterschiedlich","<>:xip/const:AP#1118-1133$<i>186<b>2","<>:xip/const:ADJ#1118-1133$<i>186",">:xip/d:VMOD$<i>186"],["s:gekennzeichnet","i:gekennzeichnet","_186#1134-1148","opennlp/p:VVPP","cnx/l:kennzeichnen","cnx/p:V","cnx/m:PCP","cnx/m:PERF","cnx/syn:@MAIN","tt/l:kennzeichnen","tt/p:VVPP","mate/l:kennzeichnen","mate/p:VVPP","<:mate/d:MO$<i>185",">:mate/d:PD$<i>184","xip/p:VERB","xip/l:kennzeichnen","<>:xip/const:VERB#1134-1148$<i>187","<:xip/d:SUBJ$<i>181","<:xip/d:VMOD$<i>185",">:xip/d:AUXIL$<i>184","xip/d:VMAIN"],["s:Langer","i:langer","_187#1150-1156","<>:s#1150-1436$<i>226","<>:p#1150-1163$<i>189","opennlp/p:ADJA","cnx/l:lang","cnx/p:A","cnx/syn:@PREMOD","<>:cnx/const:np#1150-1162$<i>189","tt/l:lang","tt/p:ADJA","mate/l:langer","mate/p:ADJA","mate/m:case:nom","mate/m:number:sg","mate/m:gender:*",">:mate/d:NK$<i>188","xip/p:ADJ","xip/l:lang","<>:xip/const:TOP#1150-1163$<i>189","<>:xip/const:NP#1150-1162$<i>189<b>1","<>:xip/const:NPA#1150-1162$<i>189<b>2","<>:xip/const:AP#1150-1156$<i>188<b>3","<>:xip/const:ADJ#1150-1156$<i>188",">:xip/d:NMOD$<i>188"],["s:Vokal","i:vokal","_188#1157-1162","opennlp/p:NN","cnx/l:vokal","cnx/p:N","cnx/syn:@NH","tt/l:Vokal","tt/p:NN","mate/l:vokal","mate/p:NN","mate/m:case:nom","mate/m:number:sg","mate/m:gender:*","<:mate/d:NK$<i>187","xip/p:NOUN","xip/l:Vokal","<>:xip/const:NOUN#1157-1162$<i>189","<:xip/d:NMOD$<i>187","xip/d:THEMA"],["s:Keine","i:keine","_189#1164-1169","<>:p#1164-1188$<i>192","opennlp/p:PIAT","cnx/l:kein","cnx/p:PRON","cnx/syn:@PREMOD","tt/l:keine","tt/p:PIAT","mate/l:kein","mate/p:PIAT","mate/m:case:nom","mate/m:number:sg","mate/m:gender:fem",">:mate/d:NK$<i>190","xip/p:DET","xip/l:kein","<>:xip/const:TOP#1164-1184$<i>191","<>:xip/const:NP#1164-1183$<i>191<b>1","<>:xip/const:DET#1164-1169$<i>190",">:xip/d:DETERM$<i>190"],["s:Kennzeichnung","i:kennzeichnung","_190#1170-1183","opennlp/p:NN","cnx/l:kenn","cnx/l:zeichnung","cnx/p:N","cnx/syn:@NH","<>:cnx/const:np#1170-1183$<i>191","tt/l:Kennzeichnung","tt/p:NN","mate/l:kennzeichnung","mate/p:NN","mate/m:case:nom","mate/m:number:sg","mate/m:gender:fem","<:mate/d:NK$<i>189","xip/p:NOUN","xip/l:Kennzeichnung","<>:xip/const:NPA#1170-1183$<i>191<b>2","<>:xip/const:NOUN#1170-1183$<i>191","<:xip/d:DETERM$<i>189","xip/d:THEMA"],["s:Rat","i:rat","_191#1185-1188","opennlp/p:NN","cnx/l:rat","cnx/p:N","cnx/syn:@PREMOD","<>:cnx/const:np#1185-1200$<i>193","tt/l:Rat","tt/p:NN","mate/l:Rat","mate/p:NN","mate/m:case:nom","mate/m:number:sg","mate/m:gender:fem","xip/p:NOUN","xip/l:Rat","<>:xip/const:NOUN#1185-1188$<i>192","<>:xip/const:TOP#1185-1212$<i>195","<>:xip/const:NP#1185-1188$<i>192<b>1","<>:xip/const:NPA#1185-1188$<i>192<b>2","xip/d:THEMA"],["s:Verdopplung","i:verdopplung","_192#1189-1200","<>:p#1189-1222$<i>197","opennlp/p:NN","cnx/l:verdopplung","cnx/p:N","cnx/syn:@NH","tt/l:Verdopplung","tt/p:NN","mate/l:verdopplung","mate/p:NN","mate/m:case:nom","mate/m:number:sg","mate/m:gender:fem","<:mate/d:AG$<i>194","<:mate/d:SB$<i>195","xip/p:NOUN","xip/l:Verdoppelung","<>:xip/const:NOUN#1189-1200$<i>193","<>:xip/const:NP#1189-1200$<i>193<b>1","<>:xip/const:NPA#1189-1200$<i>193<b>2","xip/d:THEMA","<:xip/d:NMOD$<i>194"],["s:des","i:des","_193#1201-1204","opennlp/p:ART","cnx/l:der","cnx/p:DET","cnx/syn:@PREMOD","tt/l:die","tt/p:ART","mate/l:der","mate/p:ART","mate/m:case:gen","mate/m:number:sg","mate/m:gender:neut",">:mate/d:NK$<i>194","xip/p:DET","xip/l:der","<>:xip/const:DET#1201-1204$<i>194","<>:xip/const:NP#1201-1211$<i>195<b>1",">:xip/d:DETERM$<i>194"],["s:Vokals","i:vokals","_194#1205-1211","opennlp/p:NN","cnx/l:vokal","cnx/p:N","cnx/syn:@NH","<>:cnx/const:np#1205-1211$<i>195","tt/l:Vokal","tt/p:NN","mate/l:vokal","mate/p:NN","mate/m:case:gen","mate/m:number:sg","mate/m:gender:neut","<:mate/d:NK$<i>193",">:mate/d:AG$<i>192","xip/p:NOUN","xip/l:Vokal","<>:xip/const:NOUN#1205-1211$<i>195","<>:xip/const:NPA#1205-1211$<i>195<b>2","<:xip/d:DETERM$<i>193",">:xip/d:NMOD$<i>192"],["s:Aar","i:aar","_195#1213-1216","opennlp/p:NE","cnx/l:Aar","cnx/p:N","cnx/m:Prop","cnx/syn:@NH","<>:cnx/const:np#1213-1216$<i>196","tt/l:aar","tt/p:NE","tt/l:Aar","tt/p:NN","tt/l:aar","tt/p:XY","mate/l:aar","mate/p:NE","mate/m:case:nom","mate/m:number:sg","mate/m:gender:*",">:mate/d:SB$<i>192","<:mate/d:CJ$<i>196","xip/p:NOUN","xip/l:Aar","<>:xip/const:NOUN#1213-1216$<i>196","<>:xip/const:TOP#1213-1235$<i>199","<>:xip/const:INS#1213-1217$<i>196<b>1","<>:xip/const:NP#1213-1216$<i>196<b>2","<>:xip/const:NPA#1213-1216$<i>196<b>3"],["s:Haar","i:haar","_196#1218-1222","opennlp/p:NN","cnx/l:haar","cnx/p:N","cnx/syn:@NH","<>:cnx/const:np#1218-1222$<i>197","tt/l:Haar","tt/p:NN","mate/l:haar","mate/p:NE","mate/m:case:nom","mate/m:number:sg","mate/m:gender:*",">:mate/d:CJ$<i>195","xip/p:NOUN","xip/l:Haar","<>:xip/const:NOUN#1218-1222$<i>197","<>:xip/const:NP#1218-1234$<i>199<b>1","<>:xip/const:NPA#1218-1234$<i>199<b>2","<>:xip/const:AP#1218-1232$<i>198<b>3","<>:xip/const:NP#1218-1222$<i>197<b>4","<>:xip/const:NPA#1218-1222$<i>197<b>5",">:xip/d:ADJMOD$<i>197"],["s:folgendes","i:folgendes","_197#1223-1232","<>:p#1223-1241$<i>200","opennlp/p:ADJA","cnx/l:folgend","cnx/p:A","cnx/syn:@PREMOD","<>:cnx/const:np#1223-1234$<i>199","tt/l:folgend","tt/p:ADJA","mate/l:folgend","mate/p:ADJA","mate/m:case:nom","mate/m:number:sg","mate/m:gender:neut","mate/m:degree:pos","<:mate/d:--$<i>198","xip/p:ADJ","xip/l:folgen","<>:xip/const:ADJ#1223-1232$<i>198","<:xip/d:ADJMOD$<i>196",">:xip/d:NMOD$<i>198"],["s:h","i:h","_198#1233-1234","opennlp/p:PRF","cnx/l:h","cnx/p:N","cnx/syn:@NH","tt/l:h","tt/p:NN","mate/p:$(",">:mate/d:--$<i>197","xip/p:SYMBOL","xip/l:h","<>:xip/const:NOUN#1233-1234$<i>199<b>3","<>:xip/const:SYMBOL#1233-1234$<i>199","<:xip/d:NMOD$<i>197","xip/d:THEMA"],["s:Bahre","i:bahre","_199#1236-1241","opennlp/p:NN","cnx/l:bahre","cnx/p:N","cnx/syn:@NH","<>:cnx/const:np#1236-1241$<i>200","tt/l:Bahre","tt/p:NN","mate/l:bahr","mate/p:NN","mate/m:case:nom","mate/m:number:sg","mate/m:gender:neut","xip/p:VERB","xip/l:bahren","<>:xip/const:TOP#1236-1255$<i>202","<>:xip/const:MC#1236-1254$<i>202<b>1","<>:xip/const:VERB#1236-1241$<i>200","xip/d:VMAIN","<:xip/d:SUBJ$<i>201"],["s:Kurzer","i:kurzer","_200#1242-1248","<>:p#1242-1255$<i>202","opennlp/p:ADJA","cnx/l:Kurzer","cnx/p:N","cnx/m:Prop","cnx/syn:@PREMOD","<>:cnx/const:np#1242-1254$<i>202","tt/l:kurz","tt/p:ADJA","mate/l:kurzer","mate/p:ADJA","mate/m:case:*","mate/m:number:*","mate/m:gender:*","mate/m:degree:pos",">:mate/d:NK$<i>201","xip/p:ADJ","xip/l:kurz","<>:xip/const:NP#1242-1254$<i>202<b>2","<>:xip/const:NPA#1242-1254$<i>202<b>3","<>:xip/const:AP#1242-1248$<i>201<b>4","<>:xip/const:ADJ#1242-1248$<i>201",">:xip/d:NMOD$<i>201"],["s:Vokal","i:vokal","_201#1249-1254","opennlp/p:NN","cnx/l:Vokal","cnx/p:N","cnx/m:Prop","cnx/syn:@NH","tt/l:Vokal","tt/p:NN","mate/l:vokal","mate/p:NN","mate/m:case:nom","mate/m:number:sg","mate/m:gender:*","<:mate/d:NK$<i>200","xip/p:NOUN","xip/l:Vokal","<>:xip/const:NOUN#1249-1254$<i>202","<:xip/d:NMOD$<i>200",">:xip/d:SUBJ$<i>199"],["s:Keine","i:keine","_202#1256-1261","<>:p#1256-1280$<i>205","opennlp/p:PIAT","cnx/l:kein","cnx/p:PRON","cnx/syn:@PREMOD","tt/l:keine","tt/p:PIAT","mate/l:kein","mate/p:PIAT","mate/m:case:nom","mate/m:number:sg","mate/m:gender:fem",">:mate/d:NK$<i>203","xip/p:DET","xip/l:kein","<>:xip/const:DET#1256-1261$<i>203","<>:xip/const:TOP#1256-1276$<i>204","<>:xip/const:NP#1256-1275$<i>204<b>1",">:xip/d:DETERM$<i>203"],["s:Kennzeichnung","i:kennzeichnung","_203#1262-1275","opennlp/p:NN","cnx/l:kenn","cnx/l:zeichnung","cnx/p:N","cnx/syn:@NH","<>:cnx/const:np#1262-1275$<i>204","tt/l:Kennzeichnung","tt/p:NN","mate/l:kennzeichnung","mate/p:NN","mate/m:case:nom","mate/m:number:sg","mate/m:gender:fem","<:mate/d:NK$<i>202",">:mate/d:OA$<i>204","xip/p:NOUN","xip/l:Kennzeichnung","<>:xip/const:NPA#1262-1275$<i>204<b>2","<>:xip/const:NOUN#1262-1275$<i>204","<:xip/d:DETERM$<i>202","xip/d:THEMA"],["s:hat","i:hat","_204#1277-1280","opennlp/p:VAFIN","cnx/l:haben","cnx/p:V","cnx/m:IND","cnx/m:PRES","cnx/syn:@MAIN","tt/l:haben","tt/p:VAFIN","mate/l:haben","mate/p:VAFIN","mate/m:number:sg","mate/m:person:3","mate/m:tense:pres","mate/m:mood:ind","<:mate/d:OA$<i>203","xip/p:VERB","xip/l:haben","<>:xip/const:VERB#1277-1280$<i>205","<>:xip/const:TOP#1277-1319$<i>209","<>:xip/const:MC#1277-1318$<i>209<b>1","xip/d:VMAIN","<:xip/d:SUBJ$<i>205"],["s:Verdopplung","i:verdopplung","_205#1281-1292","<>:p#1281-1325$<i>210","opennlp/p:NN","cnx/l:verdopplung","cnx/p:N","cnx/syn:@NH","<>:cnx/const:np#1281-1292$<i>206","tt/l:Verdopplung","tt/p:NN","mate/l:verdopplung","mate/p:NN","mate/m:case:nom","mate/m:number:sg","mate/m:gender:fem","<:mate/d:AG$<i>208","xip/p:NOUN","xip/l:Verdoppelung","<>:xip/const:NOUN#1281-1292$<i>206","<>:xip/const:NP#1281-1292$<i>206<b>2","<>:xip/const:NPA#1281-1292$<i>206<b>3",">:xip/d:SUBJ$<i>204","<:xip/d:NMOD$<i>208"],["s:des","i:des","_206#1293-1296","opennlp/p:ART","cnx/l:der","cnx/p:DET","cnx/syn:@PREMOD","tt/l:die","tt/p:ART","mate/l:der","mate/p:ART","mate/m:case:gen","mate/m:number:sg","mate/m:gender:neut",">:mate/d:NK$<i>208","xip/p:DET","xip/l:der","<>:xip/const:DET#1293-1296$<i>207","<>:xip/const:NP#1293-1318$<i>209<b>2",">:xip/d:DETERM$<i>208"],["s:folgenden","i:folgenden","_207#1297-1306","opennlp/p:ADJA","cnx/l:folgend","cnx/p:A","cnx/syn:@PREMOD","<>:cnx/const:np#1297-1318$<i>209","tt/l:folgend","tt/p:ADJA","mate/l:folgend","mate/p:ADJA","mate/m:case:gen","mate/m:number:sg","mate/m:gender:neut","mate/m:degree:pos",">:mate/d:NK$<i>208","xip/p:ADJ","xip/l:folgen","<>:xip/const:ADJ#1297-1306$<i>208","<>:xip/const:NPA#1297-1318$<i>209<b>3","<>:xip/const:AP#1297-1306$<i>208<b>4",">:xip/d:NMOD$<i>208"],["s:Konsonanten","i:konsonanten","_208#1307-1318","opennlp/p:NN","cnx/l:konsonant","cnx/p:N","cnx/syn:@NH","tt/l:Konsonante","tt/p:NN","mate/l:konsonant","mate/p:NN","mate/m:case:gen","mate/m:number:sg","mate/m:gender:neut","<:mate/d:NK$<i>206","<:mate/d:NK$<i>207",">:mate/d:AG$<i>205","xip/p:NOUN","xip/l:Konsonant","<>:xip/const:NOUN#1307-1318$<i>209","<:xip/d:DETERM$<i>206","<:xip/d:NMOD$<i>207",">:xip/d:NMOD$<i>205"],["s:Matte","i:matte","_209#1320-1325","opennlp/p:NE","cnx/l:matte","cnx/p:N","cnx/syn:@NH","<>:cnx/const:np#1320-1325$<i>210","tt/l:Matte","tt/p:NN","tt/l:matt","tt/p:ADJA","mate/l:matte","mate/p:NN","mate/m:case:nom","mate/m:number:sg","mate/m:gender:fem","xip/p:ADJ","xip/l:matt","<>:xip/const:TOP#1320-1355$<i>213","<>:xip/const:NP#1320-1354$<i>213<b>1","<>:xip/const:NPA#1320-1354$<i>213<b>2","<>:xip/const:AP#1320-1325$<i>210<b>3","<>:xip/const:ADJ#1320-1325$<i>210",">:xip/d:NMOD$<i>212"],["s:Mehrere","i:mehrere","_210#1326-1333","<>:p#1326-1362$<i>214","opennlp/p:PIAT","cnx/l:mehrere","cnx/p:PRON","cnx/syn:@PREMOD","tt/l:mehrere","tt/p:PIAT","mate/l:mehrere","mate/p:PIAT","mate/m:case:nom","mate/m:number:pl","mate/m:gender:fem",">:mate/d:NK$<i>212","xip/p:ADJ","xip/l:mehrere","<>:xip/const:AP#1326-1333$<i>211<b>3","<>:xip/const:ADJ#1326-1333$<i>211",">:xip/d:NMOD$<i>212"],["s:folgende","i:folgende","_211#1334-1342","opennlp/p:ADJA","cnx/l:folgend","cnx/p:A","cnx/syn:@PREMOD","<>:cnx/const:np#1334-1354$<i>213","tt/l:folgend","tt/p:ADJA","mate/l:folgend","mate/p:ADJA","mate/m:case:nom","mate/m:number:pl","mate/m:gender:fem","mate/m:degree:pos",">:mate/d:NK$<i>212","xip/p:ADJ","xip/l:folgen","<>:xip/const:AP#1334-1342$<i>212<b>3","<>:xip/const:ADJ#1334-1342$<i>212",">:xip/d:NMOD$<i>212"],["s:Konsonanten","i:konsonanten","_212#1343-1354","opennlp/p:NN","cnx/l:konsonant","cnx/p:N","cnx/syn:@NH","tt/l:Konsonante","tt/p:NN","mate/l:konsonant","mate/p:NN","mate/m:case:nom","mate/m:number:pl","mate/m:gender:fem","<:mate/d:NK$<i>210","<:mate/d:NK$<i>211","xip/p:NOUN","xip/l:Konsonant","<>:xip/const:NOUN#1343-1354$<i>213","<:xip/d:NMOD$<i>209","<:xip/d:NMOD$<i>210","<:xip/d:NMOD$<i>211","xip/d:THEMA"],["s:Matsch","i:matsch","_213#1356-1362","opennlp/p:NE","cnx/l:matsch","cnx/p:N","cnx/syn:@NH","<>:cnx/const:np#1356-1374$<i>217","tt/l:Matsch","tt/p:NN","mate/l:matsch","mate/p:NN","mate/m:case:nom","mate/m:number:sg","mate/m:gender:masc","xip/p:VERB","xip/l:matschen","<>:xip/const:VERB#1356-1362$<i>214","<>:xip/const:TOP#1356-1436$<i>226","<>:xip/const:MC#1356-1374$<i>217<b>1","xip/d:VMAIN","<:xip/d:OBJ$<i>214","<:xip/d:OBJ$<i>216"],["s:Aus","i:aus","_214#1363-1366","<>:p#1363-1436$<i>226","opennlp/p:APPR","cnx/l:aus","cnx/p:PREP","cnx/syn:@POSTMOD","tt/l:aus","tt/p:APPR","mate/l:aus","mate/p:APPR",">:mate/d:MO$<i>217","<:mate/d:NK$<i>216","xip/p:NOUN","xip/l:Au","<>:xip/const:NOUN#1363-1366$<i>215","<>:xip/const:NP#1363-1366$<i>215<b>2","<>:xip/const:NPA#1363-1366$<i>215<b>3",">:xip/d:OBJ$<i>213","xip/d:PERSON"],["s:einem","i:einem","_215#1367-1372","opennlp/p:ART","cnx/l:ein","cnx/p:DET","cnx/syn:@PREMOD","tt/l:eine","tt/p:ART","mate/l:ein","mate/p:ART","mate/m:case:dat","mate/m:number:sg","mate/m:gender:masc",">:mate/d:NK$<i>216","xip/p:DET","xip/l:ein","<>:xip/const:DET#1367-1372$<i>216","<>:xip/const:NP#1367-1374$<i>217<b>2",">:xip/d:DETERM$<i>216"],["s:A","i:a","_216#1373-1374","opennlp/p:NN","cnx/l:A","cnx/p:N","cnx/syn:@NH","tt/l:A","tt/p:NN","mate/p:NN","mate/m:case:dat","mate/m:number:sg","mate/m:gender:masc","<:mate/d:NK$<i>215",">:mate/d:NK$<i>214","xip/p:SYMBOL","xip/l:A","<>:xip/const:SYMBOL#1373-1374$<i>217","<>:xip/const:NPA#1373-1374$<i>217<b>3","<>:xip/const:NOUN#1373-1374$<i>217<b>4","<:xip/d:DETERM$<i>215",">:xip/d:OBJ$<i>213"],["s:kann","i:kann","_217#1375-1379","opennlp/p:VMFIN","cnx/l:können","cnx/p:V","cnx/m:IND","cnx/m:PRES","cnx/syn:@AUX","tt/l:können","tt/p:VMFIN","mate/l:können","mate/p:VMFIN","mate/m:number:sg","mate/m:person:3","mate/m:tense:pres","mate/m:mood:ind","<:mate/d:MO$<i>214","<:mate/d:OC$<i>225","xip/p:VERB","xip/l:können","<>:xip/const:VERB#1375-1379$<i>218","<>:xip/const:MC#1375-1427$<i>225<b>1","xip/d:VMAIN","<:xip/d:REFLEX$<i>218","<:xip/d:SUBJ$<i>223"],["s:sich","i:sich","_218#1380-1384","opennlp/p:PRF","cnx/l:sich","cnx/p:PRON","cnx/syn:@NH","tt/l:er|es|sie","tt/p:PRF","mate/l:sich","mate/p:PRF","mate/m:case:acc","mate/m:number:sg","mate/m:person:3",">:mate/d:OA$<i>225","xip/p:PRON","xip/l:sich","<>:xip/const:PRON#1380-1384$<i>219","<>:xip/const:NP#1380-1384$<i>219<b>2",">:xip/d:REFLEX$<i>217"],["s:unter","i:unter","_219#1385-1390","opennlp/p:APPR","cnx/l:unter","cnx/p:ADV","cnx/syn:@ADVL","tt/l:unter","tt/p:APPR","mate/l:unter","mate/p:APPR",">:mate/d:MO$<i>225","<:mate/d:NK$<i>221","xip/p:PREP","xip/l:unter","<>:xip/const:PREP#1385-1390$<i>220","<>:xip/const:PP#1385-1413$<i>222<b>2"],["s:bestimmten","i:bestimmten","_220#1391-1401","opennlp/p:ADJA","cnx/l:bestimmt","cnx/p:A","cnx/syn:@PREMOD","<>:cnx/const:np#1391-1413$<i>222","tt/l:bestimmt","tt/p:ADJA","mate/l:bestimmt","mate/p:ADJA","mate/m:case:dat","mate/m:number:pl","mate/m:gender:fem","mate/m:degree:pos",">:mate/d:NK$<i>221","xip/p:ADJ","xip/l:bestimmt","<>:xip/const:ADJ#1391-1401$<i>221","<>:xip/const:NP#1391-1413$<i>222<b>3","<>:xip/const:NPA#1391-1413$<i>222<b>4","<>:xip/const:AP#1391-1401$<i>221<b>5",">:xip/d:NMOD$<i>221"],["s:Bedingungen","i:bedingungen","_221#1402-1413","opennlp/p:NN","cnx/l:bedingung","cnx/p:N","cnx/m:PL","cnx/syn:@NH","tt/l:Bedingung","tt/p:NN","mate/l:bedingung","mate/p:NN","mate/m:case:dat","mate/m:number:pl","mate/m:gender:fem","<:mate/d:NK$<i>220",">:mate/d:NK$<i>219","xip/p:NOUN","xip/l:Bedingung","<>:xip/const:NOUN#1402-1413$<i>222","<:xip/d:NMOD$<i>220"],["s:ein","i:ein","_222#1414-1417","opennlp/p:ART","cnx/l:ein","cnx/p:DET","cnx/syn:@PREMOD","tt/l:eine","tt/p:ART","mate/l:ein","mate/p:ART","mate/m:case:acc","mate/m:number:sg","mate/m:gender:neut",">:mate/d:NK$<i>223","xip/p:DET","xip/l:ein","<>:xip/const:DET#1414-1417$<i>223","<>:xip/const:NP#1414-1424$<i>224<b>2",">:xip/d:DETERM$<i>223"],["s:Umlaut","i:umlaut","_223#1418-1424","opennlp/p:NN","cnx/l:umlaut","cnx/p:N","cnx/syn:@NH","<>:cnx/const:np#1418-1424$<i>224","tt/l:Umlaut","tt/p:NN","mate/l:umlaut","mate/p:NN","mate/m:case:acc","mate/m:number:sg","mate/m:gender:neut","<:mate/d:NK$<i>222",">:mate/d:OA$<i>225","xip/p:NOUN","xip/l:Umlaut","<>:xip/const:NOUN#1418-1424$<i>224","<>:xip/const:NPA#1418-1424$<i>224<b>3","<:xip/d:DETERM$<i>222",">:xip/d:SUBJ$<i>217"],["s:\"ä","i:\"ä","_224#1425-1427","opennlp/p:VVFIN","<>:cnx/const:np#1425-1428$<i>225"],["s:bilden","i:bilden","_225#1429-1435","opennlp/p:VVINF","cnx/l:bilden","cnx/p:V","cnx/m:INF","cnx/syn:@MAIN","tt/l:bilden","tt/p:VVFIN","tt/l:bilden","tt/p:VVINF","mate/l:bilden","mate/p:VVINF","<:mate/d:OA$<i>218","<:mate/d:MO$<i>219","<:mate/d:OA$<i>223",">:mate/d:OC$<i>217","xip/p:VERB","xip/l:bilden","<>:xip/const:VERB#1429-1435$<i>226","<>:xip/const:MC#1429-1435$<i>226<b>1"],["s:hat","i:hat","_226#1437-1440","<>:s#1437-1633$<i>253","<>:p#1437-1440$<i>227","opennlp/p:VAFIN","cnx/l:haben","cnx/p:V","cnx/m:IND","cnx/m:PRES","cnx/syn:@MAIN","tt/l:haben","tt/p:VAFIN","mate/l:haben","mate/p:VAFIN","mate/m:number:sg","mate/m:person:3","mate/m:tense:pres","mate/m:mood:ind","xip/p:VERB","xip/l:haben","<>:xip/const:VERB#1437-1440$<i>227","<>:xip/const:TOP#1437-1487$<i>232","<>:xip/const:MC#1437-1440$<i>227<b>1","xip/d:VMAIN"],["s:hätte","i:hätte","_227#1441-1446","<>:p#1441-1446$<i>228","opennlp/p:ADJA","cnx/l:haben","cnx/p:V","cnx/m:SUB","cnx/m:PAST","cnx/syn:@MAIN","tt/l:haben","tt/p:VAFIN","mate/l:haben","mate/p:VAFIN","mate/m:number:sg","mate/m:person:3","mate/m:tense:past","mate/m:mood:subj","xip/p:VERB","xip/l:haben","<>:xip/const:MC#1441-1481$<i>231<b>1","<>:xip/const:VERB#1441-1446$<i>228","xip/d:VMAIN","<:xip/d:OBJ$<i>229"],["s:Abgeleitete","i:abgeleitete","_228#1447-1458","<>:p#1447-1487$<i>232","opennlp/p:NN","cnx/l:abgeleitet","cnx/p:A","cnx/syn:@PREMOD","<>:cnx/const:np#1447-1468$<i>230","tt/l:Abgeleitete","tt/p:NN","mate/l:abgeleitet","mate/p:NE","mate/m:case:nom","mate/m:number:pl","mate/m:gender:neut","mate/m:degree:pos",">:mate/d:PNC$<i>229","xip/p:ADJ","xip/l:ableiten","<>:xip/const:NP#1447-1468$<i>230<b>2","<>:xip/const:NPA#1447-1468$<i>230<b>3","<>:xip/const:AP#1447-1458$<i>229<b>4","<>:xip/const:ADJ#1447-1458$<i>229",">:xip/d:NMOD$<i>229"],["s:Zwielaute","i:zwielaute","_229#1459-1468","opennlp/p:NE","cnx/l:zwie","cnx/l:laut","cnx/p:N","cnx/m:PL","cnx/syn:@NH","tt/p:NN","mate/l:zwielaute","mate/p:NE","mate/m:case:nom","mate/m:number:pl","mate/m:gender:neut","<:mate/d:PNC$<i>228",">:mate/d:PD$<i>231","<:mate/d:PAR$<i>230","xip/p:NOUN","xip/l:Zwielaut","<>:xip/const:NOUN#1459-1468$<i>230","<:xip/d:NMOD$<i>228",">:xip/d:OBJ$<i>227"],["s:Diphthonge","i:diphthonge","_230#1470-1480","opennlp/p:NN","cnx/l:Diphthonge","cnx/p:N","cnx/m:Prop","cnx/syn:@NH","<>:cnx/const:np#1470-1480$<i>231","tt/p:NE","mate/l:diphthonge","mate/p:NN","mate/m:case:nom","mate/m:number:pl","mate/m:gender:neut",">:mate/d:PAR$<i>229","xip/p:NOUN","xip/l:Diphthonge","<>:xip/const:INS#1469-1481$<i>231<b>2","<>:xip/const:NP#1470-1480$<i>231<b>3","<>:xip/const:NPA#1470-1480$<i>231<b>4","<>:xip/const:NOUN#1470-1480$<i>231"],["s:sind","i:sind","_231#1482-1486","opennlp/p:VAFIN","cnx/l:sein","cnx/p:V","cnx/m:IND","cnx/m:PRES","cnx/syn:@MAIN","tt/l:sein","tt/p:VAFIN","mate/l:sein","mate/p:VAFIN","mate/m:number:pl","mate/m:person:3","mate/m:tense:pres","mate/m:mood:ind","<:mate/d:PD$<i>229","xip/p:VERB","xip/l:sein","<>:xip/const:MC#1482-1486$<i>232<b>1","<>:xip/const:VERB#1482-1486$<i>232","xip/d:VMAIN"],["s:au","i:au","_232#1488-1490","<>:p#1488-1497$<i>234","opennlp/p:ADJD","cnx/l:au","cnx/p:INTERJ","cnx/syn:@ADVL","tt/l:au","tt/p:ITJ","mate/l:au","mate/p:APPR","xip/p:ITJ","xip/l:au","<>:xip/const:ITJ#1488-1490$<i>233","<>:xip/const:TOP#1488-1633$<i>253"],["s:Haut","i:haut","_233#1492-1496","opennlp/p:NN","cnx/l:hauen","cnx/p:V","cnx/m:IND","cnx/m:PRES","cnx/syn:@MAIN","tt/l:Haut","tt/p:NN","mate/l:haut","mate/p:NN","mate/m:case:nom","mate/m:number:sg","mate/m:gender:neut","xip/p:NOUN","xip/l:Haut","<>:xip/const:INS#1491-1497$<i>234<b>1","<>:xip/const:NP#1492-1496$<i>234<b>2","<>:xip/const:NPA#1492-1496$<i>234<b>3","<>:xip/const:NOUN#1492-1496$<i>234"],["s:äu","i:äu","_234#1498-1500","<>:p#1498-1508$<i>236","opennlp/p:NN","cnx/l:äu","cnx/p:N","cnx/syn:@NH","<>:cnx/const:np#1498-1500$<i>235","tt/p:NN","tt/p:NE","mate/l:äu","mate/p:XY","xip/p:ADV","xip/l:äu","<>:xip/const:ADV#1498-1500$<i>235"],["s:Häute","i:häute","_235#1502-1507","opennlp/p:NN","cnx/l:haut","cnx/p:N","cnx/m:PL","cnx/syn:@NH","<>:cnx/const:np#1502-1507$<i>236","tt/l:Haut","tt/p:NN","mate/l:häute","mate/p:NN","mate/m:case:nom","mate/m:number:sg","mate/m:gender:fem","xip/p:NOUN","xip/l:Haut","<>:xip/const:NOUN#1502-1507$<i>236","<>:xip/const:INS#1501-1508$<i>236<b>1","<>:xip/const:NP#1502-1507$<i>236<b>2","<>:xip/const:NPA#1502-1507$<i>236<b>3"],["s:2.","i:2.","_236#1509-1511","opennlp/p:ADJA","cnx/l:2.","cnx/p:NUM","cnx/syn:@PREMOD","tt/l:2.","tt/p:ADJA","xip/p:NUM","xip/l:2.","<>:xip/const:NUM#1509-1511$<i>237","<>:xip/const:NP#1509-1520$<i>238<b>1","<>:xip/const:NPA#1509-1520$<i>238<b>2"],["s:Herkunft","i:herkunft","_237#1512-1520","opennlp/p:NN","cnx/l:herkunft","cnx/p:N","cnx/syn:@NH","<>:cnx/const:np#1512-1520$<i>238","tt/l:Herkunft","tt/p:NN","mate/l:herkunft","mate/p:NN","mate/m:case:nom","mate/m:number:sg","mate/m:gender:fem","xip/p:NOUN","xip/l:Herkunft","<>:xip/const:NOUN#1512-1520$<i>238"],["s:Die","i:die","_238#1521-1524","<>:p#1521-2005$<i>310","opennlp/p:ART","cnx/l:die","cnx/p:DET","cnx/syn:@PREMOD","tt/l:die","tt/p:ART","mate/l:der","mate/p:ART","mate/m:case:nom","mate/m:number:sg","mate/m:gender:fem",">:mate/d:NK$<i>244","xip/p:DET","xip/l:die","<>:xip/const:NP#1521-1576$<i>245<b>1","<>:xip/const:DET#1521-1524$<i>239",">:xip/d:DETERM$<i>244"],["s:aus","i:aus","_239#1525-1528","opennlp/p:APPR","cnx/l:aus","cnx/p:PREP","cnx/syn:@PREMARK","tt/l:aus","tt/p:APPR","mate/l:aus","mate/p:APPR",">:mate/d:OP$<i>243","<:mate/d:NK$<i>242","xip/p:PREP","xip/l:aus","<>:xip/const:PREP#1525-1528$<i>240","<>:xip/const:NPA#1525-1576$<i>245<b>2","<>:xip/const:AP#1525-1569$<i>244<b>3","<>:xip/const:PP#1525-1559$<i>243<b>4"],["s:dem","i:dem","_240#1529-1532","opennlp/p:ART","cnx/l:der","cnx/p:DET","cnx/syn:@PREMOD","tt/l:die","tt/p:ART","mate/l:der","mate/p:ART","mate/m:case:dat","mate/m:number:sg","mate/m:gender:neut",">:mate/d:NK$<i>242","xip/p:DET","xip/l:der","<>:xip/const:DET#1529-1532$<i>241","<>:xip/const:NP#1529-1559$<i>243<b>5",">:xip/d:DETERM$<i>242"],["s:proto-semitischen","i:proto-semitischen","_241#1533-1550","opennlp/p:ADJA","corenlp/ne_dewac_175m_600:I-MISC","cnx/l:proto","cnx/l:semitisch","cnx/p:A","cnx/syn:@PREMOD","<>:cnx/const:np#1533-1559$<i>243","tt/p:ADJA","mate/l:proto-semitisch","mate/p:ADJA","mate/m:case:dat","mate/m:number:sg","mate/m:gender:neut","mate/m:degree:pos",">:mate/d:NK$<i>242","xip/p:ADJ","xip/l:proto-semitischen","<>:xip/const:NPA#1533-1559$<i>243<b>6","<>:xip/const:AP#1533-1550$<i>242<b>7","<>:xip/const:ADJ#1533-1550$<i>242",">:xip/d:NMOD$<i>242"],["s:Alphabet","i:alphabet","_242#1551-1559","opennlp/p:NN","cnx/l:alphabet","cnx/p:N","cnx/syn:@NH","tt/l:Alphabet","tt/p:NN","mate/l:alphabet","mate/p:NE","mate/m:case:dat","mate/m:number:sg","mate/m:gender:neut","<:mate/d:NK$<i>240","<:mate/d:NK$<i>241",">:mate/d:NK$<i>239","xip/p:NOUN","xip/l:Alphabet","<>:xip/const:NOUN#1551-1559$<i>243","<:xip/d:DETERM$<i>240","<:xip/d:NMOD$<i>241"],["s:stammende","i:stammende","_243#1560-1569","opennlp/p:ADJA","cnx/l:stammend","cnx/p:A","cnx/syn:@PREMOD","<>:cnx/const:np#1560-1576$<i>245","tt/l:stammend","tt/p:ADJA","mate/l:stammend","mate/p:ADJA","mate/m:case:nom","mate/m:number:sg","mate/m:gender:fem","mate/m:degree:pos","<:mate/d:OP$<i>239",">:mate/d:NK$<i>244","xip/p:ADJ","xip/l:stammen","<>:xip/const:ADJ#1560-1569$<i>244",">:xip/d:NMOD$<i>244"],["s:Urform","i:urform","_244#1570-1576","opennlp/p:NN","cnx/l:ur","cnx/l:form","cnx/p:N","cnx/syn:@NH","tt/l:Urform","tt/p:NN","mate/l:urform","mate/p:NN","mate/m:case:nom","mate/m:number:sg","mate/m:gender:fem","<:mate/d:NK$<i>238","<:mate/d:NK$<i>243",">:mate/d:SB$<i>247","<:mate/d:AG$<i>246","xip/p:NOUN","xip/l:ur","xip/l:Form","xip/l:Urform","<>:xip/const:NOUN#1570-1576$<i>245","<:xip/d:DETERM$<i>238","<:xip/d:NMOD$<i>243"],["s:des","i:des","_245#1577-1580","opennlp/p:ART","cnx/l:der","cnx/p:DET","cnx/syn:@PREMOD","tt/l:die","tt/p:ART","mate/l:der","mate/p:ART","mate/m:case:gen","mate/m:number:sg","mate/m:gender:neut",">:mate/d:NK$<i>246","xip/p:DET","xip/l:der","<>:xip/const:DET#1577-1580$<i>246"],["s:Buchstaben","i:buchstaben","_246#1581-1591","opennlp/p:NN","cnx/l:buchstabe","cnx/p:N","cnx/syn:@NH","<>:cnx/const:np#1581-1591$<i>247","tt/l:Buchstabe","tt/p:NN","mate/l:buchstabe","mate/p:NN","mate/m:case:gen","mate/m:number:sg","mate/m:gender:neut","<:mate/d:NK$<i>245",">:mate/d:AG$<i>244","xip/p:NOUN","xip/l:Buchstabe","<>:xip/const:NOUN#1581-1591$<i>247","<>:xip/const:MC#1581-1632$<i>253<b>1","<>:xip/const:NP#1581-1591$<i>247<b>2","<>:xip/const:NPA#1581-1591$<i>247<b>3",">:xip/d:SUBJ$<i>247"],["s:ist","i:ist","_247#1592-1595","opennlp/p:VAFIN","cnx/l:sein","cnx/p:V","cnx/m:IND","cnx/m:PRES","cnx/syn:@MAIN","tt/l:sein","tt/p:VAFIN","mate/l:sein","mate/p:VAFIN","mate/m:number:sg","mate/m:person:3","mate/m:tense:pres","mate/m:mood:ind","<:mate/d:SB$<i>244","<:mate/d:MO$<i>248","<:mate/d:SB$<i>250","<:mate/d:PD$<i>252","xip/p:VERB","xip/l:sein","<>:xip/const:VERB#1592-1595$<i>248","<:xip/d:SUBJ$<i>246","xip/d:VMAIN","<:xip/d:PRED$<i>248","<:xip/d:PRED$<i>250"],["s:wahrscheinlich","i:wahrscheinlich","_248#1596-1610","opennlp/p:ADJD","cnx/l:wahrscheinlich","cnx/p:A","cnx/syn:@NH","tt/l:wahrscheinlich","tt/p:ADJD","mate/l:wahrscheinlich","mate/p:ADJD","mate/m:degree:pos",">:mate/d:MO$<i>247","xip/p:ADJ","xip/l:wahrscheinlich","<>:xip/const:ADJ#1596-1610$<i>249","<>:xip/const:AP#1596-1610$<i>249<b>2",">:xip/d:PRED$<i>247"],["s:der","i:der","_249#1611-1614","opennlp/p:ART","cnx/l:der","cnx/p:DET","cnx/syn:@PREMOD","tt/l:die","tt/p:ART","mate/l:der","mate/p:ART","mate/m:case:nom","mate/m:number:sg","mate/m:gender:masc",">:mate/d:NK$<i>250","xip/p:DET","xip/l:der","<>:xip/const:NP#1611-1619$<i>251<b>2","<>:xip/const:DET#1611-1614$<i>250",">:xip/d:DETERM$<i>250"],["s:Kopf","i:kopf","_250#1615-1619","opennlp/p:NN","cnx/l:kopf","cnx/p:N","cnx/syn:@NH","<>:cnx/const:np#1615-1619$<i>251","tt/l:Kopf","tt/p:NN","mate/l:kopf","mate/p:NN","mate/m:case:nom","mate/m:number:sg","mate/m:gender:masc","<:mate/d:NK$<i>249",">:mate/d:SB$<i>247","xip/p:NOUN","xip/l:Kopf","<>:xip/const:NOUN#1615-1619$<i>251","<>:xip/const:NPA#1615-1619$<i>251<b>3","<:xip/d:DETERM$<i>249",">:xip/d:PRED$<i>247","<:xip/d:NMOD$<i>252"],["s:eines","i:eines","_251#1620-1625","opennlp/p:ART","cnx/l:ein","cnx/p:DET","cnx/syn:@PREMOD","tt/l:eine","tt/p:ART","mate/l:ein","mate/p:ART","mate/m:case:gen","mate/m:number:sg","mate/m:gender:masc",">:mate/d:NK$<i>252","xip/p:DET","xip/l:ein","<>:xip/const:NP#1620-1632$<i>253<b>2","<>:xip/const:DET#1620-1625$<i>252",">:xip/d:DETERM$<i>252"],["s:Ochsen","i:ochsen","_252#1626-1632","opennlp/p:NN","cnx/l:ochse","cnx/p:N","cnx/syn:@NH","<>:cnx/const:np#1626-1632$<i>253","tt/l:Ochse","tt/p:NN","mate/l:ochse","mate/p:NN","mate/m:case:gen","mate/m:number:sg","mate/m:gender:masc","<:mate/d:NK$<i>251",">:mate/d:PD$<i>247","xip/p:NOUN","xip/l:Ochs","<>:xip/const:NOUN#1626-1632$<i>253","<>:xip/const:NPA#1626-1632$<i>253<b>3","<:xip/d:DETERM$<i>251",">:xip/d:NMOD$<i>250"],["s:Die","i:die","_253#1634-1637","<>:s#1634-1696$<i>262","opennlp/p:ART","cnx/l:die","cnx/p:DET","cnx/syn:@PREMOD","tt/l:die","tt/p:ART","mate/l:der","mate/p:ART","mate/m:case:nom","mate/m:number:pl","mate/m:gender:neut",">:mate/d:NK$<i>254","xip/p:DET","xip/l:die","<>:xip/const:DET#1634-1637$<i>254","<>:xip/const:TOP#1634-1696$<i>262","<>:xip/const:MC#1634-1695$<i>262<b>1","<>:xip/const:NP#1634-1647$<i>255<b>2",">:xip/d:DETERM$<i>254"],["s:Phönizier","i:phönizier","_254#1638-1647","opennlp/p:NN","cnx/l:phönizier","cnx/p:N","cnx/syn:@NH","<>:cnx/const:np#1638-1647$<i>255","tt/l:Phönizier","tt/p:NN","mate/l:phönizier","mate/p:NN","mate/m:case:nom","mate/m:number:pl","mate/m:gender:neut","<:mate/d:NK$<i>253",">:mate/d:SB$<i>255","xip/p:NOUN","xip/l:Phönizier","<>:xip/const:NOUN#1638-1647$<i>255","<>:xip/const:NPA#1638-1647$<i>255<b>3","<:xip/d:DETERM$<i>253","xip/d:PERSON",">:xip/d:SUBJ$<i>255"],["s:gaben","i:gaben","_255#1648-1653","opennlp/p:VVFIN","cnx/l:geben","cnx/p:V","cnx/m:IND","cnx/m:PAST","cnx/syn:@MAIN","tt/l:geben","tt/p:VVFIN","mate/l:geben","mate/p:VVFIN","mate/m:number:pl","mate/m:person:3","mate/m:tense:past","mate/m:mood:ind","<:mate/d:SB$<i>254","<:mate/d:DA$<i>257","<:mate/d:OA$<i>259","xip/p:VERB","xip/l:geben","<>:xip/const:VERB#1648-1653$<i>256","<:xip/d:SUBJ$<i>254","xip/d:VMAIN","<:xip/d:OBJ$<i>257","<:xip/d:OBJ$<i>259"],["s:diesem","i:diesem","_256#1654-1660","opennlp/p:PDAT","cnx/l:dieser","cnx/p:PRON","cnx/syn:@PREMOD","tt/l:diese","tt/p:PDAT","mate/l:dieser","mate/p:PDAT","mate/m:case:dat","mate/m:number:sg","mate/m:gender:masc",">:mate/d:NK$<i>257","xip/p:DET","xip/l:dies","<>:xip/const:DET#1654-1660$<i>257","<>:xip/const:NP#1654-1671$<i>258<b>2",">:xip/d:DETERM$<i>257"],["s:Buchstaben","i:buchstaben","_257#1661-1671","opennlp/p:NN","cnx/l:buchstabe","cnx/p:N","cnx/syn:@NH","<>:cnx/const:np#1661-1671$<i>258","tt/l:Buchstabe","tt/p:NN","mate/l:buchstabe","mate/p:NN","mate/m:case:nom","mate/m:number:pl","mate/m:gender:masc","<:mate/d:NK$<i>256",">:mate/d:DA$<i>255","xip/p:NOUN","xip/l:Buchstabe","<>:xip/const:NPA#1661-1671$<i>258<b>3","<>:xip/const:NOUN#1661-1671$<i>258","<:xip/d:DETERM$<i>256",">:xip/d:OBJ$<i>255"],["s:den","i:den","_258#1672-1675","opennlp/p:ART","cnx/l:die","cnx/p:DET","cnx/syn:@PREMOD","tt/l:die","tt/p:ART","mate/l:der","mate/p:ART","mate/m:case:acc","mate/m:number:sg","mate/m:gender:masc",">:mate/d:NK$<i>259","xip/p:DET","xip/l:der","<>:xip/const:DET#1672-1675$<i>259","<>:xip/const:NP#1672-1681$<i>260<b>2",">:xip/d:DETERM$<i>259"],["s:Namen","i:namen","_259#1676-1681","opennlp/p:NN","cnx/l:Namen","cnx/p:N","cnx/m:Prop","cnx/syn:@PREMOD","<>:cnx/const:np#1676-1687$<i>261","tt/l:Name","tt/p:NN","mate/l:name","mate/p:NN","mate/m:case:acc","mate/m:number:sg","mate/m:gender:masc","<:mate/d:NK$<i>258",">:mate/d:OA$<i>255","<:mate/d:NK$<i>260","<:mate/d:APP$<i>261","xip/p:NOUN","xip/l:Name","<>:xip/const:NOUN#1676-1681$<i>260","<>:xip/const:NPA#1676-1681$<i>260<b>3","<:xip/d:DETERM$<i>258",">:xip/d:OBJ$<i>255","<:xip/d:NMOD$<i>260"],["s:Aleph","i:aleph","_260#1682-1687","opennlp/p:NE","cnx/l:Aleph","cnx/p:N","cnx/m:Prop","cnx/syn:@NH","tt/p:NE","mate/l:aleph","mate/p:NE","mate/m:case:nom","mate/m:number:sg","mate/m:gender:masc",">:mate/d:NK$<i>259","xip/p:NOUN","xip/l:Aleph","<>:xip/const:NOUN#1682-1687$<i>261","<>:xip/const:NP#1682-1687$<i>261<b>2","<>:xip/const:NPA#1682-1687$<i>261<b>3",">:xip/d:NMOD$<i>259"],["s:Ochse","i:ochse","_261#1689-1694","opennlp/p:NN","cnx/l:Ochse","cnx/p:N","cnx/m:Prop","cnx/syn:@NH","<>:cnx/const:np#1689-1694$<i>262","tt/l:Ochse","tt/p:NN","mate/l:ochse","mate/p:NN","mate/m:case:nom","mate/m:number:sg","mate/m:gender:fem",">:mate/d:APP$<i>259","xip/p:NOUN","xip/l:Ochse","<>:xip/const:INS#1688-1695$<i>262<b>2","<>:xip/const:NP#1689-1694$<i>262<b>3","<>:xip/const:NPA#1689-1694$<i>262<b>4","<>:xip/const:NOUN#1689-1694$<i>262"],["s:Im","i:im","_262#1697-1699","<>:s#1697-1868$<i>287","opennlp/p:APPRART","tt/l:im","tt/p:APPRART","mate/l:in","mate/p:APPRART","mate/m:case:dat","mate/m:number:sg","mate/m:gender:masc",">:mate/d:MO$<i>275","<:mate/d:NK$<i>264","xip/p:PREP","xip/l:in","<>:xip/const:PREP#1697-1699$<i>263","<>:xip/const:TOP#1697-1868$<i>287","<>:xip/const:MC#1697-1795$<i>276<b>1","<>:xip/const:PP#1697-1721$<i>265<b>2"],["s:phönizischen","i:phönizischen","_263#1700-1712","opennlp/p:ADJA","cnx/l:phönizisch","cnx/p:A","cnx/syn:@PREMOD","<>:cnx/const:np#1700-1739$<i>268","tt/l:phönizisch","tt/p:ADJA","mate/l:phönizisch","mate/p:ADJA","mate/m:case:dat","mate/m:number:sg","mate/m:gender:masc","mate/m:degree:pos",">:mate/d:NK$<i>264","xip/p:ADJ","xip/l:phönizisch","<>:xip/const:ADJ#1700-1712$<i>264","<>:xip/const:NP#1700-1721$<i>265<b>3","<>:xip/const:NPA#1700-1721$<i>265<b>4","<>:xip/const:AP#1700-1712$<i>264<b>5",">:xip/d:NMOD$<i>264"],["s:Alphabet","i:alphabet","_264#1713-1721","opennlp/p:NE","cnx/l:alphabet","cnx/p:N","cnx/syn:@NH","tt/l:Alphabet","tt/p:NN","mate/l:alphabet","mate/p:NN","mate/m:case:dat","mate/m:number:sg","mate/m:gender:masc","<:mate/d:NK$<i>263",">:mate/d:NK$<i>262","<:mate/d:MNR$<i>265","xip/p:NOUN","xip/l:Alphabet","<>:xip/const:NOUN#1713-1721$<i>265","<:xip/d:NMOD$<i>263"],["s:im","i:im","_265#1722-1724","opennlp/p:APPRART","tt/l:im","tt/p:APPRART","mate/l:in","mate/p:APPRART","mate/m:case:dat","mate/m:number:sg","mate/m:gender:masc",">:mate/d:MNR$<i>264","xip/p:PREP","xip/l:in","<>:xip/const:PP#1722-1739$<i>268<b>2","<>:xip/const:PREP#1722-1724$<i>266"],["s:9.","i:9.","_266#1725-1727","opennlp/p:ADJA","cnx/l:9.","cnx/p:NUM","cnx/m:ORD","cnx/syn:@PREMOD","tt/l:9.","tt/p:ADJA","xip/p:NUM","xip/l:9.","<>:xip/const:NUM#1725-1727$<i>267","<>:xip/const:NP#1725-1739$<i>268<b>3","<>:xip/const:NPA#1725-1739$<i>268<b>4"],["s:Jahrhundert","i:jahrhundert","_267#1728-1739","opennlp/p:NN","cnx/l:jahr","cnx/l:hundert","cnx/p:N","cnx/syn:@NH","tt/l:Jahrhundert","tt/p:NN","mate/l:jahrhundert","mate/p:NN",">:mate/d:MO$<i>268","xip/p:NOUN","xip/l:Jahrhundert","<>:xip/const:NOUN#1728-1739$<i>268"],["s:v","i:v","_268#1740-1741","opennlp/p:ADJD","cnx/l:v","cnx/p:N","cnx/syn:@NH","<>:cnx/const:np#1740-1741$<i>269","mate/l:v","mate/p:ADJD","<:mate/d:MO$<i>267",">:mate/d:PD$<i>270","<:mate/d:CJ$<i>269","<>:xip/const:ADV#1740-1747$<i>270"],["s:Chr","i:chr","_269#1743-1746","opennlp/p:NN","corenlp/ne_dewac_175m_600:I-PER","corenlp/ne_hgc_175m_600:I-PER","cnx/l:chr","cnx/p:N","cnx/syn:@NH","<>:cnx/const:np#1743-1746$<i>270","mate/l:chr","mate/p:NE",">:mate/d:CJ$<i>268"],["s:war","i:war","_270#1748-1751","opennlp/p:VAFIN","cnx/l:sein","cnx/p:V","cnx/m:IND","cnx/m:PAST","cnx/syn:@MAIN","tt/l:sein","tt/p:VAFIN","mate/l:sein","mate/p:VAFIN","mate/m:number:sg","mate/m:person:3","mate/m:tense:past","mate/m:mood:ind","<:mate/d:PD$<i>268","<:mate/d:SB$<i>272","<:mate/d:OC$<i>275","<:mate/d:CJ$<i>280","xip/p:VERB","xip/l:sein","<>:xip/const:VERB#1748-1751$<i>271","<:xip/d:AUXIL$<i>275"],["s:das","i:das","_271#1752-1755","opennlp/p:ART","cnx/l:das","cnx/p:DET","cnx/syn:@PREMOD","tt/l:die","tt/p:ART","mate/l:der","mate/p:ART","mate/m:case:nom","mate/m:number:sg","mate/m:gender:neut",">:mate/d:NK$<i>272","xip/p:DET","xip/l:das","<>:xip/const:NP#1752-1770$<i>273<b>2","<>:xip/const:DET#1752-1755$<i>272",">:xip/d:DETERM$<i>272"],["s:Schriftzeichen","i:schriftzeichen","_272#1756-1770","opennlp/p:NN","cnx/l:schrift","cnx/l:zeichen","cnx/p:N","cnx/syn:@NH","<>:cnx/const:np#1756-1770$<i>273","tt/l:Schriftzeichen","tt/p:NN","mate/l:schriftzeichen","mate/p:NN","mate/m:case:nom","mate/m:number:sg","mate/m:gender:neut","<:mate/d:NK$<i>271",">:mate/d:SB$<i>270","xip/p:NOUN","xip/l:Schrift","xip/l:Zeichen","xip/l:Schriftzeichen","<>:xip/const:NPA#1756-1770$<i>273<b>3","<>:xip/const:NOUN#1756-1770$<i>273","<:xip/d:DETERM$<i>271",">:xip/d:SUBJ$<i>275"],["s:bereits","i:bereits","_273#1771-1778","opennlp/p:ADV","cnx/l:bereits","cnx/p:ADV","cnx/syn:@ADVL","tt/l:bereits","tt/p:ADV","mate/l:bereits","mate/p:ADV",">:mate/d:MO$<i>275","xip/p:ADV","xip/l:bereits","<>:xip/const:AP#1771-1784$<i>275<b>2","<>:xip/const:ADV#1771-1778$<i>274",">:xip/d:ADJMOD$<i>274"],["s:stark","i:stark","_274#1779-1784","opennlp/p:ADJD","cnx/l:stark","cnx/p:A","cnx/syn:@NH","tt/l:stark","tt/p:ADJD","mate/l:stark","mate/p:ADJD","mate/m:degree:pos",">:mate/d:MO$<i>275","xip/p:ADJ","xip/l:stark","<>:xip/const:ADJ#1779-1784$<i>275","<:xip/d:ADJMOD$<i>273"],["s:stilisiert","i:stilisiert","_275#1785-1795","opennlp/p:VVPP","cnx/l:stilisieren","cnx/p:V","cnx/m:PCP","cnx/m:PERF","cnx/syn:@MAIN","tt/l:stilisieren","tt/p:VVPP","mate/l:stilisieren","mate/p:VVPP","<:mate/d:MO$<i>262","<:mate/d:MO$<i>273","<:mate/d:MO$<i>274",">:mate/d:OC$<i>270","xip/p:VERB","xip/l:stilisieren","<>:xip/const:VERB#1785-1795$<i>276","<:xip/d:SUBJ$<i>272",">:xip/d:AUXIL$<i>270","xip/d:VMAIN"],["s:die","i:die","_276#1797-1800","opennlp/p:ART","cnx/l:die","cnx/p:DET","cnx/syn:@PREMOD","tt/l:die","tt/p:ART","tt/l:die","tt/p:PRELS","mate/l:der","mate/p:ART","mate/m:case:nom","mate/m:number:pl","mate/m:gender:masc",">:mate/d:NK$<i>277","xip/p:DET","xip/l:die","<>:xip/const:MC#1797-1844$<i>284<b>1","<>:xip/const:NP#1797-1807$<i>278<b>2","<>:xip/const:DET#1797-1800$<i>277",">:xip/d:DETERM$<i>277"],["s:Hörner","i:hörner","_277#1801-1807","opennlp/p:NN","cnx/l:horn","cnx/p:N","cnx/m:PL","cnx/syn:@NH","<>:cnx/const:np#1801-1807$<i>278","tt/l:Horn","tt/p:NN","mate/l:horn","mate/p:NN","mate/m:case:nom","mate/m:number:pl","mate/m:gender:masc","<:mate/d:NK$<i>276",">:mate/d:SB$<i>280","<:mate/d:AG$<i>279","xip/p:NOUN","xip/l:Hörner","<>:xip/const:NOUN#1801-1807$<i>278","<>:xip/const:NPA#1801-1807$<i>278<b>3","<:xip/d:DETERM$<i>276",">:xip/d:SUBJ$<i>280","<:xip/d:NMOD$<i>279"],["s:des","i:des","_278#1808-1811","opennlp/p:ART","cnx/l:der","cnx/p:DET","cnx/syn:@PREMOD","tt/l:die","tt/p:ART","mate/l:der","mate/p:ART","mate/m:case:gen","mate/m:number:sg","mate/m:gender:masc",">:mate/d:NK$<i>279","xip/p:DET","xip/l:der","<>:xip/const:NP#1808-1818$<i>280<b>2","<>:xip/const:DET#1808-1811$<i>279",">:xip/d:DETERM$<i>279"],["s:Ochsen","i:ochsen","_279#1812-1818","opennlp/p:NN","cnx/l:ochse","cnx/p:N","cnx/syn:@NH","<>:cnx/const:np#1812-1818$<i>280","tt/l:Ochse","tt/p:NN","mate/l:ochse","mate/p:NN","mate/m:case:gen","mate/m:number:sg","mate/m:gender:masc","<:mate/d:NK$<i>278",">:mate/d:AG$<i>277","xip/p:NOUN","xip/l:Ochs","<>:xip/const:NPA#1812-1818$<i>280<b>3","<>:xip/const:NOUN#1812-1818$<i>280","<:xip/d:DETERM$<i>278",">:xip/d:NMOD$<i>277"],["s:wurden","i:wurden","_280#1819-1825","opennlp/p:VAFIN","cnx/l:werden","cnx/p:V","cnx/m:IND","cnx/m:PAST","cnx/syn:@AUX","tt/l:werden","tt/p:VAFIN","mate/l:werden","mate/p:VAFIN","mate/m:number:pl","mate/m:person:3","mate/m:tense:past","mate/m:mood:ind","<:mate/d:SB$<i>277",">:mate/d:CJ$<i>270","<:mate/d:OC$<i>286","xip/p:VERB","xip/l:werden","<>:xip/const:VERB#1819-1825$<i>281","<:xip/d:SUBJ$<i>277","xip/d:VMAIN"],["s:durch","i:durch","_281#1826-1831","opennlp/p:APPR","cnx/l:durch","cnx/p:PREP","cnx/syn:@PREMARK","tt/l:durch","tt/p:APPR","mate/l:durch","mate/p:APPR",">:mate/d:MO$<i>286","<:mate/d:NK$<i>283","xip/p:PREP","xip/l:durch","<>:xip/const:PP#1826-1844$<i>284<b>2","<>:xip/const:PREP#1826-1831$<i>282"],["s:zwei","i:zwei","_282#1832-1836","opennlp/p:CARD","cnx/l:zwei","cnx/p:NUM","cnx/syn:@PREMOD","tt/l:zwei","tt/p:CARD","mate/l:zwei","mate/p:CARD",">:mate/d:NK$<i>283","xip/p:NUM","xip/l:zwei","<>:xip/const:NP#1832-1844$<i>284<b>3","<>:xip/const:NPA#1832-1844$<i>284<b>4","<>:xip/const:NUM#1832-1836$<i>283<b>5","<>:xip/const:NUM#1832-1836$<i>283",">:xip/d:NMOD$<i>283"],["s:Striche","i:striche","_283#1837-1844","opennlp/p:NN","cnx/l:strich","cnx/p:N","cnx/m:PL","cnx/syn:@NH","<>:cnx/const:np#1837-1844$<i>284","tt/l:Strich","tt/p:NN","mate/l:strich","mate/p:NN","mate/m:case:nom","mate/m:number:pl","mate/m:gender:masc","<:mate/d:NK$<i>282",">:mate/d:NK$<i>281","xip/p:NOUN","xip/l:Strich","<>:xip/const:NOUN#1837-1844$<i>284","<:xip/d:NMOD$<i>282"],["s:nach","i:nach","_284#1845-1849","opennlp/p:APPR","cnx/l:nach","cnx/p:PREP","cnx/syn:@PREMARK","tt/l:nach","tt/p:APPR","tt/l:nach","tt/p:APPO","mate/l:nach","mate/p:APPR",">:mate/d:MO$<i>286","<:mate/d:NK$<i>285","xip/p:POSTP","xip/l:nach","<>:xip/const:POSTP#1845-1849$<i>285"],["s:rechts","i:rechts","_285#1850-1856","opennlp/p:ADV","cnx/l:rechts","cnx/p:ADV","cnx/syn:@ADVL","tt/l:rechts","tt/p:ADV","mate/l:rechts","mate/p:ADV",">:mate/d:NK$<i>284","xip/p:ADV","xip/l:rechts","<>:xip/const:ADV#1850-1856$<i>286"],["s:angedeutet","i:angedeutet","_286#1857-1867","opennlp/p:VVPP","cnx/l:andeuten","cnx/p:V","cnx/m:PCP","cnx/m:PERF","cnx/syn:@MAIN","tt/l:andeuten","tt/p:VVPP","mate/l:andeuten","mate/p:VVPP","<:mate/d:MO$<i>281","<:mate/d:MO$<i>284",">:mate/d:OC$<i>280","xip/p:VERB","xip/l:andeuten","<>:xip/const:VERB#1857-1867$<i>287"],["s:Der","i:der","_287#1869-1872","<>:s#1869-2005$<i>310","opennlp/p:ART","cnx/l:der","cnx/p:DET","cnx/syn:@PREMOD","tt/l:die","tt/p:ART","mate/l:der","mate/p:ART","mate/m:case:nom","mate/m:number:sg","mate/m:gender:masc",">:mate/d:NK$<i>288","xip/p:DET","xip/l:der","<>:xip/const:DET#1869-1872$<i>288","<>:xip/const:TOP#1869-1931$<i>298","<>:xip/const:MC#1869-1930$<i>298<b>1","<>:xip/const:NP#1869-1881$<i>289<b>2",">:xip/d:DETERM$<i>288"],["s:Lautwert","i:lautwert","_288#1873-1881","opennlp/p:NN","cnx/l:laut","cnx/l:wert","cnx/p:N","cnx/syn:@NH","<>:cnx/const:np#1873-1881$<i>289","tt/l:Lautwert","tt/p:NN","mate/l:lautwert","mate/p:NN","mate/m:case:nom","mate/m:number:sg","mate/m:gender:masc","<:mate/d:NK$<i>287",">:mate/d:SB$<i>294","<:mate/d:AG$<i>290","xip/p:NOUN","xip/l:lauten","xip/l:Wert","xip/l:Lautenwert","<>:xip/const:NPA#1873-1881$<i>289<b>3","<>:xip/const:NOUN#1873-1881$<i>289","<:xip/d:DETERM$<i>287",">:xip/d:SUBJ$<i>294","<:xip/d:NMOD$<i>290"],["s:des","i:des","_289#1882-1885","opennlp/p:ART","cnx/l:der","cnx/p:DET","cnx/syn:@PREMOD","tt/l:die","tt/p:ART","mate/l:der","mate/p:ART","mate/m:case:gen","mate/m:number:sg","mate/m:gender:neut",">:mate/d:NK$<i>290","xip/p:DET","xip/l:der","<>:xip/const:DET#1882-1885$<i>290","<>:xip/const:NP#1882-1891$<i>291<b>2",">:xip/d:DETERM$<i>290"],["s:Aleph","i:aleph","_290#1886-1891","opennlp/p:NE","cnx/l:aleph","cnx/p:N","cnx/syn:@NH","<>:cnx/const:np#1886-1910$<i>294","tt/p:NN","tt/p:NE","mate/l:aleph","mate/p:NN","mate/m:case:gen","mate/m:number:sg","mate/m:gender:neut","<:mate/d:NK$<i>289",">:mate/d:AG$<i>288","<:mate/d:MNR$<i>291","xip/p:NOUN","xip/l:Aleph","<>:xip/const:NPA#1886-1891$<i>291<b>3","<>:xip/const:NOUN#1886-1891$<i>291","<:xip/d:DETERM$<i>289",">:xip/d:NMOD$<i>288"],["s:bei","i:bei","_291#1892-1895","opennlp/p:APPR","cnx/l:bei","cnx/p:PREP","cnx/syn:@POSTMOD","tt/l:bei","tt/p:APPR","mate/l:bei","mate/p:APPR",">:mate/d:MNR$<i>290","<:mate/d:NK$<i>293","xip/p:PREP","xip/l:bei","<>:xip/const:PREP#1892-1895$<i>292","<>:xip/const:PP#1892-1910$<i>294<b>2"],["s:den","i:den","_292#1896-1899","opennlp/p:ART","cnx/l:die","cnx/p:DET","cnx/syn:@PREMOD","tt/l:die","tt/p:ART","mate/l:der","mate/p:ART","mate/m:case:dat","mate/m:number:pl","mate/m:gender:masc",">:mate/d:NK$<i>293","xip/p:DET","xip/l:der","<>:xip/const:DET#1896-1899$<i>293","<>:xip/const:NP#1896-1910$<i>294<b>3",">:xip/d:DETERM$<i>293"],["s:Phöniziern","i:phöniziern","_293#1900-1910","opennlp/p:NN","cnx/l:phönizier","cnx/p:N","cnx/m:PL","cnx/syn:@NH","tt/l:Phönizier","tt/p:NN","mate/l:phönizier","mate/p:NN","mate/m:case:dat","mate/m:number:pl","mate/m:gender:masc","<:mate/d:NK$<i>292",">:mate/d:NK$<i>291","xip/p:NOUN","xip/l:Phönizier","<>:xip/const:NOUN#1900-1910$<i>294","<>:xip/const:NPA#1900-1910$<i>294<b>4","<:xip/d:DETERM$<i>292","xip/d:PERSON"],["s:war","i:war","_294#1911-1914","opennlp/p:VAFIN","cnx/l:sein","cnx/p:V","cnx/m:IND","cnx/m:PAST","cnx/syn:@MAIN","tt/l:sein","tt/p:VAFIN","mate/l:sein","mate/p:VAFIN","mate/m:number:sg","mate/m:person:3","mate/m:tense:past","mate/m:mood:ind","<:mate/d:SB$<i>288","<:mate/d:PD$<i>296","xip/p:VERB","xip/l:sein","<>:xip/const:VERB#1911-1914$<i>295","<:xip/d:SUBJ$<i>288","xip/d:VMAIN","<:xip/d:PRED$<i>295","<:xip/d:PRED$<i>296","<:xip/d:PRED$<i>297"],["s:der","i:der","_295#1915-1918","opennlp/p:ART","cnx/l:der","cnx/p:DET","cnx/syn:@PREMOD","tt/l:die","tt/p:ART","mate/l:der","mate/p:ART","mate/m:case:nom","mate/m:number:sg","mate/m:gender:masc",">:mate/d:NK$<i>296","xip/p:PRON","xip/l:der","<>:xip/const:PRON#1915-1918$<i>296","<>:xip/const:NP#1915-1918$<i>296<b>2",">:xip/d:PRED$<i>294"],["s:Knacklaut","i:knacklaut","_296#1919-1928","opennlp/p:NN","cnx/l:knack","cnx/l:laut","cnx/p:N","cnx/syn:@NH","<>:cnx/const:np#1919-1928$<i>297","tt/l:Knacklaut","tt/p:NN","mate/l:knacklaut","mate/p:NN","mate/m:case:nom","mate/m:number:sg","mate/m:gender:masc","<:mate/d:NK$<i>295",">:mate/d:PD$<i>294","<:mate/d:--$<i>297","xip/p:ADJ","xip/l:knacken","xip/l:laut","xip/l:knackenlaut","<>:xip/const:AP#1919-1928$<i>297<b>2","<>:xip/const:ADJ#1919-1928$<i>297",">:xip/d:PRED$<i>294"],["s:ʔ","i:ʔ","_297#1929-1930","opennlp/p:NE","cnx/l:ʔ","tt/p:$.","mate/p:$.",">:mate/d:--$<i>296","xip/p:SYMBOL","xip/l:ʔ","<>:xip/const:SYMBOL#1929-1930$<i>298","<>:xip/const:NP#1929-1930$<i>298<b>2","<>:xip/const:NPA#1929-1930$<i>298<b>3","<>:xip/const:NOUN#1929-1930$<i>298<b>4",">:xip/d:PRED$<i>294"],["s:Bereits","i:bereits","_298#1932-1939","opennlp/p:ADV","cnx/l:bereits","cnx/p:ADV","cnx/syn:@ADVL","tt/l:bereits","tt/p:ADV","mate/l:bereits","mate/p:ADV",">:mate/d:MO$<i>299","xip/p:ADV","xip/l:bereits","<>:xip/const:ADV#1932-1939$<i>299","<>:xip/const:TOP#1932-2005$<i>310","<>:xip/const:MC#1932-2004$<i>310<b>1",">:xip/d:VMOD$<i>302"],["s:bei","i:bei","_299#1940-1943","opennlp/p:APPR","cnx/l:bei","cnx/p:PREP","cnx/syn:@PREMARK","tt/l:bei","tt/p:APPR","mate/l:bei","mate/p:APPR","<:mate/d:MO$<i>298",">:mate/d:MO$<i>302","<:mate/d:NK$<i>301","xip/p:PREP","xip/l:bei","<>:xip/const:PREP#1940-1943$<i>300","<>:xip/const:PP#1940-1958$<i>302<b>2"],["s:den","i:den","_300#1944-1947","opennlp/p:ART","cnx/l:die","cnx/p:DET","cnx/syn:@PREMOD","tt/l:die","tt/p:ART","mate/l:der","mate/p:ART","mate/m:case:dat","mate/m:number:pl","mate/m:gender:masc",">:mate/d:NK$<i>301","xip/p:DET","xip/l:der","<>:xip/const:NP#1944-1958$<i>302<b>3","<>:xip/const:DET#1944-1947$<i>301",">:xip/d:DETERM$<i>301"],["s:Phöniziern","i:phöniziern","_301#1948-1958","opennlp/p:NN","cnx/l:phönizier","cnx/p:N","cnx/m:PL","cnx/syn:@NH","<>:cnx/const:np#1948-1958$<i>302","tt/l:Phönizier","tt/p:NN","mate/l:phönizier","mate/p:NN","mate/m:case:dat","mate/m:number:pl","mate/m:gender:masc","<:mate/d:NK$<i>300",">:mate/d:NK$<i>299","xip/p:NOUN","xip/l:Phönizier","<>:xip/const:NPA#1948-1958$<i>302<b>4","<>:xip/const:NOUN#1948-1958$<i>302","<:xip/d:DETERM$<i>300","xip/d:PERSON"],["s:hatte","i:hatte","_302#1959-1964","opennlp/p:VAFIN","cnx/l:haben","cnx/p:V","cnx/m:IND","cnx/m:PAST","cnx/syn:@MAIN","tt/l:haben","tt/p:VAFIN","mate/l:haben","mate/p:VAFIN","mate/m:number:sg","mate/m:person:3","mate/m:tense:past","mate/m:mood:ind","<:mate/d:MO$<i>299","<:mate/d:SB$<i>303","<:mate/d:OC$<i>309","xip/p:VERB","xip/l:haben","<>:xip/const:VERB#1959-1964$<i>303","<:xip/d:VMOD$<i>298","xip/d:VMAIN","<:xip/d:SUBJ$<i>303","<:xip/d:OBJ$<i>306","<:xip/d:VPREF$<i>309"],["s:Aleph","i:aleph","_303#1965-1970","opennlp/p:NE","cnx/l:Aleph","cnx/p:N","cnx/m:Prop","cnx/syn:@NH","<>:cnx/const:np#1965-1970$<i>304","tt/p:NE","tt/p:NN","mate/l:aleph","mate/p:NE","mate/m:case:nom","mate/m:number:sg","mate/m:gender:masc",">:mate/d:SB$<i>302","xip/p:NOUN","xip/l:Aleph","<>:xip/const:NP#1965-1970$<i>304<b>2","<>:xip/const:NPA#1965-1970$<i>304<b>3","<>:xip/const:NOUN#1965-1970$<i>304",">:xip/d:SUBJ$<i>302"],["s:die","i:die","_304#1971-1974","opennlp/p:ART","cnx/l:die","cnx/p:DET","cnx/syn:@PREMOD","tt/l:die","tt/p:ART","mate/l:der","mate/p:ART","mate/m:case:acc","mate/m:number:sg","mate/m:gender:fem",">:mate/d:NK$<i>306","xip/p:DET","xip/l:die","<>:xip/const:DET#1971-1974$<i>305","<>:xip/const:NP#1971-1987$<i>307<b>2",">:xip/d:DETERM$<i>306"],["s:erste","i:erste","_305#1975-1980","opennlp/p:ADJA","cnx/l:erste","cnx/p:NUM","cnx/m:ORD","cnx/syn:@PREMOD","<>:cnx/const:np#1975-1999$<i>309","tt/l:erst","tt/p:ADJA","mate/l:erster","mate/p:ADJA","mate/m:case:acc","mate/m:number:sg","mate/m:gender:fem","mate/m:degree:pos",">:mate/d:NK$<i>306","xip/p:ADJ","xip/l:ein","<>:xip/const:NPA#1975-1987$<i>307<b>3","<>:xip/const:AP#1975-1980$<i>306<b>4","<>:xip/const:ADJ#1975-1980$<i>306",">:xip/d:NMOD$<i>306"],["s:Stelle","i:stelle","_306#1981-1987","opennlp/p:NN","cnx/l:stelle","cnx/p:N","cnx/syn:@NH","tt/l:Stelle","tt/p:NN","mate/l:stelle","mate/p:NN","mate/m:case:acc","mate/m:number:sg","mate/m:gender:fem","<:mate/d:NK$<i>304","<:mate/d:NK$<i>305",">:mate/d:DA$<i>309","<:mate/d:MNR$<i>307","xip/p:NOUN","xip/l:Stelle","<>:xip/const:NOUN#1981-1987$<i>307","<:xip/d:DETERM$<i>304","<:xip/d:NMOD$<i>305",">:xip/d:OBJ$<i>302"],["s:im","i:im","_307#1988-1990","opennlp/p:APPRART","tt/l:im","tt/p:APPRART","mate/l:in","mate/p:APPRART","mate/m:case:dat","mate/m:number:sg","mate/m:gender:neut",">:mate/d:MNR$<i>306","<:mate/d:NK$<i>308","xip/p:PREP","xip/l:in","<>:xip/const:PREP#1988-1990$<i>308","<>:xip/const:PP#1988-1999$<i>309<b>2"],["s:Alphabet","i:alphabet","_308#1991-1999","opennlp/p:NN","cnx/l:alphabet","cnx/p:N","cnx/syn:@NH","tt/l:Alphabet","tt/p:NN","mate/l:alphabet","mate/p:NN","mate/m:case:dat","mate/m:number:sg","mate/m:gender:neut",">:mate/d:NK$<i>307","xip/p:NOUN","xip/l:Alphabet","<>:xip/const:NOUN#1991-1999$<i>309","<>:xip/const:NP#1991-1999$<i>309<b>3","<>:xip/const:NPA#1991-1999$<i>309<b>4"],["s:inne","i:inne","_309#2000-2004","opennlp/p:PTKVZ","cnx/l:inne","cnx/p:ADV","cnx/syn:@ADVL","tt/l:inne","tt/p:PTKVZ","mate/l:inne","mate/p:PTKVZ","<:mate/d:DA$<i>306",">:mate/d:OC$<i>302","xip/p:PTCL","xip/l:inne","<>:xip/const:PTCL#2000-2004$<i>310",">:xip/d:VPREF$<i>302"],["s:Als","i:als","_310#2006-2009","<>:s#2006-2123$<i>329","<>:p#2006-2583$<i>396","opennlp/p:APPR","cnx/l:als","cnx/p:PREP","cnx/syn:@PREMARK","tt/l:als","tt/p:KOKOM","tt/l:als","tt/p:KOUS","mate/l:als","mate/p:KOUS",">:mate/d:CP$<i>316","xip/p:CONJ","xip/l:als","<>:xip/const:CONJ#2006-2009$<i>311","<>:xip/const:TOP#2006-2123$<i>329"],["s:die","i:die","_311#2010-2013","opennlp/p:ART","cnx/l:die","cnx/p:DET","cnx/syn:@PREMOD","tt/l:die","tt/p:ART","mate/l:der","mate/p:ART","mate/m:case:nom","mate/m:number:pl","mate/m:gender:fem",">:mate/d:NK$<i>312","xip/p:DET","xip/l:die","<>:xip/const:NP#2010-2022$<i>313<b>1","<>:xip/const:DET#2010-2013$<i>312",">:xip/d:DETERM$<i>312"],["s:Griechen","i:griechen","_312#2014-2022","opennlp/p:NN","cnx/l:Grieche","cnx/p:N","cnx/m:PL","cnx/syn:@NH","<>:cnx/const:np#2014-2022$<i>313","tt/l:Grieche","tt/p:NN","mate/l:grieche","mate/p:NN","mate/m:case:nom","mate/m:number:pl","mate/m:gender:fem","<:mate/d:NK$<i>311",">:mate/d:SB$<i>316","<:mate/d:AG$<i>315","xip/p:NOUN","xip/l:Grieche","<>:xip/const:NPA#2014-2022$<i>313<b>2","<>:xip/const:NOUN#2014-2022$<i>313","<:xip/d:DETERM$<i>311","xip/d:PERSON","xip/d:THEMA"],["s:das","i:das","_313#2023-2026","opennlp/p:ART","cnx/l:das","cnx/p:PRON","cnx/syn:@NH","tt/l:die","tt/p:ART","mate/l:der","mate/p:ART","mate/m:case:acc","mate/m:number:sg","mate/m:gender:neut",">:mate/d:NK$<i>315","xip/p:DET","xip/l:das","<>:xip/const:DET#2023-2026$<i>314","<>:xip/const:NP#2023-2047$<i>316<b>1",">:xip/d:DETERM$<i>315"],["s:Phönizische","i:phönizische","_314#2027-2038","opennlp/p:NN","cnx/l:phönizische","cnx/p:N","cnx/syn:@PREMOD","<>:cnx/const:np#2027-2047$<i>316","tt/l:Phönizische","tt/p:NN","mate/l:phönizisch","mate/p:ADJA","mate/m:case:acc","mate/m:number:sg","mate/m:gender:neut","mate/m:degree:pos",">:mate/d:NK$<i>315","xip/p:ADJ","xip/l:phönizisch","<>:xip/const:ADJ#2027-2038$<i>315","<>:xip/const:NPA#2027-2047$<i>316<b>2","<>:xip/const:AP#2027-2038$<i>315<b>3",">:xip/d:NMOD$<i>315"],["s:Alphabet","i:alphabet","_315#2039-2047","opennlp/p:NE","cnx/l:alphabet","cnx/p:N","cnx/syn:@NH","tt/l:Alphabet","tt/p:NN","mate/l:alphabet","mate/p:NE","mate/m:case:acc","mate/m:number:sg","mate/m:gender:neut","<:mate/d:NK$<i>313","<:mate/d:NK$<i>314",">:mate/d:AG$<i>312","xip/p:NOUN","xip/l:Alphabet","<>:xip/const:NOUN#2039-2047$<i>316","<:xip/d:DETERM$<i>313","<:xip/d:NMOD$<i>314","xip/d:THEMA"],["s:übernamen","i:übernamen","_316#2048-2057","opennlp/p:VVFIN","cnx/l:über","cnx/l:name","cnx/p:N","cnx/syn:@NH","<>:cnx/const:np#2048-2057$<i>317","tt/p:VVINF","tt/p:VVFIN","tt/p:ADJD","mate/l:übernamen","mate/p:VVFIN","<:mate/d:CP$<i>310","<:mate/d:SB$<i>312",">:mate/d:MO$<i>317","xip/p:ADV","xip/l:übernamen","<>:xip/const:ADV#2048-2057$<i>317"],["s:drehten","i:drehten","_317#2059-2066","opennlp/p:VVFIN","cnx/l:drehen","cnx/p:V","cnx/m:IND","cnx/m:PAST","cnx/syn:@MAIN","tt/l:drehen","tt/p:VVFIN","mate/l:drehen","mate/p:VVFIN","mate/m:number:pl","mate/m:person:3","mate/m:tense:past","mate/m:mood:ind","<:mate/d:MO$<i>316","<:mate/d:OA$<i>318","<:mate/d:SB$<i>320","<:mate/d:MO$<i>321","<:mate/d:CD$<i>324","xip/p:VERB","xip/l:drehen","<>:xip/const:MC#2059-2093$<i>324<b>1","<>:xip/const:VERB#2059-2066$<i>318","xip/d:VMAIN","<:xip/d:SUBJ$<i>318","<:xip/d:OBJ$<i>320","<:xip/d:OBJ$<i>323"],["s:sie","i:sie","_318#2067-2070","opennlp/p:PPER","cnx/l:sie","cnx/p:PRON","cnx/syn:@NH","tt/l:sie","tt/p:PPER","mate/l:sie","mate/p:PPER","mate/m:case:nom","mate/m:number:pl","mate/m:gender:*","mate/m:person:3",">:mate/d:OA$<i>317","xip/p:PRON","xip/l:sie","<>:xip/const:NP#2067-2070$<i>319<b>2","<>:xip/const:PRON#2067-2070$<i>319",">:xip/d:SUBJ$<i>317"],["s:das","i:das","_319#2071-2074","opennlp/p:ART","cnx/l:das","cnx/p:DET","cnx/syn:@PREMOD","tt/l:die","tt/p:ART","mate/l:der","mate/p:ART","mate/m:case:acc","mate/m:number:sg","mate/m:gender:neut",">:mate/d:NK$<i>320","xip/p:DET","xip/l:das","<>:xip/const:DET#2071-2074$<i>320","<>:xip/const:NP#2071-2082$<i>321<b>2",">:xip/d:DETERM$<i>320"],["s:Zeichen","i:zeichen","_320#2075-2082","opennlp/p:NN","cnx/l:zeichen","cnx/p:N","cnx/syn:@NH","<>:cnx/const:np#2075-2093$<i>324","tt/l:Zeichen","tt/p:NN","mate/l:zeichen","mate/p:NN","mate/m:case:acc","mate/m:number:sg","mate/m:gender:neut","<:mate/d:NK$<i>319",">:mate/d:SB$<i>317","xip/p:NOUN","xip/l:Zeichen","<>:xip/const:NPA#2075-2082$<i>321<b>3","<>:xip/const:NOUN#2075-2082$<i>321","<:xip/d:DETERM$<i>319",">:xip/d:OBJ$<i>317"],["s:um","i:um","_321#2083-2085","opennlp/p:APPR","cnx/l:um","cnx/p:PREP","cnx/syn:@POSTMOD","tt/l:um","tt/p:APPR","mate/l:um","mate/p:APPR",">:mate/d:MO$<i>317","<:mate/d:NK$<i>323","xip/p:PREP","xip/l:um","<>:xip/const:NP#2083-2093$<i>324<b>2","<>:xip/const:NPA#2083-2093$<i>324<b>3","<>:xip/const:NUM#2083-2088$<i>323<b>4","<>:xip/const:PREP#2083-2085$<i>322",">:xip/d:NUMMOD$<i>322"],["s:90","i:90","_322#2086-2088","opennlp/p:CARD","cnx/l:90","cnx/p:NUM","cnx/syn:@PREMOD","tt/l:90","tt/p:CARD","mate/l:90","mate/p:CARD",">:mate/d:NK$<i>323","xip/p:NUM","xip/l:90","<>:xip/const:NUM#2086-2088$<i>323","<:xip/d:NUMMOD$<i>321",">:xip/d:NMOD$<i>323"],["s:Grad","i:grad","_323#2089-2093","opennlp/p:NN","cnx/l:grad","cnx/p:N","cnx/syn:@NH","tt/l:Grad","tt/p:NN","mate/l:grad","mate/p:NN","mate/m:case:*","mate/m:number:*","mate/m:gender:neut","<:mate/d:NK$<i>322",">:mate/d:NK$<i>321","xip/p:NOUN","xip/l:Grad","<>:xip/const:NOUN#2089-2093$<i>324","<:xip/d:NMOD$<i>322",">:xip/d:OBJ$<i>317"],["s:und","i:und","_324#2094-2097","opennlp/p:KON","cnx/l:und","cnx/p:CC","cnx/syn:@CC","tt/l:und","tt/p:KON","mate/l:und","mate/p:KON",">:mate/d:CD$<i>317","<:mate/d:CJ$<i>325","xip/p:CONJ","xip/l:und","<>:xip/const:MC#2094-2122$<i>329<b>1","<>:xip/const:CONJ#2094-2097$<i>325"],["s:machten","i:machten","_325#2098-2105","opennlp/p:VVFIN","cnx/l:machen","cnx/p:V","cnx/m:IND","cnx/m:PAST","cnx/syn:@MAIN","tt/l:machen","tt/p:VVFIN","mate/l:machen","mate/p:VVFIN","mate/m:number:pl","mate/m:person:3","mate/m:tense:past","mate/m:mood:ind",">:mate/d:CJ$<i>324","<:mate/d:MO$<i>326","<:mate/d:OA$<i>328","xip/p:VERB","xip/l:machen","<>:xip/const:VERB#2098-2105$<i>326","xip/d:VMAIN","<:xip/d:VMOD$<i>326","<:xip/d:OBJ$<i>328"],["s:daraus","i:daraus","_326#2106-2112","opennlp/p:PROAV","cnx/l:daraus","cnx/p:ADV","cnx/syn:@ADVL","tt/l:daraus","tt/p:PROAV","mate/l:daraus","mate/p:PROAV",">:mate/d:MO$<i>325","xip/p:ADV","xip/l:daraus","<>:xip/const:ADV#2106-2112$<i>327",">:xip/d:VMOD$<i>325"],["s:das","i:das","_327#2113-2116","opennlp/p:ART","cnx/l:das","cnx/p:DET","cnx/syn:@PREMOD","tt/l:die","tt/p:ART","mate/l:der","mate/p:ART","mate/m:case:nom","mate/m:number:sg","mate/m:gender:neut",">:mate/d:NK$<i>328","xip/p:DET","xip/l:das","<>:xip/const:DET#2113-2116$<i>328","<>:xip/const:NP#2113-2122$<i>329<b>2",">:xip/d:DETERM$<i>328"],["s:Alpha","i:alpha","_328#2117-2122","opennlp/p:NN","cnx/l:alpha","cnx/p:N","cnx/syn:@NH","<>:cnx/const:np#2117-2122$<i>329","tt/l:Alpha","tt/p:NN","mate/l:alpha","mate/p:NE","mate/m:case:nom","mate/m:number:sg","mate/m:gender:neut","<:mate/d:NK$<i>327",">:mate/d:OA$<i>325","xip/p:NOUN","xip/l:Alpha","<>:xip/const:NOUN#2117-2122$<i>329","<>:xip/const:NPA#2117-2122$<i>329<b>3","<:xip/d:DETERM$<i>327",">:xip/d:OBJ$<i>325"],["s:Da","i:da","_329#2124-2126","<>:s#2124-2302$<i>355","opennlp/p:KOUS","cnx/l:da","cnx/p:ADV","cnx/syn:@ADVL","tt/l:da","tt/p:ADV","tt/l:da","tt/p:KOUS","mate/l:da","mate/p:KOUS",">:mate/d:CP$<i>335","xip/p:CONJ","xip/l:da","<>:xip/const:TOP#2124-2302$<i>355","<>:xip/const:MC#2124-2225$<i>346<b>1","<>:xip/const:INS#2124-2164$<i>336<b>2","<>:xip/const:SC#2124-2163$<i>336<b>3","<>:xip/const:CONJ#2124-2126$<i>330",">:xip/d:CONNECT$<i>335"],["s:das","i:das","_330#2127-2130","opennlp/p:ART","cnx/l:das","cnx/p:DET","cnx/syn:@PREMOD","tt/l:die","tt/p:ART","mate/l:der","mate/p:ART","mate/m:case:nom","mate/m:number:sg","mate/m:gender:neut",">:mate/d:NK$<i>331","xip/p:DET","xip/l:das","<>:xip/const:DET#2127-2130$<i>331","<>:xip/const:NP#2127-2142$<i>332<b>4",">:xip/d:DETERM$<i>331"],["s:Griechische","i:griechische","_331#2131-2142","opennlp/p:NN","corenlp/ne_dewac_175m_600:I-MISC","corenlp/ne_hgc_175m_600:I-MISC","cnx/l:Griechisch","cnx/p:N","cnx/syn:@NH","<>:cnx/const:np#2131-2142$<i>332","tt/l:Griechische","tt/p:NN","mate/l:griechische","mate/p:NN","mate/m:case:nom","mate/m:number:sg","mate/m:gender:neut","<:mate/d:NK$<i>330",">:mate/d:SB$<i>335","xip/p:NOUN","xip/l:griechisch","<>:xip/const:NOUN#2131-2142$<i>332","<>:xip/const:NPA#2131-2142$<i>332<b>5","<:xip/d:DETERM$<i>330",">:xip/d:SUBJ$<i>335"],["s:reich","i:reich","_332#2143-2148","opennlp/p:ADJD","cnx/l:reich","cnx/p:A","cnx/syn:@NH","tt/l:reich","tt/p:ADJD","mate/l:reich","mate/p:ADJD","mate/m:degree:pos",">:mate/d:PD$<i>335","<:mate/d:MO$<i>333","xip/p:ADJ","xip/l:reich","<>:xip/const:AP#2143-2148$<i>333<b>4","<>:xip/const:ADJ#2143-2148$<i>333",">:xip/d:PRED$<i>335"],["s:an","i:an","_333#2149-2151","opennlp/p:APPR","cnx/l:an","cnx/p:ADV","cnx/syn:@ADVL","tt/l:an","tt/p:APPR","tt/l:an","tt/p:PTKVZ","mate/l:an","mate/p:APPR",">:mate/d:MO$<i>332","<:mate/d:NK$<i>334","xip/p:PREP","xip/l:an","<>:xip/const:PP#2149-2159$<i>335<b>4","<>:xip/const:PREP#2149-2151$<i>334"],["s:Vokalen","i:vokalen","_334#2152-2159","opennlp/p:NN","cnx/l:vokal","cnx/p:N","cnx/m:PL","cnx/syn:@NH","<>:cnx/const:np#2152-2159$<i>335","tt/l:Vokal","tt/p:NN","mate/l:vokale","mate/p:NN","mate/m:case:dat","mate/m:number:pl","mate/m:gender:*",">:mate/d:NK$<i>333","xip/p:NOUN","xip/l:Vokal","<>:xip/const:NOUN#2152-2159$<i>335","<>:xip/const:NP#2152-2159$<i>335<b>5","<>:xip/const:NPA#2152-2159$<i>335<b>6"],["s:war","i:war","_335#2160-2163","opennlp/p:VAFIN","cnx/l:sein","cnx/p:V","cnx/m:IND","cnx/m:PAST","cnx/syn:@MAIN","tt/l:sein","tt/p:VAFIN","mate/l:sein","mate/p:VAFIN","mate/m:number:sg","mate/m:person:3","mate/m:tense:past","mate/m:mood:ind","<:mate/d:CP$<i>329","<:mate/d:SB$<i>331","<:mate/d:PD$<i>332",">:mate/d:MO$<i>336","xip/p:VERB","xip/l:sein","<>:xip/const:VERB#2160-2163$<i>336","<:xip/d:CONNECT$<i>329","<:xip/d:SUBJ$<i>331","<:xip/d:PRED$<i>332","xip/d:VMAIN"],["s:verwendeten","i:verwendeten","_336#2165-2176","opennlp/p:VVFIN","cnx/l:verwenden","cnx/p:V","cnx/m:SUB","cnx/m:PAST","cnx/syn:@MAIN","tt/l:verwenden","tt/p:VVFIN","mate/l:verwenden","mate/p:VVFIN","mate/m:number:pl","mate/m:person:3","mate/m:tense:past","mate/m:mood:ind","<:mate/d:MO$<i>335","<:mate/d:SB$<i>337","<:mate/d:SB$<i>339","<:mate/d:CJ$<i>346","xip/p:VERB","xip/l:verwenden","<>:xip/const:VERB#2165-2176$<i>337","xip/d:VMAIN","<:xip/d:SUBJ$<i>337","<:xip/d:OBJ$<i>339","<:xip/d:VMOD$<i>343","<:xip/d:OBJ$<i>345"],["s:sie","i:sie","_337#2177-2180","opennlp/p:PPER","cnx/l:sie","cnx/p:PRON","cnx/syn:@NH","tt/l:sie","tt/p:PPER","mate/l:sie","mate/p:PPER","mate/m:case:nom","mate/m:number:pl","mate/m:gender:*","mate/m:person:3",">:mate/d:SB$<i>336","xip/p:PRON","xip/l:sie","<>:xip/const:PRON#2177-2180$<i>338","<>:xip/const:NP#2177-2180$<i>338<b>2",">:xip/d:SUBJ$<i>336"],["s:das","i:das","_338#2181-2184","opennlp/p:ART","cnx/l:das","cnx/p:DET","cnx/syn:@PREMOD","tt/l:die","tt/p:ART","mate/l:der","mate/p:ART","mate/m:case:acc","mate/m:number:sg","mate/m:gender:neut",">:mate/d:NK$<i>339","xip/p:DET","xip/l:das","<>:xip/const:NP#2181-2192$<i>340<b>2","<>:xip/const:DET#2181-2184$<i>339",">:xip/d:DETERM$<i>339"],["s:Zeichen","i:zeichen","_339#2185-2192","opennlp/p:NN","cnx/l:zeichen","cnx/p:N","cnx/syn:@NH","<>:cnx/const:np#2185-2209$<i>343","tt/l:Zeichen","tt/p:NN","mate/l:zeichen","mate/p:NN","mate/m:case:acc","mate/m:number:sg","mate/m:gender:neut","<:mate/d:NK$<i>338",">:mate/d:SB$<i>336","<:mate/d:MNR$<i>340","xip/p:NOUN","xip/l:Zeichen","<>:xip/const:NOUN#2185-2192$<i>340","<>:xip/const:NPA#2185-2192$<i>340<b>3","<:xip/d:DETERM$<i>338",">:xip/d:OBJ$<i>336"],["s:für","i:für","_340#2193-2196","opennlp/p:APPR","cnx/l:für","cnx/p:PREP","cnx/syn:@POSTMOD","tt/l:für","tt/p:APPR","mate/l:für","mate/p:APPR",">:mate/d:MNR$<i>339","<:mate/d:NK$<i>342","xip/p:PREP","xip/l:für","<>:xip/const:PREP#2193-2196$<i>341","<>:xip/const:PP#2193-2209$<i>343<b>2"],["s:den","i:den","_341#2197-2200","opennlp/p:ART","cnx/l:der","cnx/p:DET","cnx/syn:@PREMOD","tt/l:die","tt/p:ART","mate/l:der","mate/p:ART","mate/m:case:acc","mate/m:number:sg","mate/m:gender:masc",">:mate/d:NK$<i>342","xip/p:DET","xip/l:der","<>:xip/const:DET#2197-2200$<i>342","<>:xip/const:NP#2197-2209$<i>343<b>3",">:xip/d:DETERM$<i>342"],["s:Lautwert","i:lautwert","_342#2201-2209","opennlp/p:NN","cnx/l:laut","cnx/l:wert","cnx/p:N","cnx/syn:@NH","tt/l:Lautwert","tt/p:NN","mate/l:lautwert","mate/p:NN","mate/m:case:acc","mate/m:number:sg","mate/m:gender:masc","<:mate/d:NK$<i>341",">:mate/d:NK$<i>340","xip/p:NOUN","xip/l:lauten","xip/l:Wert","xip/l:Lautenwert","<>:xip/const:NOUN#2201-2209$<i>343","<>:xip/const:NPA#2201-2209$<i>343<b>4","<:xip/d:DETERM$<i>341"],["s:a.","i:a.","_343#2210-2212","opennlp/p:APPRART","tt/l:a.","tt/p:APPR","xip/p:ADV","xip/l:a.","<>:xip/const:ADV#2210-2212$<i>344",">:xip/d:VMOD$<i>336"],["s:Die","i:die","_344#2213-2216","opennlp/p:ART","cnx/l:die","cnx/p:DET","cnx/syn:@PREMOD","tt/l:die","tt/p:ART","mate/l:der","mate/p:ART","mate/m:case:nom","mate/m:number:sg","mate/m:gender:fem",">:mate/d:NK$<i>345","xip/p:DET","xip/l:die","<>:xip/const:NP#2213-2225$<i>346<b>2","<>:xip/const:DET#2213-2216$<i>345",">:xip/d:DETERM$<i>345"],["s:Etrusker","i:etrusker","_345#2217-2225","opennlp/p:NN","cnx/l:etrusker","cnx/p:N","cnx/syn:@NH","<>:cnx/const:np#2217-2225$<i>346","tt/l:Etrusker","tt/p:NN","mate/l:etrusker","mate/p:NN","mate/m:case:nom","mate/m:number:sg","mate/m:gender:fem","<:mate/d:NK$<i>344",">:mate/d:SB$<i>346","xip/p:NOUN","xip/l:Etrusker","<>:xip/const:NPA#2217-2225$<i>346<b>3","<>:xip/const:NOUN#2217-2225$<i>346","<:xip/d:DETERM$<i>344",">:xip/d:OBJ$<i>336"],["s:übernahmen","i:übernahmen","_346#2226-2236","opennlp/p:VVFIN","cnx/l:übernehmen","cnx/p:V","cnx/m:IND","cnx/m:PAST","cnx/syn:@MAIN","tt/l:übernehmen","tt/p:VVFIN","mate/l:übernehmen","mate/p:VVFIN","mate/m:number:pl","mate/m:person:3","mate/m:tense:past","mate/m:mood:ind","<:mate/d:SB$<i>345",">:mate/d:CJ$<i>336","<:mate/d:OA$<i>349","<:mate/d:CD$<i>350","xip/p:VERB","xip/l:übernehmen","<>:xip/const:MC#2226-2262$<i>350<b>1","<>:xip/const:VERB#2226-2236$<i>347","xip/d:VMAIN","<:xip/d:OBJ$<i>349"],["s:das","i:das","_347#2237-2240","opennlp/p:ART","cnx/l:das","cnx/p:DET","cnx/syn:@PREMOD","tt/l:die","tt/p:ART","mate/l:der","mate/p:ART","mate/m:case:acc","mate/m:number:sg","mate/m:gender:neut",">:mate/d:NK$<i>349","xip/p:DET","xip/l:das","<>:xip/const:DET#2237-2240$<i>348","<>:xip/const:NP#2237-2262$<i>350<b>2",">:xip/d:DETERM$<i>349"],["s:frühgriechische","i:frühgriechische","_348#2241-2256","opennlp/p:ADJA","cnx/l:frühgriechisch","cnx/p:A","cnx/syn:@PREMOD","<>:cnx/const:np#2241-2262$<i>350","tt/l:frühgriechisch","tt/p:ADJA","mate/l:frühgriechisch","mate/p:ADJA","mate/m:case:acc","mate/m:number:sg","mate/m:gender:neut","mate/m:degree:pos",">:mate/d:NK$<i>349","xip/p:ADJ","xip/l:früh","xip/l:griechisch","xip/l:frühgriechisch","<>:xip/const:ADJ#2241-2256$<i>349","<>:xip/const:NPA#2241-2262$<i>350<b>3","<>:xip/const:AP#2241-2256$<i>349<b>4",">:xip/d:NMOD$<i>349"],["s:Alpha","i:alpha","_349#2257-2262","opennlp/p:NN","cnx/l:alpha","cnx/p:N","cnx/syn:@NH","tt/l:Alpha","tt/p:NN","mate/l:alpha","mate/p:NE","mate/m:case:acc","mate/m:number:sg","mate/m:gender:neut","<:mate/d:NK$<i>347","<:mate/d:NK$<i>348",">:mate/d:OA$<i>346","xip/p:NOUN","xip/l:Alpha","<>:xip/const:NOUN#2257-2262$<i>350","<:xip/d:DETERM$<i>347","<:xip/d:NMOD$<i>348",">:xip/d:OBJ$<i>346"],["s:und","i:und","_350#2263-2266","opennlp/p:KON","cnx/l:und","cnx/p:CC","cnx/syn:@CC","tt/l:und","tt/p:KON","mate/l:und","mate/p:KON",">:mate/d:CD$<i>346","<:mate/d:CJ$<i>351","xip/p:CONJ","xip/l:und","<>:xip/const:CONJ#2263-2266$<i>351","<>:xip/const:MC#2263-2301$<i>355<b>1"],["s:ließen","i:ließen","_351#2267-2273","opennlp/p:VVFIN","cnx/l:lassen","cnx/p:V","cnx/m:IND","cnx/m:PAST","cnx/syn:@MAIN","tt/l:lassen","tt/p:VVFIN","mate/l:lassen","mate/p:VVFIN","mate/m:number:pl","mate/m:person:3","mate/m:tense:past","mate/m:mood:ind",">:mate/d:CJ$<i>350","<:mate/d:OA$<i>352","<:mate/d:MO$<i>354","xip/p:VERB","xip/l:lassen","<>:xip/const:VERB#2267-2273$<i>352","xip/d:VMAIN","<:xip/d:OBJ$<i>352"],["s:es","i:es","_352#2274-2276","opennlp/p:PPER","cnx/l:es","cnx/p:PRON","cnx/syn:@NH","tt/l:es","tt/p:PPER","mate/l:es","mate/p:PPER","mate/m:case:acc","mate/m:number:sg","mate/m:gender:neut","mate/m:person:3",">:mate/d:OA$<i>351","xip/p:PRON","xip/l:es","<>:xip/const:PRON#2274-2276$<i>353","<>:xip/const:NP#2274-2276$<i>353<b>2",">:xip/d:OBJ$<i>351"],["s:größtenteils","i:größtenteils","_353#2277-2289","opennlp/p:ADV","cnx/l:grösstenteils","cnx/p:ADV","cnx/syn:@PREMOD","tt/l:größtenteils","tt/p:ADV","mate/l:größtenteils","mate/p:ADV",">:mate/d:MO$<i>354","xip/p:ADV","xip/l:größtenteils","<>:xip/const:ADV#2277-2289$<i>354","<>:xip/const:AP#2277-2301$<i>355<b>2",">:xip/d:ADJMOD$<i>354"],["s:unverändert","i:unverändert","_354#2290-2301","opennlp/p:ADJD","cnx/l:unverändert","cnx/p:A","cnx/syn:@NH","tt/l:unverändert","tt/p:ADJD","mate/l:unverändert","mate/p:ADJD","mate/m:degree:pos","<:mate/d:MO$<i>353",">:mate/d:MO$<i>351","xip/p:ADJ","xip/l:unverändert","<>:xip/const:ADJ#2290-2301$<i>355","<:xip/d:ADJMOD$<i>353"],["s:Lediglich","i:lediglich","_355#2303-2312","<>:s#2303-2417$<i>372","opennlp/p:ADV","cnx/l:lediglich","cnx/p:A","cnx/syn:@NH","tt/l:lediglich","tt/p:ADV","mate/l:lediglich","mate/p:ADV",">:mate/d:MO$<i>356","xip/p:ADV","xip/l:lediglich","<>:xip/const:ADV#2303-2312$<i>356","<>:xip/const:TOP#2303-2417$<i>372","<>:xip/const:MC#2303-2405$<i>370<b>1",">:xip/d:VMOD$<i>363"],["s:zur","i:zur","_356#2313-2316","opennlp/p:APPRART","tt/l:zur","tt/p:APPRART","mate/l:zu","mate/p:APPRART","mate/m:case:dat","mate/m:number:sg","mate/m:gender:fem","<:mate/d:MO$<i>355",">:mate/d:MO$<i>363","<:mate/d:NK$<i>358","xip/p:PREP","xip/l:zu","<>:xip/const:PREP#2313-2316$<i>357","<>:xip/const:PP#2313-2336$<i>359<b>2"],["s:besseren","i:besseren","_357#2317-2325","opennlp/p:ADJA","cnx/l:gut","cnx/p:A","cnx/m:CMP","cnx/syn:@PREMOD","<>:cnx/const:np#2317-2336$<i>359","tt/l:gut","tt/p:ADJA","mate/l:gute","mate/p:ADJA","mate/m:case:dat","mate/m:number:sg","mate/m:gender:fem","mate/m:degree:comp",">:mate/d:NK$<i>358","xip/p:ADJ","xip/l:gut","<>:xip/const:NP#2317-2336$<i>359<b>3","<>:xip/const:NPA#2317-2336$<i>359<b>4","<>:xip/const:AP#2317-2325$<i>358<b>5","<>:xip/const:ADJ#2317-2325$<i>358",">:xip/d:NMOD$<i>358"],["s:Schreibung","i:schreibung","_358#2326-2336","opennlp/p:NN","cnx/l:schreibung","cnx/p:N","cnx/syn:@NH","tt/l:Schreibung","tt/p:NN","mate/l:schreibung","mate/p:NN","mate/m:case:dat","mate/m:number:sg","mate/m:gender:fem","<:mate/d:NK$<i>357",">:mate/d:NK$<i>356","<:mate/d:PAR$<i>361","xip/p:NOUN","xip/l:Schreibung","<>:xip/const:NOUN#2326-2336$<i>359","<:xip/d:NMOD$<i>357"],["s:von","i:von","_359#2338-2341","opennlp/p:APPR","cnx/l:von","cnx/p:PREP","cnx/syn:@PREMARK","tt/l:von","tt/p:APPR","mate/l:von","mate/p:APPR",">:mate/d:MO$<i>361","<:mate/d:NK$<i>360","xip/p:PREP","xip/l:von","<>:xip/const:PREP#2338-2341$<i>360","<>:xip/const:INS#2337-2360$<i>363<b>2"],["s:rechts","i:rechts","_360#2342-2348","opennlp/p:ADV","cnx/l:rechts","cnx/p:ADV","cnx/syn:@ADVL","tt/l:rechts","tt/p:ADV","mate/l:rechts","mate/p:ADV",">:mate/d:NK$<i>359","xip/p:ADV","xip/l:rechts","<>:xip/const:ADV#2342-2348$<i>361"],["s:nach","i:nach","_361#2349-2353","opennlp/p:APPR","cnx/l:nach","cnx/p:ADV","cnx/syn:@ADVL","tt/l:nach","tt/p:APPR","tt/l:nach","tt/p:ADV","mate/l:nach","mate/p:APPR","<:mate/d:MO$<i>359",">:mate/d:PAR$<i>358","<:mate/d:NK$<i>362","xip/p:POSTP","xip/l:nach","<>:xip/const:POSTP#2349-2353$<i>362"],["s:links","i:links","_362#2354-2359","opennlp/p:ADV","cnx/l:links","cnx/p:ADV","cnx/syn:@ADVL","tt/l:links","tt/p:ADV","mate/l:links","mate/p:ADV",">:mate/d:NK$<i>361","xip/p:ADV","xip/l:links","<>:xip/const:ADV#2354-2359$<i>363"],["s:versahen","i:versahen","_363#2361-2369","opennlp/p:VVFIN","cnx/l:versehen","cnx/p:V","cnx/m:IND","cnx/m:PAST","cnx/syn:@MAIN","tt/l:versehen","tt/p:VVFIN","mate/l:versehen","mate/p:VVFIN","mate/m:number:pl","mate/m:person:3","mate/m:tense:past","mate/m:mood:ind","<:mate/d:MO$<i>356","<:mate/d:SB$<i>364","<:mate/d:SB$<i>366","<:mate/d:MO$<i>367","xip/p:VERB","xip/l:versehen","<>:xip/const:VERB#2361-2369$<i>364","<:xip/d:VMOD$<i>355","xip/d:VMAIN","<:xip/d:SUBJ$<i>364","<:xip/d:OBJ$<i>366"],["s:sie","i:sie","_364#2370-2373","opennlp/p:PPER","cnx/l:sie","cnx/p:PRON","cnx/syn:@NH","tt/l:sie","tt/p:PPER","mate/l:sie","mate/p:PPER","mate/m:case:nom","mate/m:number:pl","mate/m:gender:*","mate/m:person:3",">:mate/d:SB$<i>363","xip/p:PRON","xip/l:sie","<>:xip/const:PRON#2370-2373$<i>365","<>:xip/const:NP#2370-2373$<i>365<b>2",">:xip/d:SUBJ$<i>363"],["s:das","i:das","_365#2374-2377","opennlp/p:ART","cnx/l:das","cnx/p:DET","cnx/syn:@PREMOD","tt/l:die","tt/p:ART","mate/l:der","mate/p:ART","mate/m:case:acc","mate/m:number:sg","mate/m:gender:neut",">:mate/d:NK$<i>366","xip/p:DET","xip/l:das","<>:xip/const:DET#2374-2377$<i>366","<>:xip/const:NP#2374-2385$<i>367<b>2",">:xip/d:DETERM$<i>366"],["s:Zeichen","i:zeichen","_366#2378-2385","opennlp/p:NN","cnx/l:zeichen","cnx/p:N","cnx/syn:@NH","<>:cnx/const:np#2378-2385$<i>367","tt/l:Zeichen","tt/p:NN","mate/l:zeichen","mate/p:NN","mate/m:case:acc","mate/m:number:sg","mate/m:gender:neut","<:mate/d:NK$<i>365",">:mate/d:SB$<i>363","xip/p:NOUN","xip/l:Zeichen","<>:xip/const:NOUN#2378-2385$<i>367","<>:xip/const:NPA#2378-2385$<i>367<b>3","<:xip/d:DETERM$<i>365",">:xip/d:OBJ$<i>363"],["s:mit","i:mit","_367#2386-2389","opennlp/p:APPR","cnx/l:mit","cnx/p:PREP","cnx/syn:@PREMARK","tt/l:mit","tt/p:APPR","mate/l:mit","mate/p:APPR",">:mate/d:MO$<i>363","<:mate/d:NK$<i>369","xip/p:PREP","xip/l:mit","<>:xip/const:PP#2386-2405$<i>370<b>2","<>:xip/const:PREP#2386-2389$<i>368"],["s:einem","i:einem","_368#2390-2395","opennlp/p:ART","cnx/l:ein","cnx/p:DET","cnx/syn:@PREMOD","tt/l:eine","tt/p:ART","mate/l:ein","mate/p:ART","mate/m:case:dat","mate/m:number:sg","mate/m:gender:masc",">:mate/d:NK$<i>369","xip/p:DET","xip/l:ein","<>:xip/const:DET#2390-2395$<i>369","<>:xip/const:NP#2390-2405$<i>370<b>3",">:xip/d:DETERM$<i>369"],["s:Abschwung","i:abschwung","_369#2396-2405","opennlp/p:NN","cnx/l:abschwung","cnx/p:N","cnx/syn:@NH","<>:cnx/const:np#2396-2405$<i>370","tt/l:Abschwung","tt/p:NN","mate/l:abschwung","mate/p:NN","mate/m:case:dat","mate/m:number:sg","mate/m:gender:masc","<:mate/d:NK$<i>368",">:mate/d:NK$<i>367","<:mate/d:MNR$<i>370","xip/p:NOUN","xip/l:Abschwung","<>:xip/const:NPA#2396-2405$<i>370<b>4","<>:xip/const:NOUN#2396-2405$<i>370","<:xip/d:DETERM$<i>368"],["s:nach","i:nach","_370#2406-2410","opennlp/p:APPR","cnx/l:nach","cnx/p:PREP","cnx/syn:@PREMARK","tt/l:nach","tt/p:APPR","tt/l:nach","tt/p:APPO","mate/l:nach","mate/p:APPR",">:mate/d:MNR$<i>369","<:mate/d:NK$<i>371","xip/p:POSTP","xip/l:nach","<>:xip/const:POSTP#2406-2410$<i>371"],["s:links","i:links","_371#2411-2416","opennlp/p:ADV","cnx/l:links","cnx/p:ADV","cnx/syn:@ADVL","tt/l:links","tt/p:ADV","mate/l:links","mate/p:ADV",">:mate/d:NK$<i>370","xip/p:ADV","xip/l:links","<>:xip/const:ADV#2411-2416$<i>372"],["s:Als","i:als","_372#2418-2421","<>:s#2418-2583$<i>396","opennlp/p:APPR","cnx/l:als","cnx/p:CS","cnx/syn:@PREMARK","tt/l:als","tt/p:KOKOM","tt/l:als","tt/p:KOUS","mate/l:als","mate/p:KOUS",">:mate/d:CP$<i>378","xip/p:CONJ","xip/l:als","<>:xip/const:TOP#2418-2583$<i>396","<>:xip/const:MC#2418-2517$<i>387<b>1","<>:xip/const:INS#2418-2465$<i>379<b>2","<>:xip/const:SC#2418-2464$<i>379<b>3","<>:xip/const:CONJ#2418-2421$<i>373",">:xip/d:CONNECT$<i>378"],["s:die","i:die","_373#2422-2425","opennlp/p:ART","cnx/l:die","cnx/p:DET","cnx/syn:@PREMOD","tt/l:die","tt/p:ART","mate/l:der","mate/p:ART","mate/m:case:nom","mate/m:number:sg","mate/m:gender:fem",">:mate/d:NK$<i>374","xip/p:DET","xip/l:die","<>:xip/const:NP#2422-2431$<i>375<b>4","<>:xip/const:DET#2422-2425$<i>374",">:xip/d:DETERM$<i>374"],["s:Römer","i:römer","_374#2426-2431","opennlp/p:NN","cnx/l:Römer","cnx/p:N","cnx/m:PL","cnx/syn:@NH","<>:cnx/const:np#2426-2431$<i>375","tt/l:Römer","tt/p:NE","mate/l:römer","mate/p:NN","mate/m:case:nom","mate/m:number:sg","mate/m:gender:fem","<:mate/d:NK$<i>373",">:mate/d:SB$<i>378","<:mate/d:AG$<i>377","xip/p:ADJ","xip/l:Römer","<>:xip/const:AP#2426-2431$<i>375<b>5","<>:xip/const:ADJ#2426-2431$<i>375","<:xip/d:DETERM$<i>373","xip/d:PERSON",">:xip/d:SUBJ$<i>378"],["s:das","i:das","_375#2432-2435","opennlp/p:ART","cnx/l:das","cnx/p:DET","cnx/syn:@PREMOD","tt/l:die","tt/p:ART","mate/l:der","mate/p:ART","mate/m:case:acc","mate/m:number:sg","mate/m:gender:neut",">:mate/d:NK$<i>377","xip/p:DET","xip/l:das","<>:xip/const:DET#2432-2435$<i>376","<>:xip/const:NP#2432-2456$<i>378<b>4",">:xip/d:DETERM$<i>377"],["s:lateinische","i:lateinische","_376#2436-2447","opennlp/p:ADJA","corenlp/ne_dewac_175m_600:I-MISC","cnx/l:lateinisch","cnx/p:A","cnx/syn:@PREMOD","<>:cnx/const:np#2436-2456$<i>378","tt/l:lateinisch","tt/p:ADJA","mate/l:lateinisch","mate/p:ADJA","mate/m:case:acc","mate/m:number:sg","mate/m:gender:neut","mate/m:degree:pos",">:mate/d:NK$<i>377","xip/p:ADJ","xip/l:lateinisch","<>:xip/const:NPA#2436-2456$<i>378<b>5","<>:xip/const:AP#2436-2447$<i>377<b>6","<>:xip/const:ADJ#2436-2447$<i>377",">:xip/d:NMOD$<i>377"],["s:Alphabet","i:alphabet","_377#2448-2456","opennlp/p:NN","cnx/l:alphabet","cnx/p:N","cnx/syn:@NH","tt/l:Alphabet","tt/p:NN","mate/l:alphabet","mate/p:NE","mate/m:case:acc","mate/m:number:sg","mate/m:gender:neut","<:mate/d:NK$<i>375","<:mate/d:NK$<i>376",">:mate/d:AG$<i>374","xip/p:NOUN","xip/l:Alphabet","<>:xip/const:NOUN#2448-2456$<i>378","<:xip/d:DETERM$<i>375","<:xip/d:NMOD$<i>376",">:xip/d:OBJ$<i>378"],["s:schufen","i:schufen","_378#2457-2464","opennlp/p:VVFIN","cnx/l:schaffen","cnx/p:V","cnx/m:IND","cnx/m:PAST","cnx/syn:@MAIN","tt/l:schaffen","tt/p:VVFIN","mate/l:schaffen","mate/p:VVFIN","mate/m:number:pl","mate/m:person:3","mate/m:tense:past","mate/m:mood:ind","<:mate/d:CP$<i>372","<:mate/d:SB$<i>374",">:mate/d:MO$<i>379","xip/p:VERB","xip/l:schaffen","<>:xip/const:VERB#2457-2464$<i>379","<:xip/d:CONNECT$<i>372","<:xip/d:SUBJ$<i>374","<:xip/d:OBJ$<i>377","xip/d:VMAIN"],["s:verwendeten","i:verwendeten","_379#2466-2477","opennlp/p:VVFIN","cnx/l:verwenden","cnx/p:V","cnx/m:SUB","cnx/m:PAST","cnx/syn:@MAIN","tt/l:verwenden","tt/p:VVFIN","mate/l:verwenden","mate/p:VVFIN","mate/m:number:pl","mate/m:person:3","mate/m:tense:past","mate/m:mood:ind","<:mate/d:MO$<i>378","<:mate/d:SB$<i>380","<:mate/d:SB$<i>382","<:mate/d:CJ$<i>389","xip/p:VERB","xip/l:verwenden","<>:xip/const:VERB#2466-2477$<i>380","xip/d:VMAIN","<:xip/d:SUBJ$<i>380","<:xip/d:OBJ$<i>382"],["s:sie","i:sie","_380#2478-2481","opennlp/p:PPER","cnx/l:sie","cnx/p:PRON","cnx/syn:@NH","tt/l:sie","tt/p:PPER","mate/l:sie","mate/p:PPER","mate/m:case:nom","mate/m:number:pl","mate/m:gender:*","mate/m:person:3",">:mate/d:SB$<i>379","xip/p:PRON","xip/l:sie","<>:xip/const:PRON#2478-2481$<i>381","<>:xip/const:NP#2478-2481$<i>381<b>2",">:xip/d:SUBJ$<i>379"],["s:das","i:das","_381#2482-2485","opennlp/p:ART","cnx/l:das","cnx/p:PRON","cnx/syn:@NH","tt/l:die","tt/p:ART","mate/l:der","mate/p:ART","mate/m:case:acc","mate/m:number:sg","mate/m:gender:neut",">:mate/d:NK$<i>382","xip/p:DET","xip/l:das","<>:xip/const:NP#2482-2487$<i>383<b>2","<>:xip/const:DET#2482-2485$<i>382",">:xip/d:DETERM$<i>382"],["s:A","i:a","_382#2486-2487","opennlp/p:NN","cnx/l:A","cnx/p:N","cnx/syn:@NH","<>:cnx/const:np#2486-2487$<i>383","tt/l:A","tt/p:NN","mate/p:NN","mate/m:case:acc","mate/m:number:sg","mate/m:gender:neut","<:mate/d:NK$<i>381",">:mate/d:SB$<i>379","<:mate/d:MNR$<i>383","xip/p:SYMBOL","xip/l:A","<>:xip/const:SYMBOL#2486-2487$<i>383","<>:xip/const:NPA#2486-2487$<i>383<b>3","<>:xip/const:NOUN#2486-2487$<i>383<b>4","<:xip/d:DETERM$<i>381",">:xip/d:OBJ$<i>379"],["s:aus","i:aus","_383#2488-2491","opennlp/p:APPR","cnx/l:aus","cnx/p:PREP","cnx/syn:@PREMARK","tt/l:aus","tt/p:APPR","mate/l:aus","mate/p:APPR",">:mate/d:MNR$<i>382","<:mate/d:NK$<i>386","xip/p:PREP","xip/l:aus","<>:xip/const:PREP#2488-2491$<i>384","<>:xip/const:PP#2488-2517$<i>387<b>2"],["s:dem","i:dem","_384#2492-2495","opennlp/p:ART","cnx/l:das","cnx/p:DET","cnx/syn:@PREMOD","tt/l:die","tt/p:ART","mate/l:der","mate/p:ART","mate/m:case:dat","mate/m:number:sg","mate/m:gender:neut",">:mate/d:NK$<i>386","xip/p:DET","xip/l:der","<>:xip/const:NP#2492-2517$<i>387<b>3","<>:xip/const:DET#2492-2495$<i>385",">:xip/d:DETERM$<i>386"],["s:etruskischen","i:etruskischen","_385#2496-2508","opennlp/p:ADJA","corenlp/ne_dewac_175m_600:I-MISC","corenlp/ne_hgc_175m_600:I-MISC","cnx/l:etruskisch","cnx/p:A","cnx/syn:@PREMOD","<>:cnx/const:np#2496-2517$<i>387","tt/l:etruskisch","tt/p:ADJA","mate/l:etruskisch","mate/p:ADJA","mate/m:case:dat","mate/m:number:sg","mate/m:gender:neut","mate/m:degree:pos",">:mate/d:NK$<i>386","xip/p:ADJ","xip/l:etruskisch","<>:xip/const:ADJ#2496-2508$<i>386","<>:xip/const:NPA#2496-2517$<i>387<b>4","<>:xip/const:AP#2496-2508$<i>386<b>5",">:xip/d:NMOD$<i>386"],["s:Alphabet","i:alphabet","_386#2509-2517","opennlp/p:NN","cnx/l:alphabet","cnx/p:N","cnx/syn:@NH","tt/l:Alphabet","tt/p:NN","mate/l:alphabet","mate/p:NE","mate/m:case:dat","mate/m:number:sg","mate/m:gender:neut","<:mate/d:NK$<i>384","<:mate/d:NK$<i>385",">:mate/d:NK$<i>383","xip/p:NOUN","xip/l:Alphabet","<>:xip/const:NOUN#2509-2517$<i>387","<:xip/d:DETERM$<i>384","<:xip/d:NMOD$<i>385"],["s:der","i:der","_387#2519-2522","opennlp/p:ART","cnx/l:der","cnx/p:DET","cnx/syn:@PREMOD","tt/l:die","tt/p:ART","mate/l:der","mate/p:ART","mate/m:case:dat","mate/m:number:sg","mate/m:gender:fem",">:mate/d:NK$<i>388","xip/p:DET","xip/l:der","<>:xip/const:DET#2519-2522$<i>388","<>:xip/const:MC#2519-2582$<i>396<b>1","<>:xip/const:NP#2519-2531$<i>389<b>2",">:xip/d:DETERM$<i>388"],["s:Lautwert","i:lautwert","_388#2523-2531","opennlp/p:NN","cnx/l:laut","cnx/l:wert","cnx/p:N","cnx/syn:@NH","<>:cnx/const:np#2523-2531$<i>389","tt/l:Lautwert","tt/p:NN","mate/l:lautwert","mate/p:NN","mate/m:case:dat","mate/m:number:sg","mate/m:gender:fem","<:mate/d:NK$<i>387",">:mate/d:SB$<i>389","xip/p:NOUN","xip/l:lauten","xip/l:Wert","xip/l:Lautenwert","<>:xip/const:NPA#2523-2531$<i>389<b>3","<>:xip/const:NOUN#2523-2531$<i>389","<:xip/d:DETERM$<i>387",">:xip/d:SUBJ$<i>394"],["s:ist","i:ist","_389#2532-2535","opennlp/p:VAFIN","cnx/l:sein","cnx/p:V","cnx/m:IND","cnx/m:PRES","cnx/syn:@MAIN","tt/l:sein","tt/p:VAFIN","mate/l:sein","mate/p:VAFIN","mate/m:number:sg","mate/m:person:3","mate/m:tense:pres","mate/m:mood:ind","<:mate/d:SB$<i>388",">:mate/d:CJ$<i>379","<:mate/d:OC$<i>395","xip/p:VERB","xip/l:sein","<>:xip/const:VERB#2532-2535$<i>390","<:xip/d:AUXIL$<i>394"],["s:ebenfalls","i:ebenfalls","_390#2536-2545","opennlp/p:ADV","cnx/l:ebenfalls","cnx/p:ADV","cnx/syn:@ADVL","tt/l:ebenfalls","tt/p:ADV","mate/l:ebenfalls","mate/p:ADV",">:mate/d:MO$<i>394","xip/p:ADV","xip/l:ebenfalls","<>:xip/const:ADV#2536-2545$<i>391",">:xip/d:VMOD$<i>394"],["s:seit","i:seit","_391#2546-2550","opennlp/p:APPR","cnx/l:seit","cnx/p:CS","cnx/syn:@PREMARK","tt/l:seit","tt/p:APPR","mate/l:seit","mate/p:APPR",">:mate/d:MO$<i>394","<:mate/d:NK$<i>393","xip/p:PREP","xip/l:seit","<>:xip/const:PREP#2546-2550$<i>392","<>:xip/const:PP#2546-2563$<i>394<b>2"],["s:den","i:den","_392#2551-2554","opennlp/p:ART","cnx/l:die","cnx/p:DET","cnx/syn:@PREMOD","tt/l:die","tt/p:ART","mate/l:der","mate/p:ART","mate/m:case:dat","mate/m:number:pl","mate/m:gender:*",">:mate/d:NK$<i>393","xip/p:DET","xip/l:der","<>:xip/const:NP#2551-2563$<i>394<b>3","<>:xip/const:DET#2551-2554$<i>393",">:xip/d:DETERM$<i>393"],["s:Griechen","i:griechen","_393#2555-2563","opennlp/p:NN","cnx/l:Grieche","cnx/p:N","cnx/m:PL","cnx/syn:@NH","<>:cnx/const:np#2555-2563$<i>394","tt/l:Grieche","tt/p:NN","mate/l:grieche","mate/p:NN","mate/m:case:dat","mate/m:number:pl","mate/m:gender:*","<:mate/d:NK$<i>392",">:mate/d:NK$<i>391","xip/p:NOUN","xip/l:Grieche","<>:xip/const:NPA#2555-2563$<i>394<b>4","<>:xip/const:NOUN#2555-2563$<i>394","<:xip/d:DETERM$<i>392","xip/d:PERSON"],["s:beibehalten","i:beibehalten","_394#2564-2575","opennlp/p:VVPP","cnx/l:beibehalten","cnx/p:V","cnx/m:INF","cnx/syn:@MAIN","tt/l:beibehalten","tt/p:VVPP","mate/l:beibehalten","mate/p:VVPP","<:mate/d:MO$<i>390","<:mate/d:MO$<i>391",">:mate/d:OC$<i>395","xip/p:VERB","xip/l:beibehalten","<>:xip/const:VERB#2564-2575$<i>395","<:xip/d:SUBJ$<i>388","<:xip/d:VMOD$<i>390",">:xip/d:AUXIL$<i>395",">:xip/d:AUXIL$<i>389","xip/d:VMAIN"],["s:worden","i:worden","_395#2576-2582","opennlp/p:VAPP","cnx/l:werden","cnx/p:V","cnx/m:PCP","cnx/m:PERF","cnx/syn:@AUX","tt/l:werden","tt/p:VAPP","mate/l:werden","mate/p:VAPP","<:mate/d:OC$<i>394",">:mate/d:OC$<i>389","xip/p:VERB","xip/l:werden","<>:xip/const:VERB#2576-2582$<i>396","<:xip/d:AUXIL$<i>394"],["s:3.","i:3.","_396#2584-2586","<>:s#2584-2948$<i>457","opennlp/p:ADJA","cnx/l:3.","cnx/p:NUM","cnx/syn:@PREMOD","tt/l:3.","tt/p:ADJA","xip/p:NUM","xip/l:3.","<>:xip/const:TOP#2584-2948$<i>457","<>:xip/const:MC#2584-2649$<i>407<b>1","<>:xip/const:NP#2584-2598$<i>398<b>2","<>:xip/const:NPA#2584-2598$<i>398<b>3","<>:xip/const:NUM#2584-2586$<i>397"],["s:Bedeutungen","i:bedeutungen","_397#2587-2598","opennlp/p:NN","cnx/l:bedeutung","cnx/p:N","cnx/m:PL","cnx/syn:@NH","<>:cnx/const:np#2587-2614$<i>401","tt/l:Bedeutung","tt/p:NN","mate/l:bedeutung","mate/p:NN","mate/m:case:nom","mate/m:number:pl","mate/m:gender:fem","xip/p:NOUN","xip/l:Bedeutung","<>:xip/const:NOUN#2587-2598$<i>398",">:xip/d:OBJ$<i>401"],["s:in","i:in","_398#2599-2601","<>:p#2599-2614$<i>401","opennlp/p:APPR","cnx/l:in","cnx/p:PREP","cnx/syn:@POSTMOD","tt/l:in","tt/p:APPR","mate/l:in","mate/p:APPR","<:mate/d:NK$<i>400","xip/p:PREP","xip/l:in","<>:xip/const:PP#2599-2614$<i>401<b>2","<>:xip/const:PREP#2599-2601$<i>399"],["s:der","i:der","_399#2602-2605","opennlp/p:ART","cnx/l:die","cnx/p:DET","cnx/syn:@PREMOD","tt/l:die","tt/p:ART","mate/l:der","mate/p:ART","mate/m:case:dat","mate/m:number:sg","mate/m:gender:fem",">:mate/d:NK$<i>400","xip/p:DET","xip/l:der","<>:xip/const:NP#2602-2614$<i>401<b>3","<>:xip/const:DET#2602-2605$<i>400",">:xip/d:DETERM$<i>400"],["s:Biologie","i:biologie","_400#2606-2614","opennlp/p:NN","cnx/l:biologie","cnx/p:N","cnx/syn:@NH","tt/l:Biologie","tt/p:NN","mate/l:biologie","mate/p:NN","mate/m:case:dat","mate/m:number:sg","mate/m:gender:fem","<:mate/d:NK$<i>399",">:mate/d:NK$<i>398","xip/p:NOUN","xip/l:Biologie","<>:xip/const:NPA#2606-2614$<i>401<b>4","<>:xip/const:NOUN#2606-2614$<i>401","<:xip/d:DETERM$<i>399"],["s:steht","i:steht","_401#2615-2620","<>:p#2615-2649$<i>407","opennlp/p:VVFIN","cnx/l:stehen","cnx/p:V","cnx/m:IND","cnx/m:PRES","cnx/syn:@MAIN","tt/l:stehen","tt/p:VVFIN","mate/l:stehen","mate/p:VVFIN","mate/m:number:sg","mate/m:person:3","mate/m:tense:pres","mate/m:mood:ind","<:mate/d:DA$<i>402","xip/p:VERB","xip/l:stehen","<>:xip/const:VERB#2615-2620$<i>402","<:xip/d:OBJ$<i>397","xip/d:VMAIN","<:xip/d:SUBJ$<i>402"],["s:A","i:a","_402#2621-2622","opennlp/p:NE","cnx/l:A","cnx/p:N","cnx/syn:@NH","<>:cnx/const:np#2621-2622$<i>403","tt/l:A","tt/p:NN","mate/p:NN","mate/m:case:nom","mate/m:number:sg","mate/m:gender:*",">:mate/d:DA$<i>401","<:mate/d:MNR$<i>403","xip/p:SYMBOL","xip/l:A","<>:xip/const:NP#2621-2622$<i>403<b>2","<>:xip/const:NPA#2621-2622$<i>403<b>3","<>:xip/const:NOUN#2621-2622$<i>403<b>4","<>:xip/const:SYMBOL#2621-2622$<i>403",">:xip/d:SUBJ$<i>401"],["s:für","i:für","_403#2623-2626","opennlp/p:APPR","cnx/l:für","cnx/p:PREP","cnx/syn:@PREMARK","tt/l:für","tt/p:APPR","mate/l:für","mate/p:APPR",">:mate/d:MNR$<i>402","<:mate/d:NK$<i>405","xip/p:PREP","xip/l:für","<>:xip/const:PP#2623-2649$<i>407<b>2","<>:xip/const:PREP#2623-2626$<i>404"],["s:das","i:das","_404#2627-2630","opennlp/p:ART","cnx/l:das","cnx/p:PRON","cnx/syn:@NH","tt/l:die","tt/p:ART","mate/l:der","mate/p:ART","mate/m:case:acc","mate/m:number:sg","mate/m:gender:neut",">:mate/d:NK$<i>405","xip/p:DET","xip/l:das","<>:xip/const:NP#2627-2649$<i>407<b>3","<>:xip/const:DET#2627-2630$<i>405"],["s:Nukleosid","i:nukleosid","_405#2631-2640","opennlp/p:NN","cnx/l:nukleosid","cnx/p:N","cnx/syn:@NH","<>:cnx/const:np#2631-2640$<i>406","tt/p:NE","tt/p:NN","mate/l:nukleosid","mate/p:NN","mate/m:case:acc","mate/m:number:sg","mate/m:gender:neut","<:mate/d:NK$<i>404",">:mate/d:NK$<i>403","<:mate/d:NK$<i>406","xip/p:NOUN","xip/l:Nukleosid","<>:xip/const:NPA#2631-2649$<i>407<b>4","<>:xip/const:NOUN#2631-2649$<i>407<b>5","<>:xip/const:NOUN#2631-2640$<i>406"],["s:Adenosin","i:adenosin","_406#2641-2649","opennlp/p:NE","cnx/l:adenosin","cnx/p:N","cnx/syn:@NH","<>:cnx/const:np#2641-2649$<i>407","tt/p:NE","mate/l:adenosin","mate/p:NE","mate/m:case:nom","mate/m:number:sg","mate/m:gender:*",">:mate/d:NK$<i>405","xip/p:NOUN","xip/l:Adenosin","<>:xip/const:NOUN#2641-2649$<i>407"],["s:steht","i:steht","_407#2650-2655","<>:p#2650-2673$<i>412","opennlp/p:VVFIN","cnx/l:stehen","cnx/p:V","cnx/m:IND","cnx/m:PRES","cnx/syn:@MAIN","tt/l:stehen","tt/p:VVFIN","mate/l:stehen","mate/p:VVFIN","mate/m:number:sg","mate/m:person:3","mate/m:tense:pres","mate/m:mood:ind","<:mate/d:DA$<i>408","<:mate/d:SB$<i>410","xip/p:VERB","xip/l:stehen","<>:xip/const:MC#2650-2673$<i>412<b>1","<>:xip/const:VERB#2650-2655$<i>408","xip/d:VMAIN","<:xip/d:SUBJ$<i>408","<:xip/d:OBJ$<i>410"],["s:A","i:a","_408#2656-2657","opennlp/p:NE","cnx/l:a","cnx/p:PREP","cnx/syn:@PREMARK","tt/l:A","tt/p:NN","mate/p:NE","mate/m:case:nom","mate/m:number:sg","mate/m:gender:*",">:mate/d:DA$<i>407","xip/p:SYMBOL","xip/l:A","<>:xip/const:NP#2656-2657$<i>409<b>2","<>:xip/const:NPA#2656-2657$<i>409<b>3","<>:xip/const:NOUN#2656-2657$<i>409<b>4","<>:xip/const:SYMBOL#2656-2657$<i>409",">:xip/d:SUBJ$<i>407"],["s:die","i:die","_409#2658-2661","opennlp/p:ART","cnx/l:die","cnx/p:DET","cnx/syn:@PREMOD","tt/l:die","tt/p:ART","mate/l:der","mate/p:ART","mate/m:case:acc","mate/m:number:sg","mate/m:gender:fem",">:mate/d:NK$<i>410","xip/p:DET","xip/l:die","<>:xip/const:NP#2658-2666$<i>411<b>2","<>:xip/const:DET#2658-2661$<i>410",">:xip/d:DETERM$<i>410"],["s:Base","i:base","_410#2662-2666","opennlp/p:NN","cnx/l:Base","cnx/p:N","cnx/m:Prop","cnx/syn:@PREMOD","<>:cnx/const:np#2662-2673$<i>412","tt/l:Base","tt/p:NN","mate/l:bas","mate/p:NN","mate/m:case:acc","mate/m:number:sg","mate/m:gender:fem","<:mate/d:NK$<i>409",">:mate/d:SB$<i>407","<:mate/d:NK$<i>411","xip/p:NOUN","xip/l:Base","<>:xip/const:NPA#2662-2666$<i>411<b>3","<>:xip/const:NOUN#2662-2666$<i>411","<:xip/d:DETERM$<i>409",">:xip/d:OBJ$<i>407","<:xip/d:NMOD$<i>411"],["s:Adenin","i:adenin","_411#2667-2673","opennlp/p:NE","cnx/l:Adenin","cnx/p:N","cnx/m:Prop","cnx/syn:@NH","tt/p:NE","mate/l:adenin","mate/p:NE","mate/m:case:nom","mate/m:number:sg","mate/m:gender:*",">:mate/d:NK$<i>410","xip/p:NOUN","xip/l:Adenin","<>:xip/const:NP#2667-2673$<i>412<b>2","<>:xip/const:NPA#2667-2673$<i>412<b>3","<>:xip/const:NOUN#2667-2673$<i>412",">:xip/d:NMOD$<i>410"],["s:steht","i:steht","_412#2674-2679","<>:p#2674-2707$<i>418","opennlp/p:VVFIN","cnx/l:stehen","cnx/p:V","cnx/m:IND","cnx/m:PRES","cnx/syn:@MAIN","tt/l:stehen","tt/p:VVFIN","mate/l:stehen","mate/p:VVFIN","mate/m:number:sg","mate/m:person:3","mate/m:tense:pres","mate/m:mood:ind","<:mate/d:DA$<i>413","xip/p:VERB","xip/l:stehen","<>:xip/const:MC#2674-2725$<i>421<b>1","<>:xip/const:VERB#2674-2679$<i>413","xip/d:VMAIN","<:xip/d:SUBJ$<i>413"],["s:A","i:a","_413#2680-2681","opennlp/p:NE","cnx/l:A","cnx/p:N","cnx/syn:@NH","<>:cnx/const:np#2680-2681$<i>414","tt/l:A","tt/p:NN","mate/p:NN","mate/m:case:nom","mate/m:number:sg","mate/m:gender:*",">:mate/d:DA$<i>412","<:mate/d:MNR$<i>414","xip/p:SYMBOL","xip/l:A","<>:xip/const:NP#2680-2681$<i>414<b>2","<>:xip/const:NPA#2680-2681$<i>414<b>3","<>:xip/const:NOUN#2680-2681$<i>414<b>4","<>:xip/const:SYMBOL#2680-2681$<i>414",">:xip/d:SUBJ$<i>412"],["s:für","i:für","_414#2682-2685","opennlp/p:APPR","cnx/l:für","cnx/p:PREP","cnx/syn:@PREMARK","tt/l:für","tt/p:APPR","mate/l:für","mate/p:APPR",">:mate/d:MNR$<i>413","<:mate/d:NK$<i>416","xip/p:PREP","xip/l:für","<>:xip/const:PP#2682-2700$<i>417<b>2","<>:xip/const:PREP#2682-2685$<i>415"],["s:die","i:die","_415#2686-2689","opennlp/p:ART","cnx/l:die","cnx/p:DET","cnx/syn:@PREMOD","tt/l:die","tt/p:ART","mate/l:der","mate/p:ART","mate/m:case:acc","mate/m:number:sg","mate/m:gender:fem",">:mate/d:NK$<i>416","xip/p:DET","xip/l:die","<>:xip/const:NP#2686-2700$<i>417<b>3","<>:xip/const:DET#2686-2689$<i>416",">:xip/d:DETERM$<i>416"],["s:Aminosäure","i:aminosäure","_416#2690-2700","opennlp/p:NN","cnx/l:aminosäure","cnx/p:N","cnx/syn:@PREMOD","<>:cnx/const:np#2690-2707$<i>418","tt/l:Aminosäure","tt/p:NN","mate/l:aminosäur","mate/p:NN","mate/m:case:acc","mate/m:number:sg","mate/m:gender:fem","<:mate/d:NK$<i>415",">:mate/d:NK$<i>414","<:mate/d:NK$<i>417","xip/p:NOUN","xip/l:Amino","xip/l:Säure","xip/l:Aminosäure","<>:xip/const:NPA#2690-2700$<i>417<b>4","<>:xip/const:NOUN#2690-2700$<i>417","<:xip/d:DETERM$<i>415","<:xip/d:NMOD$<i>417"],["s:Alanin","i:alanin","_417#2701-2707","opennlp/p:NE","cnx/l:alanin","cnx/p:N","cnx/syn:@NH","tt/p:NE","tt/p:NN","mate/l:alanin","mate/p:NE","mate/m:case:nom","mate/m:number:sg","mate/m:gender:neut",">:mate/d:NK$<i>416","xip/p:NOUN","xip/l:Alanin","<>:xip/const:NP#2701-2707$<i>418<b>2","<>:xip/const:NPA#2701-2707$<i>418<b>3","<>:xip/const:NOUN#2701-2707$<i>418",">:xip/d:NMOD$<i>416"],["s:in","i:in","_418#2708-2710","<>:p#2708-2725$<i>421","opennlp/p:APPR","cnx/l:in","cnx/p:PREP","cnx/syn:@PREMARK","tt/l:in","tt/p:APPR","mate/l:in","mate/p:APPR","<:mate/d:NK$<i>420","xip/p:PREP","xip/l:in","<>:xip/const:PP#2708-2725$<i>421<b>2","<>:xip/const:PREP#2708-2710$<i>419"],["s:der","i:der","_419#2711-2714","opennlp/p:ART","cnx/l:die","cnx/p:DET","cnx/syn:@PREMOD","tt/l:die","tt/p:ART","mate/l:der","mate/p:ART","mate/m:case:dat","mate/m:number:sg","mate/m:gender:fem",">:mate/d:NK$<i>420","xip/p:DET","xip/l:der","<>:xip/const:NP#2711-2725$<i>421<b>3","<>:xip/const:DET#2711-2714$<i>420",">:xip/d:DETERM$<i>420"],["s:Informatik","i:informatik","_420#2715-2725","opennlp/p:NN","cnx/l:informatik","cnx/p:N","cnx/syn:@NH","<>:cnx/const:np#2715-2725$<i>421","tt/l:Informatik","tt/p:NN","mate/l:informatik","mate/p:NN","mate/m:case:dat","mate/m:number:sg","mate/m:gender:fem","<:mate/d:NK$<i>419",">:mate/d:NK$<i>418","xip/p:NOUN","xip/l:Informatik","<>:xip/const:NPA#2715-2725$<i>421<b>4","<>:xip/const:NOUN#2715-2725$<i>421","<:xip/d:DETERM$<i>419"],["s:steht","i:steht","_421#2726-2731","<>:p#2726-2808$<i>435","opennlp/p:VVFIN","cnx/l:stehen","cnx/p:V","cnx/m:IND","cnx/m:PRES","cnx/syn:@MAIN","tt/l:stehen","tt/p:VVFIN","mate/l:stehen","mate/p:VVFIN","mate/m:number:sg","mate/m:person:3","mate/m:tense:pres","mate/m:mood:ind","<:mate/d:MO$<i>423","xip/p:VERB","xip/l:stehen","<>:xip/const:MC#2726-2759$<i>428<b>1","<>:xip/const:VERB#2726-2731$<i>422","xip/d:VMAIN","<:xip/d:SUBJ$<i>422"],["s:a","i:a","_422#2732-2733","opennlp/p:ADV","cnx/l:a","cnx/p:N","cnx/syn:@NH","<>:cnx/const:np#2732-2733$<i>423","tt/l:a","tt/p:FM","mate/p:XY","mate/m:case:nom","mate/m:number:sg","mate/m:gender:*","xip/p:SYMBOL","xip/l:a","<>:xip/const:NP#2732-2733$<i>423<b>2","<>:xip/const:NPA#2732-2733$<i>423<b>3","<>:xip/const:NOUN#2732-2733$<i>423<b>4","<>:xip/const:SYMBOL#2732-2733$<i>423",">:xip/d:SUBJ$<i>421"],["s:für","i:für","_423#2734-2737","opennlp/p:APPR","cnx/l:für","cnx/p:PREP","cnx/syn:@PREMARK","tt/l:für","tt/p:APPR","mate/l:für","mate/p:APPR",">:mate/d:MO$<i>421","<:mate/d:NK$<i>426","xip/p:PREP","xip/l:für","<>:xip/const:PP#2734-2756$<i>427<b>2","<>:xip/const:PREP#2734-2737$<i>424"],["s:den","i:den","_424#2738-2741","opennlp/p:ART","cnx/l:der","cnx/p:DET","cnx/syn:@PREMOD","tt/l:die","tt/p:ART","mate/l:der","mate/p:ART","mate/m:case:acc","mate/m:number:sg","mate/m:gender:masc",">:mate/d:NK$<i>426","xip/p:DET","xip/l:der","<>:xip/const:NP#2738-2756$<i>427<b>3","<>:xip/const:DET#2738-2741$<i>425",">:xip/d:DETERM$<i>426"],["s:dezimalen","i:dezimalen","_425#2742-2751","opennlp/p:ADJA","cnx/l:dezimal","cnx/p:A","cnx/syn:@PREMOD","<>:cnx/const:np#2742-2756$<i>427","tt/l:dezimal","tt/p:ADJA","mate/l:dezimal","mate/p:ADJA","mate/m:case:acc","mate/m:number:sg","mate/m:gender:masc","mate/m:degree:pos",">:mate/d:NK$<i>426","xip/p:ADJ","xip/l:dezimal","<>:xip/const:NPA#2742-2756$<i>427<b>4","<>:xip/const:AP#2742-2751$<i>426<b>5","<>:xip/const:ADJ#2742-2751$<i>426",">:xip/d:NMOD$<i>426"],["s:Wert","i:wert","_426#2752-2756","opennlp/p:NN","cnx/l:wert","cnx/p:N","cnx/syn:@NH","tt/l:Wert","tt/p:NN","mate/l:wert","mate/p:NN","mate/m:case:acc","mate/m:number:sg","mate/m:gender:masc","<:mate/d:NK$<i>424","<:mate/d:NK$<i>425",">:mate/d:NK$<i>423","<:mate/d:NK$<i>427","<:mate/d:MNR$<i>429","xip/p:NOUN","xip/l:Wert","<>:xip/const:NOUN#2752-2756$<i>427","<:xip/d:DETERM$<i>424","<:xip/d:NMOD$<i>425","<:xip/d:NMOD$<i>427"],["s:97","i:97","_427#2757-2759","opennlp/p:CARD","cnx/l:97","cnx/p:NUM","cnx/syn:@NH","tt/l:97","tt/p:CARD","mate/l:97","mate/p:CARD",">:mate/d:NK$<i>426","xip/p:NUM","xip/l:97","<>:xip/const:NP#2757-2759$<i>428<b>2","<>:xip/const:NPA#2757-2759$<i>428<b>3","<>:xip/const:NUM#2757-2759$<i>428<b>4","<>:xip/const:NUM#2757-2759$<i>428","xip/d:DATE",">:xip/d:NMOD$<i>426"],["s:sowohl","i:sowohl","_428#2760-2766","opennlp/p:KON","cnx/l:sowohl","cnx/p:ADV","cnx/syn:@PREMARK","tt/l:sowohl","tt/p:KON","mate/l:sowohl","mate/p:KON",">:mate/d:CD$<i>429","xip/p:CONJ","xip/l:sowohl","<>:xip/const:CONJ#2760-2766$<i>429"],["s:im","i:im","_429#2767-2769","opennlp/p:APPRART","tt/l:im","tt/p:APPRART","mate/l:in","mate/p:APPRART","mate/m:case:dat","mate/m:number:sg","mate/m:gender:masc","<:mate/d:CD$<i>428",">:mate/d:MNR$<i>426","<:mate/d:CD$<i>431","xip/p:PREP","xip/l:in","<>:xip/const:PREP#2767-2769$<i>430"],["s:ASCII-","i:ascii-","_430#2770-2776","opennlp/p:TRUNC","tt/p:TRUNC","xip/p:TRUNC","xip/l:ASCII-","<>:xip/const:TRUNC#2770-2776$<i>431"],["s:als","i:als","_431#2777-2780","opennlp/p:KON","cnx/l:als","cnx/p:CC","cnx/syn:@CC","tt/l:als","tt/p:KOKOM","tt/l:als","tt/p:KON","tt/l:als","tt/p:KOUS","mate/l:als","mate/p:KON",">:mate/d:CD$<i>429","<:mate/d:CJ$<i>433","xip/p:CONJ","xip/l:als","<>:xip/const:MC#2777-2842$<i>442<b>1","<>:xip/const:CONJ#2777-2780$<i>432"],["s:auch","i:auch","_432#2781-2785","opennlp/p:ADV","cnx/l:auch","cnx/p:CC","cnx/syn:@CC","tt/l:auch","tt/p:ADV","mate/l:auch","mate/p:ADV",">:mate/d:MO$<i>433","xip/p:ADV","xip/l:auch","<>:xip/const:ADV#2781-2785$<i>433",">:xip/d:VMOD$<i>435"],["s:im","i:im","_433#2786-2788","opennlp/p:APPRART","tt/l:im","tt/p:APPRART","mate/l:in","mate/p:APPRART","mate/m:case:dat","mate/m:number:sg","mate/m:gender:masc","<:mate/d:MO$<i>432",">:mate/d:CJ$<i>431","<:mate/d:NK$<i>434","xip/p:PREP","xip/l:in","<>:xip/const:PP#2786-2808$<i>435<b>2","<>:xip/const:PREP#2786-2788$<i>434"],["s:Unicode-Zeichensatz","i:unicode-zeichensatz","_434#2789-2808","opennlp/p:NN","cnx/l:uni","cnx/l:code","cnx/l:zeichen","cnx/l:satz","cnx/p:N","cnx/syn:@NH","<>:cnx/const:np#2789-2808$<i>435","tt/p:NN","mate/l:unicode-zeichensatz","mate/p:NN","mate/m:case:dat","mate/m:number:sg","mate/m:gender:masc",">:mate/d:NK$<i>433","xip/p:NOUN","xip/l:Uni","xip/l:Code-zeichnen","xip/l:Satz","xip/l:Unicode-zeichnensatz","<>:xip/const:NP#2789-2808$<i>435<b>3","<>:xip/const:NPA#2789-2808$<i>435<b>4","<>:xip/const:NOUN#2789-2808$<i>435"],["s:steht","i:steht","_435#2809-2814","<>:p#2809-2891$<i>449","opennlp/p:VVFIN","cnx/l:stehen","cnx/p:V","cnx/m:IND","cnx/m:PRES","cnx/syn:@MAIN","tt/l:stehen","tt/p:VVFIN","mate/l:stehen","mate/p:VVFIN","mate/m:number:sg","mate/m:person:3","mate/m:tense:pres","mate/m:mood:ind","<:mate/d:DA$<i>436","<:mate/d:MO$<i>443","xip/p:VERB","xip/l:stehen","<>:xip/const:VERB#2809-2814$<i>436","<:xip/d:VMOD$<i>432","xip/d:VMAIN","<:xip/d:SUBJ$<i>436"],["s:A","i:a","_436#2815-2816","opennlp/p:NE","cnx/l:A","cnx/p:N","cnx/syn:@NH","<>:cnx/const:np#2815-2816$<i>437","tt/l:A","tt/p:NN","mate/p:NN","mate/m:case:nom","mate/m:number:sg","mate/m:gender:*",">:mate/d:DA$<i>435","<:mate/d:MNR$<i>437","xip/p:SYMBOL","xip/l:A","<>:xip/const:NP#2815-2816$<i>437<b>2","<>:xip/const:NPA#2815-2816$<i>437<b>3","<>:xip/const:NOUN#2815-2816$<i>437<b>4","<>:xip/const:SYMBOL#2815-2816$<i>437",">:xip/d:SUBJ$<i>435"],["s:für","i:für","_437#2817-2820","opennlp/p:APPR","cnx/l:für","cnx/p:PREP","cnx/syn:@PREMARK","tt/l:für","tt/p:APPR","mate/l:für","mate/p:APPR",">:mate/d:MNR$<i>436","<:mate/d:NK$<i>440","xip/p:PREP","xip/l:für","<>:xip/const:PP#2817-2839$<i>441<b>2","<>:xip/const:PREP#2817-2820$<i>438"],["s:den","i:den","_438#2821-2824","opennlp/p:ART","cnx/l:der","cnx/p:DET","cnx/syn:@PREMOD","tt/l:die","tt/p:ART","mate/l:der","mate/p:ART","mate/m:case:acc","mate/m:number:sg","mate/m:gender:masc",">:mate/d:NK$<i>440","xip/p:DET","xip/l:der","<>:xip/const:NP#2821-2839$<i>441<b>3","<>:xip/const:DET#2821-2824$<i>439",">:xip/d:DETERM$<i>440"],["s:dezimalen","i:dezimalen","_439#2825-2834","opennlp/p:ADJA","cnx/l:dezimal","cnx/p:A","cnx/syn:@PREMOD","<>:cnx/const:np#2825-2839$<i>441","tt/l:dezimal","tt/p:ADJA","mate/l:dezimal","mate/p:ADJA","mate/m:case:acc","mate/m:number:sg","mate/m:gender:masc","mate/m:degree:pos",">:mate/d:NK$<i>440","xip/p:ADJ","xip/l:dezimal","<>:xip/const:NPA#2825-2839$<i>441<b>4","<>:xip/const:AP#2825-2834$<i>440<b>5","<>:xip/const:ADJ#2825-2834$<i>440",">:xip/d:NMOD$<i>440"],["s:Wert","i:wert","_440#2835-2839","opennlp/p:NN","cnx/l:wert","cnx/p:N","cnx/syn:@NH","tt/l:Wert","tt/p:NN","mate/l:wert","mate/p:NN","mate/m:case:acc","mate/m:number:sg","mate/m:gender:masc","<:mate/d:NK$<i>438","<:mate/d:NK$<i>439",">:mate/d:NK$<i>437","<:mate/d:NK$<i>441","xip/p:NOUN","xip/l:Wert","<>:xip/const:NOUN#2835-2839$<i>441","<:xip/d:DETERM$<i>438","<:xip/d:NMOD$<i>439","<:xip/d:NMOD$<i>441"],["s:65","i:65","_441#2840-2842","opennlp/p:CARD","cnx/l:65","cnx/p:NUM","cnx/syn:@NH","tt/l:65","tt/p:CARD","mate/l:65","mate/p:CARD",">:mate/d:NK$<i>440","xip/p:NUM","xip/l:65","<>:xip/const:NP#2840-2842$<i>442<b>2","<>:xip/const:NPA#2840-2842$<i>442<b>3","<>:xip/const:NUM#2840-2842$<i>442<b>4","<>:xip/const:NUM#2840-2842$<i>442","xip/d:DATE",">:xip/d:NMOD$<i>440"],["s:sowohl","i:sowohl","_442#2843-2849","opennlp/p:KON","cnx/l:sowohl","cnx/p:ADV","cnx/syn:@PREMARK","tt/l:sowohl","tt/p:KON","mate/l:sowohl","mate/p:KON",">:mate/d:CD$<i>443","xip/p:CONJ","xip/l:sowohl","<>:xip/const:CONJ#2843-2849$<i>443"],["s:im","i:im","_443#2850-2852","opennlp/p:APPRART","tt/l:im","tt/p:APPRART","mate/l:in","mate/p:APPRART","mate/m:case:dat","mate/m:number:sg","mate/m:gender:masc","<:mate/d:CD$<i>442",">:mate/d:MO$<i>435","<:mate/d:CD$<i>445","xip/p:PREP","xip/l:in","<>:xip/const:PREP#2850-2852$<i>444"],["s:ASCII-","i:ascii-","_444#2853-2859","opennlp/p:TRUNC","tt/p:TRUNC","xip/p:TRUNC","xip/l:ASCII-","<>:xip/const:TRUNC#2853-2859$<i>445"],["s:als","i:als","_445#2860-2863","opennlp/p:KON","cnx/l:als","cnx/p:CC","cnx/syn:@CC","tt/l:als","tt/p:KOKOM","tt/l:als","tt/p:KON","tt/l:als","tt/p:KOUS","mate/l:als","mate/p:KON",">:mate/d:CD$<i>443","<:mate/d:CJ$<i>447","xip/p:CONJ","xip/l:als","<>:xip/const:MC#2860-2947$<i>457<b>1","<>:xip/const:CONJ#2860-2863$<i>446"],["s:auch","i:auch","_446#2864-2868","opennlp/p:ADV","cnx/l:auch","cnx/p:CC","cnx/syn:@CC","tt/l:auch","tt/p:ADV","mate/l:auch","mate/p:ADV",">:mate/d:MO$<i>447","xip/p:ADV","xip/l:auch","<>:xip/const:ADV#2864-2868$<i>447",">:xip/d:VMOD$<i>451"],["s:im","i:im","_447#2869-2871","opennlp/p:APPRART","tt/l:im","tt/p:APPRART","mate/l:in","mate/p:APPRART","mate/m:case:dat","mate/m:number:sg","mate/m:gender:masc","<:mate/d:MO$<i>446",">:mate/d:CJ$<i>445","<:mate/d:NK$<i>448","xip/p:PREP","xip/l:in","<>:xip/const:PP#2869-2891$<i>449<b>2","<>:xip/const:PREP#2869-2871$<i>448"],["s:Unicode-Zeichensatz","i:unicode-zeichensatz","_448#2872-2891","opennlp/p:NN","cnx/l:uni","cnx/l:code","cnx/l:zeichen","cnx/l:satz","cnx/p:N","cnx/syn:@NH","<>:cnx/const:np#2872-2891$<i>449","tt/p:NN","mate/l:unicode-zeichensatz","mate/p:NN","mate/m:case:dat","mate/m:number:sg","mate/m:gender:masc",">:mate/d:NK$<i>447","xip/p:NOUN","xip/l:Uni","xip/l:Code-zeichnen","xip/l:Satz","xip/l:Unicode-zeichnensatz","<>:xip/const:NP#2872-2891$<i>449<b>3","<>:xip/const:NPA#2872-2891$<i>449<b>4","<>:xip/const:NOUN#2872-2891$<i>449"],["s:als","i:als","_449#2892-2895","<>:p#2892-2919$<i>453","opennlp/p:APPR","cnx/l:als","cnx/p:CS","cnx/syn:@PREMARK","tt/l:als","tt/p:KOKOM","tt/l:als","tt/p:KON","mate/l:als","mate/p:APPR",">:mate/d:MO$<i>451","<:mate/d:NK$<i>450","xip/p:PREP","xip/l:als","<>:xip/const:PP#2892-2911$<i>451<b>2","<>:xip/const:PREP#2892-2895$<i>450"],["s:Kfz-Kennzeichen","i:kfz-kennzeichen","_450#2896-2911","opennlp/p:NN","cnx/l:kfz","cnx/l:kenn","cnx/l:zeichen","cnx/p:N","cnx/m:PL","cnx/syn:@NH","<>:cnx/const:np#2896-2911$<i>451","tt/p:NN","mate/l:kfz-kennzeichen","mate/p:NN","mate/m:case:nom","mate/m:number:sg","mate/m:gender:neut",">:mate/d:NK$<i>449","xip/p:NOUN","xip/l:Kfz-Kennzeichen","<>:xip/const:NP#2896-2911$<i>451<b>3","<>:xip/const:NPA#2896-2911$<i>451<b>4","<>:xip/const:NOUN#2896-2911$<i>451"],["s:steht","i:steht","_451#2912-2917","opennlp/p:VVFIN","cnx/l:stehen","cnx/p:V","cnx/m:IND","cnx/m:PRES","cnx/syn:@MAIN","tt/l:stehen","tt/p:VVFIN","mate/l:stehen","mate/p:VVFIN","mate/m:number:sg","mate/m:person:3","mate/m:tense:pres","mate/m:mood:ind","<:mate/d:MO$<i>449","<:mate/d:DA$<i>452","xip/p:VERB","xip/l:stehen","<>:xip/const:VERB#2912-2917$<i>452","<:xip/d:VMOD$<i>446","xip/d:VMAIN","<:xip/d:SUBJ$<i>452"],["s:A","i:a","_452#2918-2919","opennlp/p:NE","cnx/l:A","cnx/p:N","cnx/syn:@NH","<>:cnx/const:np#2918-2919$<i>453","tt/l:A","tt/p:NN","mate/p:NN",">:mate/d:DA$<i>451","xip/p:SYMBOL","xip/l:A","<>:xip/const:NP#2918-2919$<i>453<b>2","<>:xip/const:NPA#2918-2919$<i>453<b>3","<>:xip/const:NOUN#2918-2919$<i>453<b>4","<>:xip/const:SYMBOL#2918-2919$<i>453",">:xip/d:SUBJ$<i>451"],["s:in","i:in","_453#2920-2922","<>:p#2920-2948$<i>457","opennlp/p:APPR","cnx/l:in","cnx/p:PREP","cnx/syn:@PREMARK","tt/l:in","tt/p:APPR","mate/l:in","mate/p:APPR","<:mate/d:NK$<i>454","<:mate/d:MO$<i>455","xip/p:PREP","xip/l:in","<>:xip/const:PP#2920-2934$<i>455<b>2","<>:xip/const:PREP#2920-2922$<i>454"],["s:Deutschland","i:deutschland","_454#2923-2934","opennlp/p:NE","corenlp/ne_dewac_175m_600:I-LOC","corenlp/ne_hgc_175m_600:I-LOC","cnx/l:Deutschland","cnx/p:N","cnx/m:Prop","cnx/syn:@NH","<>:cnx/const:np#2923-2947$<i>457","tt/l:Deutschland","tt/p:NE","mate/l:deutschland","mate/p:NE","mate/m:case:dat","mate/m:number:sg","mate/m:gender:neut",">:mate/d:NK$<i>453","xip/p:NOUN","xip/l:Deutschland","<>:xip/const:NP#2923-2934$<i>455<b>3","<>:xip/const:NPA#2923-2934$<i>455<b>4","<>:xip/const:NOUN#2923-2934$<i>455","xip/d:LOC"],["s:für","i:für","_455#2935-2938","opennlp/p:ADJA","cnx/l:für","cnx/p:PREP","cnx/syn:@POSTMOD","tt/l:für","tt/p:APPR","mate/l:für","mate/p:APPR",">:mate/d:MO$<i>453","<:mate/d:NK$<i>456","xip/p:PREP","xip/l:für","<>:xip/const:PP#2935-2947$<i>457<b>2","<>:xip/const:PREP#2935-2938$<i>456"],["s:Augsburg","i:augsburg","_456#2939-2947","opennlp/p:NE","corenlp/ne_dewac_175m_600:I-LOC","corenlp/ne_hgc_175m_600:I-LOC","cnx/l:Augsburg","cnx/p:N","cnx/m:Prop","cnx/syn:@NH","tt/l:Augsburg","tt/p:NE","mate/l:augsburg","mate/p:NE","mate/m:case:acc","mate/m:number:sg","mate/m:gender:neut",">:mate/d:NK$<i>455","xip/p:NOUN","xip/l:Augsburg","<>:xip/const:NP#2939-2947$<i>457<b>3","<>:xip/const:NPA#2939-2947$<i>457<b>4","<>:xip/const:NOUN#2939-2947$<i>457","xip/d:LOC"],["s:in","i:in","_457#2949-2951","<>:s#2949-3120$<i>474","<>:p#2949-3085$<i>469","opennlp/p:APPR","cnx/l:in","cnx/p:PREP","cnx/syn:@PREMARK","tt/l:in","tt/p:APPR","mate/l:in","mate/p:APPR","<:mate/d:NK$<i>458","xip/p:PREP","xip/l:in","<>:xip/const:PREP#2949-2951$<i>458","<>:xip/const:TOP#2949-3085$<i>469","<>:xip/const:PP#2949-2962$<i>459<b>1"],["s:Österreich","i:österreich","_458#2952-2962","opennlp/p:ADJD","cnx/l:Österreich","cnx/p:N","cnx/m:Prop","cnx/syn:@NH","<>:cnx/const:np#2952-2977$<i>461","tt/l:Österreich","tt/p:NE","mate/l:österreich","mate/p:NE","mate/m:case:dat","mate/m:number:sg","mate/m:gender:neut",">:mate/d:NK$<i>457","<:mate/d:MNR$<i>459","xip/p:NOUN","xip/l:Österreich","<>:xip/const:NP#2952-2962$<i>459<b>2","<>:xip/const:NPA#2952-2962$<i>459<b>3","<>:xip/const:NOUN#2952-2962$<i>459","xip/d:LOC"],["s:auf","i:auf","_459#2963-2966","opennlp/p:APPR","cnx/l:auf","cnx/p:PREP","cnx/syn:@POSTMOD","tt/l:auf","tt/p:APPR","mate/l:auf","mate/p:APPR",">:mate/d:MNR$<i>458","<:mate/d:NK$<i>460","<:mate/d:CJ$<i>465","xip/p:PREP","xip/l:auf","<>:xip/const:PREP#2963-2966$<i>460","<>:xip/const:PP#2963-2977$<i>461<b>1"],["s:Fahrzeugen","i:fahrzeugen","_460#2967-2977","opennlp/p:NN","cnx/l:fahrzeug","cnx/p:N","cnx/m:PL","cnx/syn:@NH","tt/l:Fahrzeug","tt/p:NN","mate/l:fahrzeug","mate/p:NN","mate/m:case:dat","mate/m:number:pl","mate/m:gender:neut",">:mate/d:NK$<i>459","<:mate/d:AG$<i>462","xip/p:NOUN","xip/l:Fahrzeug","<>:xip/const:NP#2967-2977$<i>461<b>2","<>:xip/const:NPA#2967-2977$<i>461<b>3","<>:xip/const:NOUN#2967-2977$<i>461","<:xip/d:NMOD$<i>462"],["s:des","i:des","_461#2978-2981","opennlp/p:ART","cnx/l:der","cnx/p:DET","cnx/syn:@PREMOD","tt/l:die","tt/p:ART","mate/l:der","mate/p:ART","mate/m:case:gen","mate/m:number:sg","mate/m:gender:masc",">:mate/d:NK$<i>462","xip/p:DET","xip/l:der","<>:xip/const:DET#2978-2981$<i>462","<>:xip/const:NP#2978-2999$<i>463<b>1",">:xip/d:DETERM$<i>462"],["s:Bundespräsidenten","i:bundespräsidenten","_462#2982-2999","opennlp/p:NN","cnx/l:bund","cnx/l:präsident","cnx/p:N","cnx/syn:@NH","<>:cnx/const:np#2982-2999$<i>463","tt/l:Bundespräsident","tt/p:NN","mate/l:bundespräsident","mate/p:NN","mate/m:case:gen","mate/m:number:sg","mate/m:gender:masc","<:mate/d:NK$<i>461",">:mate/d:AG$<i>460","<:mate/d:CJ$<i>463","xip/p:NOUN","xip/l:Bund","xip/l:Präsident","xip/l:Bundespräsident","<>:xip/const:NPA#2982-2999$<i>463<b>2","<>:xip/const:NOUN#2982-2999$<i>463","<:xip/d:DETERM$<i>461",">:xip/d:NMOD$<i>460"],["s:Nationalratspräsidenten","i:nationalratspräsidenten","_463#3001-3024","opennlp/p:NN","cnx/l:national","cnx/l:rat","cnx/l:präsident","cnx/p:N","cnx/syn:@NH","<>:cnx/const:np#3001-3024$<i>464","tt/l:Nationalratspräsident","tt/p:NN","mate/l:nationalratspräsident","mate/p:NN","mate/m:case:nom","mate/m:number:pl","mate/m:gender:masc",">:mate/d:CJ$<i>462","<:mate/d:CJ$<i>464","xip/p:NOUN","xip/l:national","xip/l:Rat","xip/l:Präsident","xip/l:Nationalratspräsident","<>:xip/const:NP#3001-3024$<i>464","<>:xip/const:NPA#3001-3024$<i>464<b>1","<>:xip/const:NOUN#3001-3024$<i>464"],["s:Bundeskanzlers","i:bundeskanzlers","_464#3026-3040","opennlp/p:NN","cnx/l:bund","cnx/l:kanzler","cnx/p:N","cnx/syn:@NH","<>:cnx/const:np#3026-3040$<i>465","tt/l:Bundeskanzler","tt/p:NN","mate/l:bundeskanzler","mate/p:NN","mate/m:case:nom","mate/m:number:pl","mate/m:gender:masc",">:mate/d:CJ$<i>463","xip/p:NOUN","xip/l:Bund","xip/l:Kanzler","xip/l:Bundeskanzler","<>:xip/const:NOUN#3026-3040$<i>465"],["s:von","i:von","_465#3042-3045","opennlp/p:APPR","cnx/l:von","cnx/p:PREP","cnx/syn:@PREMARK","tt/l:von","tt/p:APPR","mate/l:von","mate/p:APPR",">:mate/d:CJ$<i>459","<:mate/d:NK$<i>466","xip/p:PREP","xip/l:von","<>:xip/const:PREP#3042-3045$<i>466","<>:xip/const:PP#3042-3055$<i>467"],["s:Ministern","i:ministern","_466#3046-3055","opennlp/p:NN","cnx/l:minister","cnx/p:N","cnx/m:PL","cnx/syn:@NH","<>:cnx/const:np#3046-3055$<i>467","tt/l:Minister","tt/p:NN","mate/l:minister","mate/p:NN","mate/m:case:dat","mate/m:number:pl","mate/m:gender:masc",">:mate/d:NK$<i>465","<:mate/d:CJ$<i>467","xip/p:NOUN","xip/l:Minister","<>:xip/const:NP#3046-3055$<i>467<b>1","<>:xip/const:NPA#3046-3055$<i>467<b>2","<>:xip/const:NOUN#3046-3055$<i>467"],["s:Gerichtshofpräsidenten","i:gerichtshofpräsidenten","_467#3057-3079","opennlp/p:NN","cnx/l:gericht","cnx/l:hof","cnx/l:präsident","cnx/p:N","cnx/syn:@NH","<>:cnx/const:np#3057-3079$<i>468","tt/p:NN","mate/l:gerichtshofpräsident","mate/p:NN","mate/m:case:dat","mate/m:number:pl","mate/m:gender:masc",">:mate/d:CJ$<i>466","xip/p:NOUN","xip/l:Gericht","xip/l:Hof","xip/l:Präsident","xip/l:Gerichtshofpräsident","<>:xip/const:NOUN#3057-3079$<i>468","xip/d:THEMA"],["s:etc..","i:etc..","_468#3080-3085","opennlp/p:ADV"],["s:in","i:in","_469#3086-3088","<>:p#3086-3120$<i>474","opennlp/p:APPR","cnx/l:in","cnx/p:PREP","cnx/syn:@PREMARK","tt/l:in","tt/p:APPR","mate/l:in","mate/p:APPR","<:mate/d:NK$<i>471","<:mate/d:MO$<i>472","xip/p:PREP","xip/l:in","<>:xip/const:TOP#3086-3120$<i>474","<>:xip/const:PP#3086-3100$<i>472<b>1","<>:xip/const:PREP#3086-3088$<i>470"],["s:der","i:der","_470#3089-3092","opennlp/p:ART","cnx/l:die","cnx/p:DET","cnx/syn:@PREMOD","tt/l:die","tt/p:ART","mate/l:der","mate/p:ART","mate/m:case:dat","mate/m:number:sg","mate/m:gender:fem",">:mate/d:NK$<i>471","xip/p:DET","xip/l:der","<>:xip/const:DET#3089-3092$<i>471","<>:xip/const:NP#3089-3100$<i>472<b>2",">:xip/d:DETERM$<i>471"],["s:Schweiz","i:schweiz","_471#3093-3100","opennlp/p:NE","corenlp/ne_dewac_175m_600:I-LOC","corenlp/ne_hgc_175m_600:I-LOC","cnx/l:Schweiz","cnx/p:N","cnx/m:Prop","cnx/syn:@NH","<>:cnx/const:np#3093-3119$<i>474","tt/l:Schweiz","tt/p:NE","mate/l:schweiz","mate/p:NE","mate/m:case:dat","mate/m:number:sg","mate/m:gender:fem","<:mate/d:NK$<i>470",">:mate/d:NK$<i>469","xip/p:NOUN","xip/l:Schweiz","<>:xip/const:NPA#3093-3100$<i>472<b>3","<>:xip/const:NOUN#3093-3100$<i>472","<:xip/d:DETERM$<i>470","xip/d:LOC"],["s:für","i:für","_472#3101-3104","opennlp/p:NE","cnx/l:für","cnx/p:PREP","cnx/syn:@POSTMOD","tt/l:für","tt/p:APPR","mate/l:für","mate/p:APPR",">:mate/d:MO$<i>469","<:mate/d:NK$<i>473","xip/p:PREP","xip/l:für","<>:xip/const:PREP#3101-3104$<i>473","<>:xip/const:PP#3101-3119$<i>474<b>1"],["s:Administration","i:administration","_473#3105-3119","opennlp/p:NE","cnx/l:administration","cnx/p:N","cnx/syn:@NH","tt/l:Administration","tt/p:NN","mate/l:administration","mate/p:NN","mate/m:case:acc","mate/m:number:sg","mate/m:gender:fem",">:mate/d:NK$<i>472","xip/p:NOUN","xip/l:Administration","<>:xip/const:NOUN#3105-3119$<i>474","<>:xip/const:NP#3105-3119$<i>474<b>2","<>:xip/const:NPA#3105-3119$<i>474<b>3"],["s:in","i:in","_474#3121-3123","<>:s#3121-3156$<i>480","<>:p#3121-3156$<i>480","opennlp/p:APPR","cnx/l:in","cnx/p:PREP","cnx/syn:@PREMARK","tt/l:in","tt/p:APPR","mate/l:in","mate/p:APPR","<:mate/d:NK$<i>475","<:mate/d:MO$<i>476","xip/p:PREP","xip/l:in","<>:xip/const:PREP#3121-3123$<i>475","<>:xip/const:TOP#3121-3156$<i>480","<>:xip/const:PP#3121-3131$<i>476<b>1"],["s:Spanien","i:spanien","_475#3124-3131","opennlp/p:NE","corenlp/ne_dewac_175m_600:I-LOC","corenlp/ne_hgc_175m_600:I-LOC","cnx/l:Spanien","cnx/p:N","cnx/m:Prop","cnx/syn:@NH","<>:cnx/const:np#3124-3155$<i>480","tt/l:Spanien","tt/p:NE","mate/l:spanien","mate/p:NE","mate/m:case:dat","mate/m:number:sg","mate/m:gender:neut",">:mate/d:NK$<i>474","xip/p:NOUN","xip/l:Spanien","<>:xip/const:NOUN#3124-3131$<i>476","<>:xip/const:NP#3124-3131$<i>476<b>2","<>:xip/const:NPA#3124-3131$<i>476<b>3","xip/d:LOC"],["s:für","i:für","_476#3132-3135","opennlp/p:ADV","cnx/l:für","cnx/p:PREP","cnx/syn:@POSTMOD","tt/l:für","tt/p:APPR","mate/l:für","mate/p:APPR",">:mate/d:MO$<i>474","<:mate/d:NK$<i>478","xip/p:PREP","xip/l:für","<>:xip/const:PP#3132-3147$<i>479<b>1","<>:xip/const:PREP#3132-3135$<i>477"],["s:die","i:die","_477#3136-3139","opennlp/p:ART","cnx/l:die","cnx/p:DET","cnx/syn:@PREMOD","tt/l:die","tt/p:ART","mate/l:der","mate/p:ART","mate/m:case:acc","mate/m:number:sg","mate/m:gender:fem",">:mate/d:NK$<i>478","xip/p:DET","xip/l:die","<>:xip/const:DET#3136-3139$<i>478","<>:xip/const:NP#3136-3147$<i>479<b>2",">:xip/d:DETERM$<i>478"],["s:Provinz","i:provinz","_478#3140-3147","opennlp/p:NN","corenlp/ne_dewac_175m_600:I-ORG","cnx/l:provinz","cnx/p:N","cnx/syn:@PREMOD","tt/l:Provinz","tt/p:NN","mate/l:provinz","mate/p:NN","mate/m:case:acc","mate/m:number:sg","mate/m:gender:fem","<:mate/d:NK$<i>477",">:mate/d:NK$<i>476","<:mate/d:NK$<i>479","xip/p:NOUN","xip/l:Provinz","<>:xip/const:NPA#3140-3147$<i>479<b>3","<>:xip/const:NOUN#3140-3147$<i>479","<:xip/d:DETERM$<i>477","<:xip/d:NMOD$<i>479"],["s:Almería","i:almería","_479#3148-3155","opennlp/p:NE","cnx/l:Almería","cnx/p:N","cnx/m:Prop","cnx/syn:@NH","tt/p:NE","mate/l:almería","mate/p:NE","mate/m:case:nom","mate/m:number:sg","mate/m:gender:*",">:mate/d:NK$<i>478","xip/p:NOUN","xip/l:Almería","<>:xip/const:NOUN#3148-3155$<i>480","<>:xip/const:NP#3148-3155$<i>480<b>1","<>:xip/const:NPA#3148-3155$<i>480<b>2",">:xip/d:NMOD$<i>478"],["s:auf","i:auf","_480#3157-3160","<>:s#3157-3214$<i>486","<>:p#3157-3214$<i>486","opennlp/p:APPR","cnx/l:auf","cnx/p:PREP","cnx/syn:@PREMARK","tt/l:auf","tt/p:APPR","mate/l:auf","mate/p:APPR",">:mate/d:MO$<i>485","<:mate/d:NK$<i>482","xip/p:PREP","xip/l:auf","<>:xip/const:PREP#3157-3160$<i>481","<>:xip/const:TOP#3157-3214$<i>486","<>:xip/const:PP#3157-3188$<i>483<b>1"],["s:internationalen","i:internationalen","_481#3161-3176","opennlp/p:ADJA","cnx/l:international","cnx/p:A","cnx/syn:@PREMOD","<>:cnx/const:np#3161-3203$<i>485","tt/l:international","tt/p:ADJA","mate/l:international","mate/p:ADJA","mate/m:case:dat","mate/m:number:pl","mate/m:gender:fem","mate/m:degree:pos",">:mate/d:NK$<i>482","xip/p:ADJ","xip/l:international","<>:xip/const:NP#3161-3188$<i>483<b>2","<>:xip/const:NPA#3161-3188$<i>483<b>3","<>:xip/const:AP#3161-3176$<i>482<b>4","<>:xip/const:ADJ#3161-3176$<i>482",">:xip/d:NMOD$<i>482"],["s:Kennzeichen","i:kennzeichen","_482#3177-3188","opennlp/p:NN","cnx/l:kenn","cnx/l:zeichen","cnx/p:N","cnx/m:PL","cnx/syn:@NH","tt/l:Kennzeichen","tt/p:NN","mate/l:kennzeichen","mate/p:NN","mate/m:case:dat","mate/m:number:pl","mate/m:gender:fem","<:mate/d:NK$<i>481",">:mate/d:NK$<i>480","<:mate/d:MNR$<i>483","xip/p:NOUN","xip/l:Kennzeichen","<>:xip/const:NOUN#3177-3188$<i>483","<:xip/d:NMOD$<i>481"],["s:für","i:für","_483#3189-3192","opennlp/p:ADJA","cnx/l:für","cnx/p:PREP","cnx/syn:@POSTMOD","tt/l:für","tt/p:APPR","mate/l:für","mate/p:APPR",">:mate/d:MNR$<i>482","<:mate/d:NK$<i>484","xip/p:PREP","xip/l:für","<>:xip/const:PREP#3189-3192$<i>484","<>:xip/const:PP#3189-3203$<i>485<b>1"],["s:Österreich","i:österreich","_484#3193-3203","opennlp/p:NN","cnx/l:Österreich","cnx/p:N","cnx/m:Prop","cnx/syn:@NH","tt/l:Österreich","tt/p:NE","mate/l:österreich","mate/p:NE","mate/m:case:acc","mate/m:number:sg","mate/m:gender:neut",">:mate/d:NK$<i>483","xip/p:NOUN","xip/l:Österreich","<>:xip/const:NP#3193-3203$<i>485<b>2","<>:xip/const:NPA#3193-3203$<i>485<b>3","<>:xip/const:NOUN#3193-3203$<i>485","xip/d:LOC"],["s:Austria","i:austria","_485#3205-3212","opennlp/p:NE","corenlp/ne_hgc_175m_600:I-ORG","cnx/l:Austria","cnx/p:N","cnx/m:Prop","cnx/syn:@NH","<>:cnx/const:np#3205-3212$<i>486","tt/p:NE","mate/p:NE","mate/m:case:nom","mate/m:number:sg","mate/m:gender:fem","<:mate/d:MO$<i>480","xip/p:NOUN","xip/l:Austria","<>:xip/const:NOUN#3205-3212$<i>486","<>:xip/const:INS#3204-3213$<i>486<b>1","<>:xip/const:NP#3205-3212$<i>486<b>2","<>:xip/const:NPA#3205-3212$<i>486<b>3"],["s:in","i:in","_486#3215-3217","<>:s#3215-3273$<i>496","<>:p#3215-3232$<i>489","opennlp/p:APPR","cnx/l:in","cnx/p:PREP","cnx/syn:@PREMARK","tt/l:in","tt/p:APPR","mate/l:in","mate/p:APPR","<:mate/d:NK$<i>488","xip/p:PREP","xip/l:in","<>:xip/const:PREP#3215-3217$<i>487","<>:xip/const:TOP#3215-3273$<i>496","<>:xip/const:MC#3215-3272$<i>496<b>1","<>:xip/const:PP#3215-3232$<i>489<b>2"],["s:der","i:der","_487#3218-3221","opennlp/p:ART","cnx/l:die","cnx/p:DET","cnx/syn:@PREMOD","tt/l:die","tt/p:ART","mate/l:der","mate/p:ART","mate/m:case:dat","mate/m:number:sg","mate/m:gender:fem",">:mate/d:NK$<i>488","xip/p:DET","xip/l:der","<>:xip/const:DET#3218-3221$<i>488","<>:xip/const:NP#3218-3232$<i>489<b>3",">:xip/d:DETERM$<i>488"],["s:Mathematik","i:mathematik","_488#3222-3232","opennlp/p:NN","cnx/l:mathematik","cnx/p:N","cnx/syn:@NH","<>:cnx/const:np#3222-3232$<i>489","tt/l:Mathematik","tt/p:NN","mate/l:mathematik","mate/p:NN","mate/m:case:dat","mate/m:number:sg","mate/m:gender:fem","<:mate/d:NK$<i>487",">:mate/d:NK$<i>486","xip/p:NOUN","xip/l:Mathematik","<>:xip/const:NOUN#3222-3232$<i>489","<>:xip/const:NPA#3222-3232$<i>489<b>4","<:xip/d:DETERM$<i>487"],["s:wird","i:wird","_489#3233-3237","<>:p#3233-3273$<i>496","opennlp/p:VAFIN","cnx/l:werden","cnx/p:V","cnx/m:IND","cnx/m:PRES","cnx/syn:@MAIN","tt/l:werden","tt/p:VAFIN","mate/l:werden","mate/p:VAFIN","mate/m:number:sg","mate/m:person:3","mate/m:tense:pres","mate/m:mood:ind","<:mate/d:SB$<i>490","<:mate/d:OC$<i>495","xip/p:VERB","xip/l:werden","<>:xip/const:VERB#3233-3237$<i>490","<:xip/d:AUXIL$<i>495"],["s:a","i:a","_490#3238-3239","opennlp/p:ADV","cnx/l:a","cnx/p:PREP","cnx/syn:@PREMARK","tt/l:a","tt/p:FM","mate/p:PPER",">:mate/d:SB$<i>489","xip/p:SYMBOL","xip/l:a","<>:xip/const:SYMBOL#3238-3239$<i>491","<>:xip/const:NP#3238-3239$<i>491<b>2","<>:xip/const:NPA#3238-3239$<i>491<b>3","<>:xip/const:NOUN#3238-3239$<i>491<b>4",">:xip/d:SUBJ$<i>495"],["s:gerne","i:gerne","_491#3240-3245","opennlp/p:ADV","cnx/l:gerne","cnx/p:ADV","cnx/syn:@ADVL","tt/l:gerne","tt/p:ADV","mate/l:gerne","mate/p:ADV",">:mate/d:MO$<i>495","xip/p:ADV","xip/l:gerne","<>:xip/const:ADV#3240-3245$<i>492",">:xip/d:VMOD$<i>495"],["s:als","i:als","_492#3246-3249","opennlp/p:APPR","cnx/l:als","cnx/p:PREP","cnx/syn:@PREMARK","tt/l:als","tt/p:KOKOM","mate/l:als","mate/p:APPR",">:mate/d:MO$<i>495","<:mate/d:NK$<i>494","xip/p:PREP","xip/l:als","<>:xip/const:PREP#3246-3249$<i>493","<>:xip/const:PP#3246-3264$<i>495<b>2"],["s:erste","i:erste","_493#3250-3255","opennlp/p:ADJA","cnx/l:erste","cnx/p:NUM","cnx/m:ORD","cnx/syn:@PREMOD","<>:cnx/const:np#3250-3264$<i>495","tt/l:erst","tt/p:ADJA","mate/l:erster","mate/p:ADJA","mate/m:case:acc","mate/m:number:pl","mate/m:gender:masc","mate/m:degree:pos",">:mate/d:NK$<i>494","xip/p:ADJ","xip/l:ein","<>:xip/const:ADJ#3250-3255$<i>494","<>:xip/const:NP#3250-3264$<i>495<b>3","<>:xip/const:NPA#3250-3264$<i>495<b>4","<>:xip/const:AP#3250-3255$<i>494<b>5",">:xip/d:NMOD$<i>494"],["s:Variable","i:variable","_494#3256-3264","opennlp/p:NN","cnx/l:variable","cnx/p:N","cnx/syn:@NH","tt/l:Variable","tt/p:NN","mate/l:variable","mate/p:NN","mate/m:case:acc","mate/m:number:pl","mate/m:gender:masc","<:mate/d:NK$<i>493",">:mate/d:NK$<i>492","xip/p:NOUN","xip/l:Variable","<>:xip/const:NOUN#3256-3264$<i>495","<:xip/d:NMOD$<i>493"],["s:genutzt","i:genutzt","_495#3265-3272","opennlp/p:VVPP","cnx/l:nutzen","cnx/p:V","cnx/m:PCP","cnx/m:PERF","cnx/syn:@MAIN","tt/l:nutzen","tt/p:VVPP","mate/l:nutzen","mate/p:VVPP","<:mate/d:MO$<i>491","<:mate/d:MO$<i>492",">:mate/d:OC$<i>489","xip/p:VERB","xip/l:nutzen","<>:xip/const:VERB#3265-3272$<i>496","<:xip/d:SUBJ$<i>490","<:xip/d:VMOD$<i>491",">:xip/d:AUXIL$<i>489","xip/d:VMAIN"],["s:bezeichnet","i:bezeichnet","_496#3274-3284","<>:s#3274-3324$<i>503","<>:p#3274-3324$<i>503","opennlp/p:VVFIN","cnx/l:bezeichnen","cnx/p:V","cnx/m:IND","cnx/m:PRES","cnx/syn:@MAIN","tt/l:bezeichnen","tt/p:VVFIN","tt/l:bezeichnen","tt/p:VVPP","mate/l:bezeichnen","mate/p:VVFIN","mate/m:number:sg","mate/m:person:3","mate/m:tense:pres","mate/m:mood:ind","<:mate/d:SB$<i>497","<:mate/d:OA$<i>499","xip/p:VERB","xip/l:bezeichnen","<>:xip/const:TOP#3274-3324$<i>503","<>:xip/const:MC#3274-3323$<i>503<b>1","<>:xip/const:VERB#3274-3284$<i>497","xip/d:VMAIN","<:xip/d:SUBJ$<i>497","<:xip/d:OBJ$<i>499"],["s:A","i:a","_497#3285-3286","opennlp/p:NE","cnx/l:a","cnx/p:PREP","cnx/syn:@PREMARK","tt/l:A","tt/p:NN","tt/l:A","tt/p:FM","mate/p:NE","mate/m:case:nom","mate/m:number:sg","mate/m:gender:*",">:mate/d:SB$<i>496","xip/p:SYMBOL","xip/l:A","<>:xip/const:NP#3285-3286$<i>498<b>2","<>:xip/const:NPA#3285-3286$<i>498<b>3","<>:xip/const:NOUN#3285-3286$<i>498<b>4","<>:xip/const:SYMBOL#3285-3286$<i>498",">:xip/d:SUBJ$<i>496"],["s:die","i:die","_498#3287-3290","opennlp/p:ART","cnx/l:die","cnx/p:DET","cnx/syn:@PREMOD","tt/l:die","tt/p:ART","mate/l:der","mate/p:ART","mate/m:case:acc","mate/m:number:sg","mate/m:gender:fem",">:mate/d:NK$<i>499","xip/p:DET","xip/l:die","<>:xip/const:NP#3287-3297$<i>500<b>2","<>:xip/const:DET#3287-3290$<i>499",">:xip/d:DETERM$<i>499"],["s:Fläche","i:fläche","_499#3291-3297","opennlp/p:NN","cnx/l:fläche","cnx/p:N","cnx/syn:@NH","<>:cnx/const:np#3291-3297$<i>500","tt/l:Fläche","tt/p:NN","mate/l:fläche","mate/p:NN","mate/m:case:acc","mate/m:number:sg","mate/m:gender:fem","<:mate/d:NK$<i>498",">:mate/d:OA$<i>496","<:mate/d:AG$<i>502","xip/p:NOUN","xip/l:Fläche","<>:xip/const:NPA#3291-3297$<i>500<b>3","<>:xip/const:NOUN#3291-3297$<i>500","<:xip/d:DETERM$<i>498",">:xip/d:OBJ$<i>496","<:xip/d:NMOD$<i>502"],["s:einer","i:einer","_500#3298-3303","opennlp/p:ART","cnx/l:eine","cnx/p:DET","cnx/syn:@PREMOD","tt/l:eine","tt/p:ART","mate/l:ein","mate/p:ART","mate/m:case:gen","mate/m:number:sg","mate/m:gender:fem",">:mate/d:NK$<i>502","xip/p:DET","xip/l:ein","<>:xip/const:NP#3298-3323$<i>503<b>2","<>:xip/const:DET#3298-3303$<i>501",">:xip/d:DETERM$<i>502"],["s:geometrischen","i:geometrischen","_501#3304-3317","opennlp/p:ADJA","cnx/l:geo","cnx/l:metrisch","cnx/p:A","cnx/syn:@PREMOD","<>:cnx/const:np#3304-3323$<i>503","tt/l:geometrisch","tt/p:ADJA","mate/l:geometrisch","mate/p:ADJA","mate/m:case:gen","mate/m:number:sg","mate/m:gender:fem","mate/m:degree:pos",">:mate/d:NK$<i>502","xip/p:ADJ","xip/l:geometrisch","<>:xip/const:ADJ#3304-3317$<i>502","<>:xip/const:NPA#3304-3323$<i>503<b>3","<>:xip/const:AP#3304-3317$<i>502<b>4",">:xip/d:NMOD$<i>502"],["s:Figur","i:figur","_502#3318-3323","opennlp/p:NN","cnx/l:figur","cnx/p:N","cnx/syn:@NH","tt/l:Figur","tt/p:NN","mate/l:figur","mate/p:NN","mate/m:case:gen","mate/m:number:sg","mate/m:gender:fem","<:mate/d:NK$<i>500","<:mate/d:NK$<i>501",">:mate/d:AG$<i>499","xip/p:NOUN","xip/l:Figur","<>:xip/const:NOUN#3318-3323$<i>503","<:xip/d:DETERM$<i>500","<:xip/d:NMOD$<i>501",">:xip/d:NMOD$<i>499"],["s:In","i:in","_503#3325-3327","<>:s#3325-3455$<i>525","<>:p#3325-3455$<i>525","opennlp/p:APPR","cnx/l:in","cnx/p:PREP","cnx/syn:@PREMARK","tt/l:in","tt/p:APPR","mate/l:in","mate/p:APPR",">:mate/d:MO$<i>512","<:mate/d:NK$<i>505","xip/p:PREP","xip/l:in","<>:xip/const:TOP#3325-3455$<i>525","<>:xip/const:MC#3325-3424$<i>522<b>1","<>:xip/const:PP#3325-3346$<i>506<b>2","<>:xip/const:PREP#3325-3327$<i>504"],["s:einem","i:einem","_504#3328-3333","opennlp/p:ART","cnx/l:ein","cnx/p:DET","cnx/syn:@PREMOD","tt/l:eine","tt/p:ART","mate/l:ein","mate/p:ART","mate/m:case:dat","mate/m:number:sg","mate/m:gender:neut",">:mate/d:NK$<i>505","xip/p:DET","xip/l:ein","<>:xip/const:DET#3328-3333$<i>505","<>:xip/const:NP#3328-3346$<i>506<b>3",">:xip/d:DETERM$<i>505"],["s:Zahlensystem","i:zahlensystem","_505#3334-3346","opennlp/p:NN","cnx/l:zahl","cnx/l:system","cnx/p:N","cnx/syn:@NH","<>:cnx/const:np#3334-3362$<i>509","tt/l:Zahlensystem","tt/p:NN","mate/l:zahlensystem","mate/p:NN","mate/m:case:dat","mate/m:number:sg","mate/m:gender:neut","<:mate/d:NK$<i>504",">:mate/d:NK$<i>503","<:mate/d:MNR$<i>506","xip/p:NOUN","xip/l:zahlen","xip/l:System","xip/l:Zahlensystem","<>:xip/const:NOUN#3334-3346$<i>506","<>:xip/const:NPA#3334-3346$<i>506<b>4","<:xip/d:DETERM$<i>504"],["s:mit","i:mit","_506#3347-3350","opennlp/p:APPR","cnx/l:mit","cnx/p:PREP","cnx/syn:@POSTMOD","tt/l:mit","tt/p:APPR","mate/l:mit","mate/p:APPR",">:mate/d:MNR$<i>505","<:mate/d:NK$<i>508","xip/p:PREP","xip/l:mit","<>:xip/const:PREP#3347-3350$<i>507","<>:xip/const:PP#3347-3362$<i>509<b>2"],["s:einer","i:einer","_507#3351-3356","opennlp/p:ART","cnx/l:eine","cnx/p:DET","cnx/syn:@PREMOD","tt/l:eine","tt/p:ART","mate/l:ein","mate/p:ART","mate/m:case:dat","mate/m:number:sg","mate/m:gender:fem",">:mate/d:NK$<i>508","xip/p:DET","xip/l:ein","<>:xip/const:DET#3351-3356$<i>508","<>:xip/const:NP#3351-3362$<i>509<b>3",">:xip/d:DETERM$<i>508"],["s:Basis","i:basis","_508#3357-3362","opennlp/p:NN","cnx/l:basis","cnx/p:N","cnx/syn:@NH","tt/l:Basis","tt/p:NN","mate/l:basis","mate/p:NN","mate/m:case:dat","mate/m:number:sg","mate/m:gender:fem","<:mate/d:NK$<i>507",">:mate/d:NK$<i>506","<:mate/d:MNR$<i>509","xip/p:NOUN","xip/l:Basis","<>:xip/const:NOUN#3357-3362$<i>509","<>:xip/const:NPA#3357-3362$<i>509<b>4","<:xip/d:DETERM$<i>507"],["s:größer","i:größer","_509#3363-3369","opennlp/p:APPR","cnx/l:gross","cnx/p:A","cnx/m:CMP","cnx/syn:@NH","tt/l:groß","tt/p:ADJD","mate/l:groß","mate/p:ADJD","mate/m:degree:comp",">:mate/d:MNR$<i>508","<:mate/d:CC$<i>511","xip/p:ADJ","xip/l:groß","<>:xip/const:ADJ#3363-3369$<i>510","<>:xip/const:AP#3363-3369$<i>510<b>2",">:xip/d:VMOD$<i>512"],["s:als","i:als","_510#3370-3373","opennlp/p:APPR","cnx/l:als","cnx/p:PREP","cnx/syn:@POSTMOD","tt/l:als","tt/p:KOKOM","mate/l:als","mate/p:KOKOM",">:mate/d:CM$<i>511","xip/p:PREP","xip/l:als","<>:xip/const:PREP#3370-3373$<i>511","<>:xip/const:PP#3370-3376$<i>512<b>2"],["s:10","i:10","_511#3374-3376","opennlp/p:CARD","cnx/l:10","cnx/p:NUM","cnx/syn:@NH","tt/l:10","tt/p:CARD","mate/l:10","mate/p:CARD","<:mate/d:CM$<i>510",">:mate/d:CC$<i>509","xip/p:NUM","xip/l:10","<>:xip/const:NUM#3374-3376$<i>512","<>:xip/const:NP#3374-3376$<i>512<b>3","<>:xip/const:NPA#3374-3376$<i>512<b>4","<>:xip/const:NUM#3374-3376$<i>512<b>5","xip/d:DATE","xip/d:TIME"],["s:steht","i:steht","_512#3377-3382","opennlp/p:VVFIN","cnx/l:stehen","cnx/p:V","cnx/m:IND","cnx/m:PRES","cnx/syn:@MAIN","tt/l:stehen","tt/p:VVFIN","mate/l:stehen","mate/p:VVFIN","mate/m:number:sg","mate/m:person:3","mate/m:tense:pres","mate/m:mood:ind","<:mate/d:MO$<i>503","<:mate/d:DA$<i>513","<:mate/d:CD$<i>514","<:mate/d:MO$<i>516","<:mate/d:MO$<i>517","xip/p:VERB","xip/l:stehen","<>:xip/const:VERB#3377-3382$<i>513","<:xip/d:VMOD$<i>509","xip/d:VMAIN","<:xip/d:SUBJ$<i>513","<:xip/d:SUBJ$<i>515","<:xip/d:VMOD$<i>516"],["s:A","i:a","_513#3383-3384","opennlp/p:NE","cnx/l:a","cnx/p:PREP","cnx/syn:@PREMARK","tt/l:A","tt/p:NN","mate/p:NN","mate/m:case:nom","mate/m:number:sg","mate/m:gender:*",">:mate/d:DA$<i>512","xip/p:SYMBOL","xip/l:A","<>:xip/const:SYMBOL#3383-3384$<i>514","<>:xip/const:NP#3383-3384$<i>514<b>2","<>:xip/const:NPA#3383-3384$<i>514<b>3","<>:xip/const:NOUN#3383-3384$<i>514<b>4",">:xip/d:SUBJ$<i>512","<:xip/d:COORD$<i>514"],["s:oder","i:oder","_514#3385-3389","opennlp/p:KON","cnx/l:oder","cnx/p:CC","cnx/syn:@CC","tt/l:oder","tt/p:KON","mate/l:oder","mate/p:KON",">:mate/d:CD$<i>512","<:mate/d:CJ$<i>515","<:mate/d:CJ$<i>522","xip/p:CONJ","xip/l:oder","<>:xip/const:CONJ#3385-3389$<i>515",">:xip/d:COORD$<i>513",">:xip/d:COORD$<i>515"],["s:a","i:a","_515#3390-3391","opennlp/p:NE","cnx/l:a","cnx/p:PREP","cnx/syn:@PREMARK","tt/l:a","tt/p:FM","mate/p:PTKA",">:mate/d:CJ$<i>514","xip/p:SYMBOL","xip/l:a","<>:xip/const:SYMBOL#3390-3391$<i>516","<>:xip/const:NP#3390-3391$<i>516<b>2","<>:xip/const:NPA#3390-3391$<i>516<b>3","<>:xip/const:NOUN#3390-3391$<i>516<b>4","<:xip/d:COORD$<i>514",">:xip/d:SUBJ$<i>512"],["s:häufig","i:häufig","_516#3392-3398","opennlp/p:ADJD","cnx/l:häufig","cnx/p:A","cnx/syn:@NH","tt/l:häufig","tt/p:ADJD","mate/l:häufig","mate/p:ADJD","mate/m:degree:pos",">:mate/d:MO$<i>512","xip/p:ADJ","xip/l:häufig","<>:xip/const:ADJ#3392-3398$<i>517","<>:xip/const:AP#3392-3398$<i>517<b>2",">:xip/d:VMOD$<i>512"],["s:für","i:für","_517#3399-3402","opennlp/p:APPR","cnx/l:für","cnx/p:PREP","cnx/syn:@POSTMOD","tt/l:für","tt/p:APPR","mate/l:für","mate/p:APPR",">:mate/d:MO$<i>512","<:mate/d:NK$<i>520","xip/p:PREP","xip/l:für","<>:xip/const:PP#3399-3421$<i>521<b>2","<>:xip/const:PREP#3399-3402$<i>518"],["s:den","i:den","_518#3403-3406","opennlp/p:ART","cnx/l:der","cnx/p:DET","cnx/syn:@PREMOD","tt/l:die","tt/p:ART","mate/l:der","mate/p:ART","mate/m:case:acc","mate/m:number:sg","mate/m:gender:masc",">:mate/d:NK$<i>520","xip/p:DET","xip/l:der","<>:xip/const:DET#3403-3406$<i>519","<>:xip/const:NP#3403-3421$<i>521<b>3",">:xip/d:DETERM$<i>520"],["s:dezimalen","i:dezimalen","_519#3407-3416","opennlp/p:ADJA","cnx/l:dezimal","cnx/p:A","cnx/syn:@PREMOD","<>:cnx/const:np#3407-3421$<i>521","tt/l:dezimal","tt/p:ADJA","mate/l:dezimal","mate/p:ADJA","mate/m:case:acc","mate/m:number:sg","mate/m:gender:masc","mate/m:degree:pos",">:mate/d:NK$<i>520","xip/p:ADJ","xip/l:dezimal","<>:xip/const:ADJ#3407-3416$<i>520","<>:xip/const:NPA#3407-3421$<i>521<b>4","<>:xip/const:AP#3407-3416$<i>520<b>5",">:xip/d:NMOD$<i>520"],["s:Wert","i:wert","_520#3417-3421","opennlp/p:NN","cnx/l:wert","cnx/p:N","cnx/syn:@NH","tt/l:Wert","tt/p:NN","mate/l:wert","mate/p:NN","mate/m:case:acc","mate/m:number:sg","mate/m:gender:masc","<:mate/d:NK$<i>518","<:mate/d:NK$<i>519",">:mate/d:NK$<i>517","<:mate/d:NK$<i>521","xip/p:NOUN","xip/l:Wert","<>:xip/const:NOUN#3417-3421$<i>521","<:xip/d:DETERM$<i>518","<:xip/d:NMOD$<i>519","<:xip/d:NMOD$<i>521"],["s:10","i:10","_521#3422-3424","opennlp/p:CARD","cnx/l:10","cnx/p:NUM","cnx/syn:@NH","tt/l:10","tt/p:CARD","mate/l:10","mate/p:CARD",">:mate/d:NK$<i>520","xip/p:NUM","xip/l:10","<>:xip/const:NP#3422-3424$<i>522<b>2","<>:xip/const:NPA#3422-3424$<i>522<b>3","<>:xip/const:NUM#3422-3424$<i>522<b>4","<>:xip/const:NUM#3422-3424$<i>522","xip/d:DATE",">:xip/d:NMOD$<i>520","xip/d:TIME"],["s:siehe","i:siehe","_522#3426-3431","opennlp/p:VVFIN","cnx/l:sehen","cnx/p:V","cnx/m:IMP","cnx/syn:@MAIN","tt/l:sehen","tt/p:VVIMP","mate/l:sehen","mate/p:VVIMP","mate/m:number:sg","mate/m:person:2","mate/m:mood:imp",">:mate/d:CJ$<i>514","<:mate/d:OA$<i>524","xip/p:VERB","xip/l:sehen","<>:xip/const:VERB#3426-3431$<i>523","<>:xip/const:MC#3426-3454$<i>525<b>1","xip/d:VMAIN","<:xip/d:VMOD$<i>523","<:xip/d:OBJ$<i>524"],["s:auch","i:auch","_523#3432-3436","opennlp/p:ADV","cnx/l:auch","cnx/p:ADV","cnx/syn:@ADVL","tt/l:auch","tt/p:ADV","mate/l:auch","mate/p:ADV",">:mate/d:MO$<i>524","xip/p:ADV","xip/l:auch","<>:xip/const:ADV#3432-3436$<i>524",">:xip/d:VMOD$<i>522"],["s:Hexadezimalsystem","i:hexadezimalsystem","_524#3437-3454","opennlp/p:NN","cnx/l:Hexadezimalsystem","cnx/p:N","cnx/m:Prop","cnx/syn:@NH","<>:cnx/const:np#3437-3454$<i>525","tt/l:Hexadezimalsystem","tt/p:NN","mate/l:hexadezimalsystem","mate/p:NN","mate/m:case:acc","mate/m:number:sg","mate/m:gender:neut","<:mate/d:MO$<i>523",">:mate/d:OA$<i>522","xip/p:NOUN","xip/l:hexadezimal","xip/l:System","xip/l:Hexadezimalsystem","<>:xip/const:NOUN#3437-3454$<i>525","<>:xip/const:NP#3437-3454$<i>525<b>2","<>:xip/const:NPA#3437-3454$<i>525<b>3",">:xip/d:OBJ$<i>522"],["s:steht","i:steht","_525#3456-3461","<>:s#3456-3551$<i>541","<>:p#3456-3551$<i>541","opennlp/p:VVFIN","cnx/l:stehen","cnx/p:V","cnx/m:IND","cnx/m:PRES","cnx/syn:@MAIN","tt/l:stehen","tt/p:VVFIN","mate/l:stehen","mate/p:VVFIN","mate/m:number:sg","mate/m:person:3","mate/m:tense:pres","mate/m:mood:ind","<:mate/d:SB$<i>527","xip/p:VERB","xip/l:stehen","<>:xip/const:VERB#3456-3461$<i>526","<>:xip/const:TOP#3456-3551$<i>541","<>:xip/const:MC#3456-3525$<i>537<b>1","xip/d:VMAIN","<:xip/d:SUBJ$<i>527"],["s:das","i:das","_526#3462-3465","opennlp/p:ART","cnx/l:das","cnx/p:DET","cnx/syn:@PREMOD","tt/l:die","tt/p:ART","mate/l:der","mate/p:ART","mate/m:case:nom","mate/m:number:sg","mate/m:gender:neut",">:mate/d:NK$<i>527","xip/p:DET","xip/l:das","<>:xip/const:DET#3462-3465$<i>527","<>:xip/const:NP#3462-3472$<i>528<b>2",">:xip/d:DETERM$<i>527"],["s:Symbol","i:symbol","_527#3466-3472","opennlp/p:NN","cnx/l:symbol","cnx/p:N","cnx/syn:@NH","<>:cnx/const:np#3466-3472$<i>528","tt/l:Symbol","tt/p:NN","mate/l:symbol","mate/p:NN","mate/m:case:nom","mate/m:number:sg","mate/m:gender:neut","<:mate/d:NK$<i>526",">:mate/d:SB$<i>525","<:mate/d:APP$<i>533","<:mate/d:MNR$<i>534","xip/p:NOUN","xip/l:Symbol","<>:xip/const:NOUN#3466-3472$<i>528","<>:xip/const:NPA#3466-3472$<i>528<b>3","<:xip/d:DETERM$<i>526",">:xip/d:SUBJ$<i>525"],["s:ein","i:ein","_528#3476-3479","opennlp/p:ART","cnx/l:ein","cnx/p:NUM","cnx/syn:@NH","tt/l:eine","tt/p:ART","tt/l:ein","tt/p:PTKVZ","mate/l:ein","mate/p:ART","mate/m:case:acc","mate/m:number:sg","mate/m:gender:neut",">:mate/d:NK$<i>533","xip/p:DET","xip/l:ein","<>:xip/const:DET#3476-3479$<i>529",">:xip/d:DETERM$<i>533"],["s:auf","i:auf","_529#3480-3483","opennlp/p:APPR","cnx/l:auf","cnx/p:PREP","cnx/syn:@POSTMOD","tt/l:auf","tt/p:APPR","mate/l:auf","mate/p:APPR",">:mate/d:MO$<i>532","<:mate/d:NK$<i>531","xip/p:PREP","xip/l:auf","<>:xip/const:PREP#3480-3483$<i>530"],["s:den","i:den","_530#3484-3487","opennlp/p:ART","cnx/l:der","cnx/p:DET","cnx/syn:@PREMOD","tt/l:die","tt/p:ART","mate/l:der","mate/p:ART","mate/m:case:acc","mate/m:number:sg","mate/m:gender:masc",">:mate/d:NK$<i>531","xip/p:DET","xip/l:der","<>:xip/const:DET#3484-3487$<i>531",">:xip/d:DETERM$<i>531"],["s:Kopf","i:kopf","_531#3488-3492","opennlp/p:NN","cnx/l:kopf","cnx/p:N","cnx/syn:@NH","<>:cnx/const:np#3488-3492$<i>532","tt/l:Kopf","tt/p:NN","mate/l:kopf","mate/p:NN","mate/m:case:acc","mate/m:number:sg","mate/m:gender:masc","<:mate/d:NK$<i>530",">:mate/d:NK$<i>529","xip/p:NOUN","xip/l:Kopf","<>:xip/const:NOUN#3488-3492$<i>532","<:xip/d:DETERM$<i>530"],["s:gestelltes","i:gestelltes","_532#3493-3503","opennlp/p:ADJA","cnx/l:gestellt","cnx/p:A","cnx/syn:@NH","tt/l:gestellt","tt/p:ADJA","mate/l:gestellt","mate/p:ADJA","mate/m:case:acc","mate/m:number:sg","mate/m:gender:neut","mate/m:degree:pos","<:mate/d:MO$<i>529",">:mate/d:NK$<i>533","xip/p:ADJ","xip/l:stellen","<>:xip/const:ADJ#3493-3503$<i>533",">:xip/d:NMOD$<i>533"],["s:A","i:a","_533#3504-3505","opennlp/p:NN","cnx/l:a","cnx/p:PREP","cnx/syn:@PREMARK","tt/l:A","tt/p:NN","mate/p:NN","mate/m:case:acc","mate/m:number:sg","mate/m:gender:neut","<:mate/d:NK$<i>528","<:mate/d:NK$<i>532",">:mate/d:APP$<i>527","xip/p:SYMBOL","xip/l:A","<>:xip/const:SYMBOL#3504-3505$<i>534","<:xip/d:DETERM$<i>528","<:xip/d:NMOD$<i>532"],["s:für","i:für","_534#3507-3510","opennlp/p:APPR","cnx/l:für","cnx/p:PREP","cnx/syn:@PREMARK","tt/l:für","tt/p:APPR","mate/l:für","mate/p:APPR",">:mate/d:MNR$<i>527","<:mate/d:NK$<i>536","xip/p:PREP","xip/l:für","<>:xip/const:PREP#3507-3510$<i>535"],["s:den","i:den","_535#3511-3514","opennlp/p:ART","cnx/l:der","cnx/p:DET","cnx/syn:@PREMOD","tt/l:die","tt/p:ART","mate/l:der","mate/p:ART","mate/m:case:acc","mate/m:number:sg","mate/m:gender:masc",">:mate/d:NK$<i>536","xip/p:DET","xip/l:der","<>:xip/const:DET#3511-3514$<i>536",">:xip/d:DETERM$<i>536"],["s:Allquantor","i:allquantor","_536#3515-3525","opennlp/p:NN","cnx/l:allquantor","cnx/p:N","cnx/syn:@NH","<>:cnx/const:np#3515-3525$<i>537","tt/p:NN","mate/l:allquantor","mate/p:NN","mate/m:case:acc","mate/m:number:sg","mate/m:gender:masc","<:mate/d:NK$<i>535",">:mate/d:NK$<i>534","xip/p:NOUN","xip/l:All","xip/l:Quantor","xip/l:Allquantor","<>:xip/const:NOUN#3515-3525$<i>537","<:xip/d:DETERM$<i>535"],["s:„für","i:„für","_537#3526-3530","opennlp/p:APPR","<>:xip/const:MC#3526-3550$<i>541<b>1"],["s:alle","i:alle","_538#3531-3535","opennlp/p:PIAT","cnx/l:alle","cnx/p:PRON","cnx/syn:@PREMOD","tt/l:alle","tt/p:PIAT","mate/l:aller","mate/p:PIAT","mate/m:case:acc","mate/m:number:pl","mate/m:gender:*",">:mate/d:NK$<i>539","xip/p:DET","xip/l:alle","<>:xip/const:DET#3531-3535$<i>539","<>:xip/const:NP#3531-3544$<i>540",">:xip/d:DETERM$<i>539"],["s:Elemente","i:elemente","_539#3536-3544","opennlp/p:NN","cnx/l:element","cnx/p:N","cnx/m:PL","cnx/syn:@NH","<>:cnx/const:np#3536-3544$<i>540","tt/l:Element","tt/p:NN","mate/l:element","mate/p:NN","mate/m:case:acc","mate/m:number:pl","mate/m:gender:*","<:mate/d:NK$<i>538","xip/p:NOUN","xip/l:Element","<>:xip/const:NOUN#3536-3544$<i>540","<>:xip/const:NPA#3536-3544$<i>540<b>1","<:xip/d:DETERM$<i>538"],["s:gilt“","i:gilt“","_540#3545-3550","opennlp/p:VVFIN"],["s:in","i:in","_541#3552-3554","<>:s#3552-3650$<i>558","<>:p#3552-3564$<i>544","opennlp/p:APPR","cnx/l:in","cnx/p:PREP","cnx/syn:@PREMARK","tt/l:in","tt/p:APPR","mate/l:in","mate/p:APPR","<:mate/d:NK$<i>543","xip/p:PREP","xip/l:in","<>:xip/const:TOP#3552-3650$<i>558","<>:xip/const:MC#3552-3649$<i>558<b>1","<>:xip/const:PP#3552-3564$<i>544<b>2","<>:xip/const:PREP#3552-3554$<i>542"],["s:der","i:der","_542#3555-3558","opennlp/p:ART","cnx/l:die","cnx/p:DET","cnx/syn:@PREMOD","tt/l:die","tt/p:ART","mate/l:der","mate/p:ART","mate/m:case:dat","mate/m:number:sg","mate/m:gender:fem",">:mate/d:NK$<i>543","xip/p:DET","xip/l:der","<>:xip/const:NP#3555-3564$<i>544<b>3","<>:xip/const:DET#3555-3558$<i>543",">:xip/d:DETERM$<i>543"],["s:Musik","i:musik","_543#3559-3564","opennlp/p:NN","cnx/l:musik","cnx/p:N","cnx/syn:@NH","<>:cnx/const:np#3559-3564$<i>544","tt/l:Musik","tt/p:NN","mate/l:musik","mate/p:NN","mate/m:case:dat","mate/m:number:sg","mate/m:gender:fem","<:mate/d:NK$<i>542",">:mate/d:NK$<i>541","xip/p:NOUN","xip/l:Musik","<>:xip/const:NPA#3559-3564$<i>544<b>4","<>:xip/const:NOUN#3559-3564$<i>544","<:xip/d:DETERM$<i>542"],["s:steht","i:steht","_544#3565-3570","<>:p#3565-3650$<i>558","opennlp/p:VVFIN","cnx/l:stehen","cnx/p:V","cnx/m:IND","cnx/m:PRES","cnx/syn:@MAIN","tt/l:stehen","tt/p:VVFIN","mate/l:stehen","mate/p:VVFIN","mate/m:number:sg","mate/m:person:3","mate/m:tense:pres","mate/m:mood:ind","<:mate/d:MO$<i>546","xip/p:VERB","xip/l:stehen","<>:xip/const:VERB#3565-3570$<i>545","xip/d:VMAIN","<:xip/d:SUBJ$<i>545","<:xip/d:OBJ$<i>549","<:xip/d:OBJ$<i>552","<:xip/d:VPREF$<i>555"],["s:a","i:a","_545#3571-3572","opennlp/p:ADV","cnx/l:a","cnx/p:N","cnx/syn:@NH","<>:cnx/const:np#3571-3572$<i>546","tt/l:a","tt/p:FM","mate/p:XY","mate/m:case:nom","mate/m:number:sg","mate/m:gender:*","xip/p:SYMBOL","xip/l:a","<>:xip/const:NP#3571-3572$<i>546<b>2","<>:xip/const:NPA#3571-3572$<i>546<b>3","<>:xip/const:NOUN#3571-3572$<i>546<b>4","<>:xip/const:SYMBOL#3571-3572$<i>546",">:xip/d:SUBJ$<i>544"],["s:für","i:für","_546#3573-3576","opennlp/p:APPR","cnx/l:für","cnx/p:PREP","cnx/syn:@PREMARK","tt/l:für","tt/p:APPR","mate/l:für","mate/p:APPR",">:mate/d:MO$<i>544","<:mate/d:NK$<i>548","xip/p:PREP","xip/l:für","<>:xip/const:PP#3573-3590$<i>549<b>2","<>:xip/const:PREP#3573-3576$<i>547"],["s:den","i:den","_547#3577-3580","opennlp/p:ART","cnx/l:der","cnx/p:DET","cnx/syn:@PREMOD","tt/l:die","tt/p:ART","mate/l:der","mate/p:ART","mate/m:case:acc","mate/m:number:sg","mate/m:gender:masc",">:mate/d:NK$<i>548","xip/p:DET","xip/l:der","<>:xip/const:NP#3577-3590$<i>549<b>3","<>:xip/const:DET#3577-3580$<i>548",">:xip/d:DETERM$<i>548"],["s:Kammerton","i:kammerton","_548#3581-3590","opennlp/p:NN","cnx/l:kammer","cnx/l:ton","cnx/p:N","cnx/syn:@NH","<>:cnx/const:np#3581-3590$<i>549","tt/l:Kammerton","tt/p:NN","mate/l:kammerton","mate/p:NN","mate/m:case:acc","mate/m:number:sg","mate/m:gender:masc","<:mate/d:NK$<i>547",">:mate/d:NK$<i>546","<:mate/d:CD$<i>550","<:mate/d:PAR$<i>556","xip/p:NOUN","xip/l:Kammer","xip/l:Ton","xip/l:Kammerton","<>:xip/const:NPA#3581-3590$<i>549<b>4","<>:xip/const:NOUN#3581-3590$<i>549","<:xip/d:DETERM$<i>547"],["s:a’","i:a’","_549#3591-3593","opennlp/p:VVPP","xip/p:SYMBOL","xip/l:a","<>:xip/const:SYMBOL#3591-3593$<i>550","<>:xip/const:NP#3591-3593$<i>550<b>2","<>:xip/const:NPA#3591-3593$<i>550<b>3","<>:xip/const:NOUN#3591-3593$<i>550<b>4",">:xip/d:OBJ$<i>544","<:xip/d:COORD$<i>550"],["s:und","i:und","_550#3594-3597","opennlp/p:KON","cnx/l:und","cnx/p:CC","cnx/syn:@CC","tt/l:und","tt/p:KON","mate/l:und","mate/p:KON",">:mate/d:CD$<i>548","<:mate/d:CJ$<i>552","xip/p:CONJ","xip/l:und","<>:xip/const:CONJ#3594-3597$<i>551",">:xip/d:COORD$<i>549",">:xip/d:COORD$<i>552"],["s:mehrere","i:mehrere","_551#3598-3605","opennlp/p:PIAT","cnx/l:mehrere","cnx/p:PRON","cnx/syn:@PREMOD","tt/l:mehrere","tt/p:PIAT","mate/l:mehrere","mate/p:PIAT","mate/m:case:acc","mate/m:number:pl","mate/m:gender:masc",">:mate/d:NK$<i>552","xip/p:ADJ","xip/l:mehrere","<>:xip/const:NP#3598-3610$<i>553<b>2","<>:xip/const:NPA#3598-3610$<i>553<b>3","<>:xip/const:AP#3598-3605$<i>552<b>4","<>:xip/const:ADJ#3598-3605$<i>552",">:xip/d:NMOD$<i>552"],["s:Töne","i:töne","_552#3606-3610","opennlp/p:NN","cnx/l:ton","cnx/p:N","cnx/m:PL","cnx/syn:@NH","<>:cnx/const:np#3606-3626$<i>555","tt/l:Ton","tt/p:NN","mate/l:ton","mate/p:NN","mate/m:case:acc","mate/m:number:pl","mate/m:gender:masc","<:mate/d:NK$<i>551",">:mate/d:CJ$<i>550","<:mate/d:MNR$<i>553","xip/p:NOUN","xip/l:Ton","<>:xip/const:NOUN#3606-3610$<i>553","<:xip/d:COORD$<i>550","<:xip/d:NMOD$<i>551",">:xip/d:OBJ$<i>544"],["s:im","i:im","_553#3611-3613","opennlp/p:APPRART","tt/l:im","tt/p:APPRART","mate/l:in","mate/p:APPRART","mate/m:case:dat","mate/m:number:sg","mate/m:gender:masc",">:mate/d:MNR$<i>552","<:mate/d:NK$<i>554","xip/p:PREP","xip/l:in","<>:xip/const:PP#3611-3626$<i>555<b>2","<>:xip/const:PREP#3611-3613$<i>554"],["s:Oktavabstand","i:oktavabstand","_554#3614-3626","opennlp/p:NN","cnx/l:oktavabstand","cnx/p:N","cnx/syn:@NH","tt/p:NN","mate/l:oktavabstand","mate/p:NN","mate/m:case:dat","mate/m:number:sg","mate/m:gender:masc",">:mate/d:NK$<i>553","<:mate/d:MNR$<i>555","xip/p:NOUN","xip/l:Oktav","xip/l:Abstand","xip/l:Oktavabstand","<>:xip/const:NP#3614-3626$<i>555<b>3","<>:xip/const:NPA#3614-3626$<i>555<b>4","<>:xip/const:NOUN#3614-3626$<i>555"],["s:dazu","i:dazu","_555#3627-3631","opennlp/p:PROAV","cnx/l:dazu","cnx/p:ADV","cnx/syn:@ADVL","tt/l:dazu","tt/p:PROAV","mate/l:dazu","mate/p:PROAV",">:mate/d:MNR$<i>554","xip/p:PTCL","xip/l:dazu","<>:xip/const:PTCL#3627-3631$<i>556",">:xip/d:VPREF$<i>544"],["s:siehe","i:siehe","_556#3633-3638","opennlp/p:VVIMP","cnx/l:sehen","cnx/p:V","cnx/m:IMP","cnx/syn:@MAIN","tt/l:sehen","tt/p:VVIMP","mate/l:sehen","mate/p:VVIMP","mate/m:number:sg","mate/m:person:2","mate/m:mood:imp",">:mate/d:PAR$<i>548","<:mate/d:OA$<i>557","xip/p:VERB","xip/l:sehen","<>:xip/const:INS#3632-3649$<i>558<b>2","<>:xip/const:VERB#3633-3638$<i>557"],["s:Tonsystem","i:tonsystem","_557#3639-3648","opennlp/p:NN","cnx/l:ton","cnx/l:system","cnx/p:N","cnx/syn:@NH","<>:cnx/const:np#3639-3648$<i>558","tt/l:Tonsystem","tt/p:NN","mate/l:tonsystem","mate/p:NN","mate/m:case:acc","mate/m:number:sg","mate/m:gender:neut",">:mate/d:OA$<i>556","xip/p:NOUN","xip/l:tonen","xip/l:System","xip/l:Tonensystem","<>:xip/const:NP#3639-3648$<i>558<b>3","<>:xip/const:NPA#3639-3648$<i>558<b>4","<>:xip/const:NOUN#3639-3648$<i>558"],["s:bezeichnet","i:bezeichnet","_558#3651-3661","<>:s#3651-3713$<i>568","<>:p#3651-3681$<i>563","opennlp/p:VVFIN","cnx/l:bezeichnen","cnx/p:V","cnx/m:IND","cnx/m:PRES","cnx/syn:@MAIN","tt/l:bezeichnen","tt/p:VVFIN","tt/l:bezeichnen","tt/p:VVPP","mate/l:bezeichnen","mate/p:VVFIN","mate/m:number:sg","mate/m:person:3","mate/m:tense:pres","mate/m:mood:ind","<:mate/d:SB$<i>559","<:mate/d:OA$<i>561","xip/p:VERB","xip/l:bezeichnen","<>:xip/const:VERB#3651-3661$<i>559","<>:xip/const:TOP#3651-3713$<i>568","<>:xip/const:MC#3651-3680$<i>563<b>1","xip/d:VMAIN","<:xip/d:SUBJ$<i>559","<:xip/d:OBJ$<i>561"],["s:A","i:a","_559#3662-3663","opennlp/p:NE","cnx/l:a","cnx/p:PREP","cnx/syn:@PREMARK","tt/l:A","tt/p:NN","tt/l:A","tt/p:FM","mate/p:NE","mate/m:case:nom","mate/m:number:sg","mate/m:gender:*",">:mate/d:SB$<i>558","xip/p:SYMBOL","xip/l:A","<>:xip/const:SYMBOL#3662-3663$<i>560","<>:xip/const:NP#3662-3663$<i>560<b>2","<>:xip/const:NPA#3662-3663$<i>560<b>3","<>:xip/const:NOUN#3662-3663$<i>560<b>4",">:xip/d:SUBJ$<i>558"],["s:die","i:die","_560#3664-3667","opennlp/p:ART","cnx/l:die","cnx/p:DET","cnx/syn:@PREMOD","tt/l:die","tt/p:ART","mate/l:der","mate/p:ART","mate/m:case:nom","mate/m:number:sg","mate/m:gender:fem",">:mate/d:NK$<i>561","xip/p:DET","xip/l:die","<>:xip/const:DET#3664-3667$<i>561","<>:xip/const:NP#3664-3674$<i>562<b>2",">:xip/d:DETERM$<i>561"],["s:Tonart","i:tonart","_561#3668-3674","opennlp/p:NN","cnx/l:ton","cnx/l:art","cnx/p:N","cnx/syn:@PREMOD","<>:cnx/const:np#3668-3680$<i>563","tt/l:Tonart","tt/p:NN","mate/l:tonart","mate/p:NN","mate/m:case:nom","mate/m:number:sg","mate/m:gender:fem","<:mate/d:NK$<i>560",">:mate/d:OA$<i>558","<:mate/d:NK$<i>562","xip/p:NOUN","xip/l:tonen","xip/l:Art","xip/l:Tonenart","<>:xip/const:NOUN#3668-3674$<i>562","<>:xip/const:NPA#3668-3674$<i>562<b>3","<:xip/d:DETERM$<i>560",">:xip/d:OBJ$<i>558","<:xip/d:NMOD$<i>562"],["s:A-Dur","i:a-dur","_562#3675-3680","opennlp/p:NE","cnx/l:A-dur","cnx/p:N","cnx/m:Prop","cnx/syn:@NH","tt/l:A-Dur","tt/p:NN","mate/l:a-dur","mate/p:NE","mate/m:case:nom","mate/m:number:sg","mate/m:gender:*",">:mate/d:NK$<i>561","xip/p:NOUN","xip/l:A-Dur","<>:xip/const:NOUN#3675-3680$<i>563","<>:xip/const:NP#3675-3680$<i>563<b>2","<>:xip/const:NPA#3675-3680$<i>563<b>3",">:xip/d:NMOD$<i>561"],["s:bezeichnet","i:bezeichnet","_563#3682-3692","<>:p#3682-3713$<i>568","opennlp/p:VVFIN","cnx/l:bezeichnen","cnx/p:V","cnx/m:IND","cnx/m:PRES","cnx/syn:@MAIN","tt/l:bezeichnen","tt/p:VVFIN","mate/l:bezeichnen","mate/p:VVPP",">:mate/d:MO$<i>567","<:mate/d:--$<i>564","xip/p:VERB","xip/l:bezeichnen","<>:xip/const:VERB#3682-3692$<i>564","<>:xip/const:MC#3682-3712$<i>568<b>1","xip/d:VMAIN","<:xip/d:SUBJ$<i>564","<:xip/d:OBJ$<i>566","<:xip/d:OBJ$<i>567"],["s:a","i:a","_564#3693-3694","opennlp/p:NE","cnx/l:a","cnx/p:PREP","cnx/syn:@PREMARK","tt/l:a","tt/p:FM","mate/p:$.",">:mate/d:--$<i>563","xip/p:SYMBOL","xip/l:a","<>:xip/const:SYMBOL#3693-3694$<i>565","<>:xip/const:NP#3693-3694$<i>565<b>2","<>:xip/const:NPA#3693-3694$<i>565<b>3","<>:xip/const:NOUN#3693-3694$<i>565<b>4",">:xip/d:SUBJ$<i>563"],["s:die","i:die","_565#3695-3698","opennlp/p:ART","cnx/l:die","cnx/p:DET","cnx/syn:@PREMOD","tt/l:die","tt/p:ART","mate/l:der","mate/p:ART","mate/m:case:nom","mate/m:number:sg","mate/m:gender:fem",">:mate/d:NK$<i>566","xip/p:DET","xip/l:die","<>:xip/const:DET#3695-3698$<i>566","<>:xip/const:NP#3695-3705$<i>567<b>2",">:xip/d:DETERM$<i>566"],["s:Tonart","i:tonart","_566#3699-3705","opennlp/p:NN","cnx/l:ton","cnx/l:art","cnx/p:N","cnx/syn:@PREMOD","<>:cnx/const:np#3699-3712$<i>568","tt/l:Tonart","tt/p:NN","mate/l:tonart","mate/p:NN","mate/m:case:nom","mate/m:number:sg","mate/m:gender:fem","<:mate/d:NK$<i>565",">:mate/d:OA$<i>567","xip/p:NOUN","xip/l:tonen","xip/l:Art","xip/l:Tonenart","<>:xip/const:NOUN#3699-3705$<i>567","<>:xip/const:NPA#3699-3705$<i>567<b>3","<:xip/d:DETERM$<i>565",">:xip/d:OBJ$<i>563"],["s:a-Moll","i:a-moll","_567#3706-3712","opennlp/p:NE","cnx/l:a-moll","cnx/p:N","cnx/m:Prop","cnx/syn:@NH","tt/p:VVFIN","mate/l:a-moll","mate/p:VVFIN","mate/m:number:sg","mate/m:person:3","mate/m:tense:past","mate/m:mood:ind","<:mate/d:MO$<i>563","<:mate/d:OA$<i>566","xip/p:SYMBOL","xip/l:a-Moll","<>:xip/const:SYMBOL#3706-3712$<i>568","<>:xip/const:NP#3706-3712$<i>568<b>2","<>:xip/const:NPA#3706-3712$<i>568<b>3","<>:xip/const:NOUN#3706-3712$<i>568<b>4",">:xip/d:OBJ$<i>563"],["s:in","i:in","_568#3714-3716","<>:s#3714-4259$<i>644","<>:p#3714-3727$<i>571","opennlp/p:APPR","cnx/l:in","cnx/p:PREP","cnx/syn:@PREMARK","tt/l:in","tt/p:APPR","mate/l:in","mate/p:APPR","<:mate/d:NK$<i>570","xip/p:PREP","xip/l:in","<>:xip/const:TOP#3714-4259$<i>644","<>:xip/const:MC#3714-3768$<i>575<b>1","<>:xip/const:PP#3714-3727$<i>571<b>2","<>:xip/const:PREP#3714-3716$<i>569"],["s:der","i:der","_569#3717-3720","opennlp/p:ART","cnx/l:die","cnx/p:DET","cnx/syn:@PREMOD","tt/l:die","tt/p:ART","mate/l:der","mate/p:ART","mate/m:case:dat","mate/m:number:sg","mate/m:gender:fem",">:mate/d:NK$<i>570","xip/p:DET","xip/l:der","<>:xip/const:NP#3717-3727$<i>571<b>3","<>:xip/const:DET#3717-3720$<i>570",">:xip/d:DETERM$<i>570"],["s:Physik","i:physik","_570#3721-3727","opennlp/p:NN","cnx/l:physik","cnx/p:N","cnx/syn:@NH","<>:cnx/const:np#3721-3727$<i>571","tt/l:Physik","tt/p:NN","mate/l:physik","mate/p:NN","mate/m:case:dat","mate/m:number:sg","mate/m:gender:fem","<:mate/d:NK$<i>569",">:mate/d:NK$<i>568","xip/p:NOUN","xip/l:Physik","<>:xip/const:NPA#3721-3727$<i>571<b>4","<>:xip/const:NOUN#3721-3727$<i>571","<:xip/d:DETERM$<i>569"],["s:bezeichnet","i:bezeichnet","_571#3728-3738","<>:p#3728-3768$<i>575","opennlp/p:VVFIN","cnx/l:bezeichnen","cnx/p:V","cnx/m:IND","cnx/m:PRES","cnx/syn:@MAIN","tt/l:bezeichnen","tt/p:VVFIN","tt/l:bezeichnen","tt/p:VVPP","mate/l:bezeichnen","mate/p:VVPP","<:mate/d:--$<i>572","<:mate/d:OA$<i>574","xip/p:VERB","xip/l:bezeichnen","<>:xip/const:VERB#3728-3738$<i>572","xip/d:VMAIN","<:xip/d:SUBJ$<i>572","<:xip/d:OBJ$<i>574"],["s:a","i:a","_572#3739-3740","opennlp/p:NE","cnx/l:a","cnx/p:PREP","cnx/syn:@PREMARK","tt/l:a","tt/p:FM","mate/p:$.",">:mate/d:--$<i>571","xip/p:SYMBOL","xip/l:a","<>:xip/const:SYMBOL#3739-3740$<i>573","<>:xip/const:NP#3739-3740$<i>573<b>2","<>:xip/const:NPA#3739-3740$<i>573<b>3","<>:xip/const:NOUN#3739-3740$<i>573<b>4",">:xip/d:SUBJ$<i>571"],["s:die","i:die","_573#3741-3744","opennlp/p:ART","cnx/l:die","cnx/p:DET","cnx/syn:@PREMOD","tt/l:die","tt/p:ART","mate/l:der","mate/p:ART","mate/m:case:nom","mate/m:number:sg","mate/m:gender:fem",">:mate/d:NK$<i>574","xip/p:DET","xip/l:die","<>:xip/const:DET#3741-3744$<i>574","<>:xip/const:NP#3741-3768$<i>575<b>2",">:xip/d:DETERM$<i>574"],["s:Temperaturleitfähigkeit","i:temperaturleitfähigkeit","_574#3745-3768","opennlp/p:NN","cnx/l:temperatur","cnx/l:leit","cnx/l:fähigkeit","cnx/p:N","cnx/syn:@NH","<>:cnx/const:np#3745-3768$<i>575","tt/p:NN","mate/l:temperaturleitfähigkeit","mate/p:NN","mate/m:case:nom","mate/m:number:sg","mate/m:gender:fem","<:mate/d:NK$<i>573",">:mate/d:OA$<i>571","xip/p:NOUN","xip/l:Temperatur","xip/l:leiten","xip/l:Fähigkeit","xip/l:Temperaturleitenfähigkeit","<>:xip/const:NOUN#3745-3768$<i>575","<>:xip/const:NPA#3745-3768$<i>575<b>3","<:xip/d:DETERM$<i>573",">:xip/d:OBJ$<i>571"],["s:bezeichnet","i:bezeichnet","_575#3769-3779","<>:p#3769-3824$<i>582","opennlp/p:VVFIN","cnx/l:bezeichnen","cnx/p:V","cnx/m:PCP","cnx/m:PERF","cnx/syn:@MAIN","tt/l:bezeichnen","tt/p:VVFIN","tt/l:bezeichnen","tt/p:VVPP","mate/l:bezeichnen","mate/p:VVPP",">:mate/d:MO$<i>579","<:mate/d:--$<i>576","xip/p:VERB","xip/l:bezeichnen","<>:xip/const:MC#3769-3824$<i>582<b>1","<>:xip/const:VERB#3769-3779$<i>576","xip/d:VMAIN","<:xip/d:SUBJ$<i>576","<:xip/d:OBJ$<i>579"],["s:a","i:a","_576#3780-3781","opennlp/p:NE","cnx/l:a","cnx/p:PREP","cnx/syn:@PREMARK","tt/l:a","tt/p:FM","mate/p:$.",">:mate/d:--$<i>575","xip/p:SYMBOL","xip/l:a","<>:xip/const:NP#3780-3781$<i>577<b>2","<>:xip/const:NPA#3780-3781$<i>577<b>3","<>:xip/const:NOUN#3780-3781$<i>577<b>4","<>:xip/const:SYMBOL#3780-3781$<i>577",">:xip/d:SUBJ$<i>575"],["s:die","i:die","_577#3782-3785","opennlp/p:ART","cnx/l:die","cnx/p:DET","cnx/syn:@PREMOD","tt/l:die","tt/p:ART","mate/l:der","mate/p:ART","mate/m:case:nom","mate/m:number:sg","mate/m:gender:fem",">:mate/d:NK$<i>579","xip/p:DET","xip/l:die","<>:xip/const:NP#3782-3805$<i>580<b>2","<>:xip/const:DET#3782-3785$<i>578",">:xip/d:DETERM$<i>579"],["s:physikalische","i:physikalische","_578#3786-3799","opennlp/p:ADJA","cnx/l:physikalisch","cnx/p:A","cnx/syn:@PREMOD","<>:cnx/const:np#3786-3805$<i>580","tt/l:physikalisch","tt/p:ADJA","mate/l:physikalisch","mate/p:ADJA","mate/m:case:nom","mate/m:number:sg","mate/m:gender:fem","mate/m:degree:pos",">:mate/d:NK$<i>579","xip/p:ADJ","xip/l:physikalisch","<>:xip/const:NPA#3786-3805$<i>580<b>3","<>:xip/const:AP#3786-3799$<i>579<b>4","<>:xip/const:ADJ#3786-3799$<i>579",">:xip/d:NMOD$<i>579"],["s:Größe","i:größe","_579#3800-3805","opennlp/p:NN","cnx/l:grösse","cnx/p:N","cnx/syn:@NH","tt/l:Größe","tt/p:NN","mate/l:größe","mate/p:NN","mate/m:case:nom","mate/m:number:sg","mate/m:gender:fem","<:mate/d:MO$<i>575","<:mate/d:NK$<i>577","<:mate/d:NK$<i>578","<:mate/d:AG$<i>581","xip/p:NOUN","xip/l:Größe","<>:xip/const:NOUN#3800-3805$<i>580","<:xip/d:DETERM$<i>577","<:xip/d:NMOD$<i>578",">:xip/d:OBJ$<i>575","<:xip/d:NMOD$<i>581"],["s:der","i:der","_580#3806-3809","opennlp/p:ART","cnx/l:die","cnx/p:DET","cnx/syn:@PREMOD","tt/l:die","tt/p:ART","mate/l:der","mate/p:ART","mate/m:case:gen","mate/m:number:sg","mate/m:gender:fem",">:mate/d:NK$<i>581","xip/p:DET","xip/l:der","<>:xip/const:NP#3806-3824$<i>582<b>2","<>:xip/const:DET#3806-3809$<i>581",">:xip/d:DETERM$<i>581"],["s:Beschleunigung","i:beschleunigung","_581#3810-3824","opennlp/p:NN","cnx/l:beschleunigung","cnx/p:N","cnx/syn:@NH","<>:cnx/const:np#3810-3824$<i>582","tt/l:Beschleunigung","tt/p:NN","mate/l:beschleunigung","mate/p:NN","mate/m:case:gen","mate/m:number:sg","mate/m:gender:fem","<:mate/d:NK$<i>580",">:mate/d:AG$<i>579","xip/p:NOUN","xip/l:Beschleunigung","<>:xip/const:NOUN#3810-3824$<i>582","<>:xip/const:NPA#3810-3824$<i>582<b>3","<:xip/d:DETERM$<i>580",">:xip/d:NMOD$<i>579"],["s:bezeichnet","i:bezeichnet","_582#3825-3835","<>:p#3825-3868$<i>588","opennlp/p:VVFIN","cnx/l:bezeichnen","cnx/p:V","cnx/m:PCP","cnx/m:PERF","cnx/syn:@MAIN","tt/l:bezeichnen","tt/p:VVFIN","tt/l:bezeichnen","tt/p:VVPP","mate/l:bezeichnen","mate/p:VVFIN","mate/m:number:sg","mate/m:person:3","mate/m:tense:pres","mate/m:mood:ind","<:mate/d:SB$<i>583","<:mate/d:SB$<i>586","<:mate/d:OA$<i>587","xip/p:VERB","xip/l:bezeichnen","<>:xip/const:VERB#3825-3835$<i>583","<>:xip/const:MC#3825-3868$<i>588<b>1","xip/d:VMAIN","<:xip/d:SUBJ$<i>583","<:xip/d:OBJ$<i>586","<:xip/d:OBJ$<i>587"],["s:A","i:a","_583#3836-3837","opennlp/p:NE","cnx/l:a","cnx/p:PREP","cnx/syn:@PREMARK","tt/l:A","tt/p:NN","tt/l:A","tt/p:FM","mate/p:NE","mate/m:case:nom","mate/m:number:sg","mate/m:gender:*",">:mate/d:SB$<i>582","xip/p:SYMBOL","xip/l:A","<>:xip/const:NP#3836-3837$<i>584<b>2","<>:xip/const:NPA#3836-3837$<i>584<b>3","<>:xip/const:NOUN#3836-3837$<i>584<b>4","<>:xip/const:SYMBOL#3836-3837$<i>584",">:xip/d:SUBJ$<i>582"],["s:die","i:die","_584#3838-3841","opennlp/p:ART","cnx/l:die","cnx/p:DET","cnx/syn:@PREMOD","tt/l:die","tt/p:ART","mate/l:der","mate/p:ART","mate/m:case:acc","mate/m:number:sg","mate/m:gender:fem",">:mate/d:NK$<i>586","xip/p:DET","xip/l:die","<>:xip/const:DET#3838-3841$<i>585","<>:xip/const:NP#3838-3861$<i>587<b>2",">:xip/d:DETERM$<i>586"],["s:physikalische","i:physikalische","_585#3842-3855","opennlp/p:ADJA","cnx/l:physikalisch","cnx/p:A","cnx/syn:@PREMOD","<>:cnx/const:np#3842-3861$<i>587","tt/l:physikalisch","tt/p:ADJA","mate/l:physikalisch","mate/p:ADJA","mate/m:case:acc","mate/m:number:sg","mate/m:gender:fem","mate/m:degree:pos",">:mate/d:NK$<i>586","xip/p:ADJ","xip/l:physikalisch","<>:xip/const:ADJ#3842-3855$<i>586","<>:xip/const:NPA#3842-3861$<i>587<b>3","<>:xip/const:AP#3842-3855$<i>586<b>4",">:xip/d:NMOD$<i>586"],["s:Größe","i:größe","_586#3856-3861","opennlp/p:NN","cnx/l:grösse","cnx/p:N","cnx/syn:@NH","tt/l:Größe","tt/p:NN","mate/l:größ","mate/p:NN","mate/m:case:acc","mate/m:number:sg","mate/m:gender:fem","<:mate/d:NK$<i>584","<:mate/d:NK$<i>585",">:mate/d:SB$<i>582","xip/p:NOUN","xip/l:Größe","<>:xip/const:NOUN#3856-3861$<i>587","<:xip/d:DETERM$<i>584","<:xip/d:NMOD$<i>585",">:xip/d:OBJ$<i>582"],["s:Arbeit","i:arbeit","_587#3862-3868","opennlp/p:NN","cnx/l:arbeit","cnx/p:N","cnx/syn:@NH","<>:cnx/const:np#3862-3868$<i>588","tt/l:Arbeit","tt/p:NN","mate/l:arbeit","mate/p:NN","mate/m:case:acc","mate/m:number:sg","mate/m:gender:fem",">:mate/d:OA$<i>582","xip/p:NOUN","xip/l:Arbeit","<>:xip/const:NP#3862-3868$<i>588<b>2","<>:xip/const:NPA#3862-3868$<i>588<b>3","<>:xip/const:NOUN#3862-3868$<i>588",">:xip/d:OBJ$<i>582"],["s:bezeichnet","i:bezeichnet","_588#3869-3879","<>:p#3869-3911$<i>594","opennlp/p:VVFIN","cnx/l:bezeichnen","cnx/p:V","cnx/m:PCP","cnx/m:PERF","cnx/syn:@MAIN","tt/l:bezeichnen","tt/p:VVFIN","tt/l:bezeichnen","tt/p:VVPP","mate/l:bezeichnen","mate/p:VVFIN","mate/m:number:sg","mate/m:person:3","mate/m:tense:pres","mate/m:mood:ind","<:mate/d:SB$<i>589","xip/p:VERB","xip/l:bezeichnen","<>:xip/const:MC#3869-3911$<i>594<b>1","<>:xip/const:VERB#3869-3879$<i>589","xip/d:VMAIN","<:xip/d:SUBJ$<i>589","<:xip/d:OBJ$<i>593"],["s:A","i:a","_589#3880-3881","opennlp/p:NE","cnx/l:a","cnx/p:PREP","cnx/syn:@PREMARK","tt/l:A","tt/p:NN","tt/l:A","tt/p:FM","mate/p:NE","mate/m:case:nom","mate/m:number:sg","mate/m:gender:*",">:mate/d:SB$<i>588","xip/p:SYMBOL","xip/l:A","<>:xip/const:SYMBOL#3880-3881$<i>590","<>:xip/const:NP#3880-3881$<i>590<b>2","<>:xip/const:NPA#3880-3881$<i>590<b>3","<>:xip/const:NOUN#3880-3881$<i>590<b>4",">:xip/d:SUBJ$<i>588"],["s:die","i:die","_590#3882-3885","opennlp/p:ART","cnx/l:die","cnx/p:DET","cnx/syn:@PREMOD","tt/l:die","tt/p:ART","mate/l:der","mate/p:ART","mate/m:case:acc","mate/m:number:pl","mate/m:gender:fem","xip/p:DET","xip/l:die","<>:xip/const:DET#3882-3885$<i>591","<>:xip/const:NP#3882-3911$<i>594<b>2",">:xip/d:DETERM$<i>593"],["s:Baryonen-","i:baryonen-","_591#3886-3895","opennlp/p:TRUNC","tt/p:TRUNC","xip/p:TRUNC","xip/l:Baryonen-","<>:xip/const:TRUNC#3886-3895$<i>592","<>:xip/const:NPA#3886-3911$<i>594<b>3","<>:xip/const:NOUN#3886-3911$<i>594<b>4","<:xip/d:COORD$<i>592","<:xip/d:TRUNC$<i>593"],["s:oder","i:oder","_592#3896-3900","opennlp/p:KON","cnx/l:oder","cnx/p:CC","cnx/syn:@CC","tt/l:oder","tt/p:KON","mate/l:oder","mate/p:KON","<:mate/d:CJ$<i>593","xip/p:CONJ","xip/l:oder","<>:xip/const:CONJ#3896-3900$<i>593",">:xip/d:COORD$<i>591",">:xip/d:COORD$<i>593"],["s:Massenzahl","i:massenzahl","_593#3901-3911","opennlp/p:NN","cnx/l:masse","cnx/l:zahl","cnx/p:N","cnx/syn:@NH","<>:cnx/const:np#3901-3911$<i>594","tt/l:Massenzahl","tt/p:NN","mate/l:massenzahl","mate/p:NN","mate/m:case:*","mate/m:number:sg","mate/m:gender:fem",">:mate/d:CJ$<i>592","xip/p:NOUN","xip/l:Masse","xip/l:Zahl","xip/l:Massezahl","<>:xip/const:NOUN#3901-3911$<i>594","<:xip/d:DETERM$<i>590","<:xip/d:COORD$<i>592",">:xip/d:OBJ$<i>588",">:xip/d:TRUNC$<i>591"],["s:bezeichnet","i:bezeichnet","_594#3912-3922","<>:p#3912-3938$<i>598","opennlp/p:VVFIN","cnx/l:bezeichnen","cnx/p:V","cnx/m:PCP","cnx/m:PERF","cnx/syn:@MAIN","tt/l:bezeichnen","tt/p:VVFIN","tt/l:bezeichnen","tt/p:VVPP","mate/l:bezeichnen","mate/p:VVFIN","mate/m:number:sg","mate/m:person:3","mate/m:tense:pres","mate/m:mood:ind","<:mate/d:SB$<i>595","<:mate/d:OA$<i>597","xip/p:VERB","xip/l:bezeichnen","<>:xip/const:MC#3912-3938$<i>598<b>1","<>:xip/const:VERB#3912-3922$<i>595","xip/d:VMAIN","<:xip/d:SUBJ$<i>595","<:xip/d:OBJ$<i>597"],["s:A","i:a","_595#3923-3924","opennlp/p:NE","cnx/l:a","cnx/p:PREP","cnx/syn:@PREMARK","tt/l:A","tt/p:NN","tt/l:A","tt/p:FM","mate/p:NE","mate/m:case:nom","mate/m:number:sg","mate/m:gender:*",">:mate/d:SB$<i>594","xip/p:SYMBOL","xip/l:A","<>:xip/const:SYMBOL#3923-3924$<i>596","<>:xip/const:NP#3923-3924$<i>596<b>2","<>:xip/const:NPA#3923-3924$<i>596<b>3","<>:xip/const:NOUN#3923-3924$<i>596<b>4",">:xip/d:SUBJ$<i>594"],["s:die","i:die","_596#3925-3928","opennlp/p:ART","cnx/l:die","cnx/p:DET","cnx/syn:@PREMOD","tt/l:die","tt/p:ART","mate/l:der","mate/p:ART","mate/m:case:acc","mate/m:number:sg","mate/m:gender:fem",">:mate/d:NK$<i>597","xip/p:DET","xip/l:die","<>:xip/const:DET#3925-3928$<i>597","<>:xip/const:NP#3925-3938$<i>598<b>2",">:xip/d:DETERM$<i>597"],["s:Aktivität","i:aktivität","_597#3929-3938","opennlp/p:NN","cnx/l:aktivität","cnx/p:N","cnx/syn:@NH","<>:cnx/const:np#3929-3938$<i>598","tt/l:Aktivität","tt/p:NN","mate/l:aktivität","mate/p:NN","mate/m:case:acc","mate/m:number:sg","mate/m:gender:fem","<:mate/d:NK$<i>596",">:mate/d:OA$<i>594","xip/p:NOUN","xip/l:Aktivität","<>:xip/const:NPA#3929-3938$<i>598<b>3","<>:xip/const:NOUN#3929-3938$<i>598","<:xip/d:DETERM$<i>596",">:xip/d:OBJ$<i>594"],["s:kann","i:kann","_598#3939-3943","<>:p#3939-4044$<i>612","opennlp/p:VMFIN","cnx/l:können","cnx/p:V","cnx/m:IND","cnx/m:PRES","cnx/syn:@MAIN","tt/l:können","tt/p:VMFIN","mate/l:können","mate/p:VMFIN","mate/m:number:sg","mate/m:person:3","mate/m:tense:pres","mate/m:mood:ind","<:mate/d:SB$<i>599","<:mate/d:OC$<i>603","<:mate/d:MO$<i>611","xip/p:VERB","xip/l:können","<>:xip/const:VERB#3939-3943$<i>599","<>:xip/const:MC#3939-4066$<i>614<b>1","<:xip/d:MODAL$<i>603"],["s:A","i:a","_599#3944-3945","opennlp/p:NE","cnx/l:a","cnx/p:PREP","cnx/syn:@PREMARK","tt/l:A","tt/p:NN","mate/p:NE","mate/m:case:nom","mate/m:number:sg","mate/m:gender:*",">:mate/d:SB$<i>598","xip/p:SYMBOL","xip/l:A","<>:xip/const:NP#3944-3945$<i>600<b>2","<>:xip/const:NPA#3944-3945$<i>600<b>3","<>:xip/const:NOUN#3944-3945$<i>600<b>4","<>:xip/const:SYMBOL#3944-3945$<i>600",">:xip/d:SUBJ$<i>603"],["s:die","i:die","_600#3946-3949","opennlp/p:ART","cnx/l:die","cnx/p:DET","cnx/syn:@PREMOD","tt/l:die","tt/p:ART","mate/l:der","mate/p:ART","mate/m:case:nom","mate/m:number:sg","mate/m:gender:fem",">:mate/d:NK$<i>601","xip/p:DET","xip/l:die","<>:xip/const:NP#3946-3966$<i>602<b>2","<>:xip/const:DET#3946-3949$<i>601",">:xip/d:DETERM$<i>601"],["s:nicht-SI-Einheit","i:nicht-si-einheit","_601#3950-3966","opennlp/p:$(","cnx/l:nicht-si-einheit","cnx/p:N","cnx/syn:@PREMOD","<>:cnx/const:np#3950-3975$<i>603","tt/p:ADJA","tt/p:NN","mate/l:nicht-si-einheit","mate/p:NN","mate/m:case:nom","mate/m:number:sg","mate/m:gender:fem","<:mate/d:NK$<i>600",">:mate/d:OA$<i>603","<:mate/d:NK$<i>602","xip/p:NOUN","xip/l:nicht-SI-Einheit","<>:xip/const:NPA#3950-3966$<i>602<b>3","<>:xip/const:NOUN#3950-3966$<i>602","<:xip/d:DETERM$<i>600",">:xip/d:OBJ$<i>603","<:xip/d:NMOD$<i>602"],["s:Ångström","i:ångström","_602#3967-3975","opennlp/p:NN","cnx/l:Ångström","cnx/p:N","cnx/m:Prop","cnx/syn:@NH","tt/p:NN","tt/p:NE","mate/l:ångström","mate/p:NE","mate/m:case:nom","mate/m:number:sg","mate/m:gender:*",">:mate/d:NK$<i>601","xip/p:NOUN","xip/l:Ångström","<>:xip/const:NP#3967-3975$<i>603<b>2","<>:xip/const:NPA#3967-3975$<i>603<b>3","<>:xip/const:NOUN#3967-3975$<i>603",">:xip/d:NMOD$<i>601"],["s:bezeichnen","i:bezeichnen","_603#3976-3986","opennlp/p:VVFIN","cnx/l:bezeichnen","cnx/p:V","cnx/m:INF","cnx/syn:@MAIN","tt/l:bezeichnen","tt/p:VVFIN","tt/l:bezeichnen","tt/p:VVINF","mate/l:bezeichnen","mate/p:VVFIN","mate/m:number:pl","mate/m:person:3","mate/m:tense:pres","mate/m:mood:ind","<:mate/d:OA$<i>601",">:mate/d:OC$<i>598","xip/p:VERB","xip/l:bezeichnen","<>:xip/const:VERB#3976-3986$<i>604","<:xip/d:SUBJ$<i>599","<:xip/d:OBJ$<i>601",">:xip/d:MODAL$<i>598","xip/d:VMAIN"],["s:sofern","i:sofern","_604#3988-3994","opennlp/p:KOUS","cnx/l:sofern","cnx/p:CS","cnx/syn:@PREMARK","tt/l:sofern","tt/p:KOUS","mate/l:sofern","mate/p:KOUS",">:mate/d:CP$<i>611","xip/p:CONJ","xip/l:sofern","<>:xip/const:SC#3988-4044$<i>612","<>:xip/const:CONJ#3988-3994$<i>605",">:xip/d:CONNECT$<i>611"],["s:der","i:der","_605#3995-3998","opennlp/p:ART","cnx/l:der","cnx/p:DET","cnx/syn:@PREMOD","tt/l:die","tt/p:ART","mate/l:der","mate/p:ART","mate/m:case:nom","mate/m:number:sg","mate/m:gender:masc",">:mate/d:NK$<i>607","xip/p:DET","xip/l:der","<>:xip/const:NP#3995-4020$<i>608<b>1","<>:xip/const:DET#3995-3998$<i>606",">:xip/d:DETERM$<i>607"],["s:schwedische","i:schwedische","_606#3999-4010","opennlp/p:ADJA","cnx/l:schwedisch","cnx/p:A","cnx/syn:@PREMOD","<>:cnx/const:np#3999-4020$<i>608","tt/l:schwedisch","tt/p:ADJA","mate/l:schwedisch","mate/p:ADJA","mate/m:case:nom","mate/m:number:sg","mate/m:gender:masc","mate/m:degree:pos",">:mate/d:NK$<i>607","xip/p:ADJ","xip/l:schwedisch","<>:xip/const:NPA#3999-4020$<i>608<b>2","<>:xip/const:AP#3999-4010$<i>607<b>3","<>:xip/const:ADJ#3999-4010$<i>607",">:xip/d:NMOD$<i>607"],["s:Buchstabe","i:buchstabe","_607#4011-4020","opennlp/p:NN","cnx/l:buchstabe","cnx/p:N","cnx/syn:@NH","tt/l:Buchstabe","tt/p:NN","mate/l:buchstabe","mate/p:NN","mate/m:case:nom","mate/m:number:sg","mate/m:gender:masc","<:mate/d:NK$<i>605","<:mate/d:NK$<i>606",">:mate/d:SB$<i>611","xip/p:NOUN","xip/l:Buchstabe","<>:xip/const:NOUN#4011-4020$<i>608","<:xip/d:DETERM$<i>605","<:xip/d:NMOD$<i>606",">:xip/d:SUBJ$<i>611"],["s:„Å","i:„å","_608#4021-4023","opennlp/p:NE","<>:cnx/const:np#4021-4024$<i>609"],["s:nicht","i:nicht","_609#4025-4030","opennlp/p:PTKNEG","cnx/l:nicht","cnx/p:ADV","cnx/syn:@ADVL","tt/l:nicht","tt/p:PTKNEG","mate/l:nicht","mate/p:PTKNEG",">:mate/d:NG$<i>611","xip/p:NEGAT","xip/l:nicht","<>:xip/const:NEGAT#4025-4030$<i>610",">:xip/d:NEGAT$<i>610"],["s:verfügbar","i:verfügbar","_610#4031-4040","opennlp/p:ADJD","cnx/l:verfügbar","cnx/p:A","cnx/syn:@NH","tt/l:verfügbar","tt/p:ADJD","mate/l:verfügbar","mate/p:ADJD","mate/m:degree:pos",">:mate/d:PD$<i>611","xip/p:ADJ","xip/l:verfügbar","<>:xip/const:AP#4031-4040$<i>611<b>1","<>:xip/const:ADJ#4031-4040$<i>611","<:xip/d:NEGAT$<i>609",">:xip/d:PRED$<i>611"],["s:ist","i:ist","_611#4041-4044","opennlp/p:VAFIN","cnx/l:sein","cnx/p:V","cnx/m:IND","cnx/m:PRES","cnx/syn:@MAIN","tt/l:sein","tt/p:VAFIN","mate/l:sein","mate/p:VAFIN","mate/m:number:sg","mate/m:person:3","mate/m:tense:pres","mate/m:mood:ind","<:mate/d:CP$<i>604","<:mate/d:SB$<i>607","<:mate/d:NG$<i>609","<:mate/d:PD$<i>610",">:mate/d:MO$<i>598","xip/p:VERB","xip/l:sein","<>:xip/const:VERB#4041-4044$<i>612","<:xip/d:CONNECT$<i>604","<:xip/d:SUBJ$<i>607","<:xip/d:PRED$<i>610","xip/d:VMAIN"],["s:im","i:im","_612#4045-4047","<>:p#4045-4066$<i>614","opennlp/p:APPRART","tt/l:im","tt/p:APPRART","mate/l:in","mate/p:APPRART","mate/m:case:dat","mate/m:number:sg","mate/m:gender:neut","<:mate/d:NK$<i>613","xip/p:PREP","xip/l:in","<>:xip/const:PREP#4045-4047$<i>613"],["s:SI-Einheitensystem","i:si-einheitensystem","_613#4048-4066","opennlp/p:NN","corenlp/ne_dewac_175m_600:I-MISC","corenlp/ne_hgc_175m_600:I-MISC","cnx/l:si","cnx/l:einheit","cnx/l:system","cnx/p:N","cnx/syn:@NH","<>:cnx/const:np#4048-4066$<i>614","tt/p:ADJA","tt/p:NN","mate/l:si-einheitensystem","mate/p:NN","mate/m:case:dat","mate/m:number:sg","mate/m:gender:neut",">:mate/d:NK$<i>612","xip/p:NOUN","xip/l:SI-Einheitensystem","<>:xip/const:NOUN#4048-4066$<i>614"],["s:ist","i:ist","_614#4067-4070","<>:p#4067-4108$<i>622","opennlp/p:VAFIN","cnx/l:sein","cnx/p:V","cnx/m:IND","cnx/m:PRES","cnx/syn:@MAIN","tt/l:sein","tt/p:VAFIN","mate/l:sein","mate/p:VAFIN","mate/m:number:sg","mate/m:person:3","mate/m:tense:pres","mate/m:mood:ind","<:mate/d:PD$<i>617","xip/p:VERB","xip/l:sein","<>:xip/const:VERB#4067-4070$<i>615","<>:xip/const:MC#4067-4108$<i>622<b>1","xip/d:VMAIN","<:xip/d:SUBJ$<i>615","<:xip/d:PRED$<i>617"],["s:a","i:a","_615#4071-4072","opennlp/p:ADV","cnx/l:a","cnx/p:PREP","cnx/syn:@PREMARK","tt/l:a","tt/p:FM","mate/p:XY","mate/m:case:nom","mate/m:number:sg","mate/m:gender:fem","xip/p:SYMBOL","xip/l:a","<>:xip/const:SYMBOL#4071-4072$<i>616","<>:xip/const:NP#4071-4072$<i>616<b>2","<>:xip/const:NPA#4071-4072$<i>616<b>3","<>:xip/const:NOUN#4071-4072$<i>616<b>4",">:xip/d:SUBJ$<i>614"],["s:die","i:die","_616#4073-4076","opennlp/p:ART","cnx/l:die","cnx/p:DET","cnx/syn:@PREMOD","tt/l:die","tt/p:ART","mate/l:der","mate/p:ART","mate/m:case:nom","mate/m:number:sg","mate/m:gender:fem",">:mate/d:NK$<i>617","xip/p:DET","xip/l:die","<>:xip/const:NP#4073-4086$<i>618<b>2","<>:xip/const:DET#4073-4076$<i>617",">:xip/d:DETERM$<i>617"],["s:Abkürzung","i:abkürzung","_617#4077-4086","opennlp/p:NN","cnx/l:abkürzung","cnx/p:N","cnx/syn:@NH","<>:cnx/const:np#4077-4108$<i>622","tt/l:Abkürzung","tt/p:NN","mate/l:abkürzung","mate/p:NN","mate/m:case:nom","mate/m:number:sg","mate/m:gender:fem","<:mate/d:NK$<i>616",">:mate/d:PD$<i>614","<:mate/d:MNR$<i>618","xip/p:NOUN","xip/l:Abkürzung","<>:xip/const:NPA#4077-4086$<i>618<b>3","<>:xip/const:NOUN#4077-4086$<i>618","<:xip/d:DETERM$<i>616",">:xip/d:PRED$<i>614"],["s:für","i:für","_618#4087-4090","opennlp/p:APPR","cnx/l:für","cnx/p:PREP","cnx/syn:@POSTMOD","tt/l:für","tt/p:APPR","mate/l:für","mate/p:APPR",">:mate/d:MNR$<i>617","<:mate/d:NK$<i>620","xip/p:PREP","xip/l:für","<>:xip/const:PP#4087-4103$<i>621<b>2","<>:xip/const:PREP#4087-4090$<i>619"],["s:die","i:die","_619#4091-4094","opennlp/p:ART","cnx/l:die","cnx/p:DET","cnx/syn:@PREMOD","tt/l:die","tt/p:ART","mate/l:der","mate/p:ART","mate/m:case:acc","mate/m:number:sg","mate/m:gender:fem",">:mate/d:NK$<i>620","xip/p:DET","xip/l:die","<>:xip/const:NP#4091-4103$<i>621<b>3","<>:xip/const:DET#4091-4094$<i>620",">:xip/d:DETERM$<i>620"],["s:Vorsilbe","i:vorsilbe","_620#4095-4103","opennlp/p:NN","cnx/l:vor","cnx/l:silbe","cnx/p:N","cnx/syn:@PREMOD","tt/l:Vorsilbe","tt/p:NN","mate/l:vorsilb","mate/p:NN","mate/m:case:acc","mate/m:number:sg","mate/m:gender:fem","<:mate/d:NK$<i>619",">:mate/d:NK$<i>618","<:mate/d:NK$<i>621","xip/p:NOUN","xip/l:vor","xip/l:Silbe","xip/l:Vorsilbe","<>:xip/const:NPA#4095-4103$<i>621<b>4","<>:xip/const:NOUN#4095-4103$<i>621","<:xip/d:DETERM$<i>619","<:xip/d:NMOD$<i>621"],["s:Atto","i:atto","_621#4104-4108","opennlp/p:NE","corenlp/ne_hgc_175m_600:I-PER","cnx/l:atto","cnx/p:N","cnx/syn:@NH","tt/p:NE","mate/l:atto","mate/p:NE","mate/m:case:nom","mate/m:number:sg","mate/m:gender:*",">:mate/d:NK$<i>620","xip/p:NOUN","xip/l:Atto","<>:xip/const:NP#4104-4108$<i>622<b>2","<>:xip/const:NPA#4104-4108$<i>622<b>3","<>:xip/const:NOUN#4104-4108$<i>622",">:xip/d:NMOD$<i>620"],["s:ist","i:ist","_622#4109-4112","<>:p#4109-4170$<i>630","opennlp/p:VAFIN","cnx/l:sein","cnx/p:V","cnx/m:IND","cnx/m:PRES","cnx/syn:@MAIN","tt/l:sein","tt/p:VAFIN","mate/l:sein","mate/p:VAFIN","mate/m:number:sg","mate/m:person:3","mate/m:tense:pres","mate/m:mood:ind","<:mate/d:SB$<i>623","<:mate/d:PD$<i>625","xip/p:VERB","xip/l:sein","<>:xip/const:MC#4109-4188$<i>633<b>1","<>:xip/const:VERB#4109-4112$<i>623","xip/d:VMAIN","<:xip/d:SUBJ$<i>623","<:xip/d:PRED$<i>625","<:xip/d:PRED$<i>629"],["s:A","i:a","_623#4113-4114","opennlp/p:NE","cnx/l:a","cnx/p:PREP","cnx/syn:@PREMARK","tt/l:A","tt/p:NN","mate/p:NE","mate/m:case:nom","mate/m:number:sg","mate/m:gender:neut",">:mate/d:SB$<i>622","xip/p:SYMBOL","xip/l:A","<>:xip/const:NP#4113-4114$<i>624<b>2","<>:xip/const:NPA#4113-4114$<i>624<b>3","<>:xip/const:NOUN#4113-4114$<i>624<b>4","<>:xip/const:SYMBOL#4113-4114$<i>624",">:xip/d:SUBJ$<i>622"],["s:das","i:das","_624#4115-4118","opennlp/p:ART","cnx/l:das","cnx/p:DET","cnx/syn:@PREMOD","tt/l:die","tt/p:ART","mate/l:der","mate/p:ART","mate/m:case:nom","mate/m:number:sg","mate/m:gender:neut",">:mate/d:NK$<i>625","xip/p:DET","xip/l:das","<>:xip/const:NP#4115-4134$<i>626<b>2","<>:xip/const:DET#4115-4118$<i>625",">:xip/d:DETERM$<i>625"],["s:Einheitensymbol","i:einheitensymbol","_625#4119-4134","opennlp/p:NN","cnx/l:einheit","cnx/l:symbol","cnx/p:N","cnx/syn:@NH","<>:cnx/const:np#4119-4134$<i>626","tt/l:Einheitensymbol","tt/p:NN","mate/l:einheitensymbol","mate/p:NN","mate/m:case:nom","mate/m:number:sg","mate/m:gender:neut","<:mate/d:NK$<i>624",">:mate/d:PD$<i>622","<:mate/d:AG$<i>628","xip/p:NOUN","xip/l:Einheit","xip/l:Symbol","xip/l:Einheitsymbol","<>:xip/const:NPA#4119-4134$<i>626<b>3","<>:xip/const:NOUN#4119-4134$<i>626","<:xip/d:DETERM$<i>624",">:xip/d:PRED$<i>622","<:xip/d:NMOD$<i>628"],["s:der","i:der","_626#4135-4138","opennlp/p:ART","cnx/l:der","cnx/p:PRON","cnx/syn:@NH","tt/l:die","tt/p:ART","mate/l:der","mate/p:ART","mate/m:case:gen","mate/m:number:pl","mate/m:gender:fem",">:mate/d:NK$<i>628","xip/p:DET","xip/l:der","<>:xip/const:NP#4135-4163$<i>629<b>2","<>:xip/const:DET#4135-4138$<i>627",">:xip/d:DETERM$<i>628"],["s:elektrischen","i:elektrischen","_627#4139-4151","opennlp/p:ADJA","cnx/l:elektrisch","cnx/p:A","cnx/syn:@PREMOD","<>:cnx/const:np#4139-4163$<i>629","tt/l:elektrisch","tt/p:ADJA","mate/l:elektrisch","mate/p:ADJA","mate/m:case:gen","mate/m:number:pl","mate/m:gender:fem","mate/m:degree:pos",">:mate/d:NK$<i>628","xip/p:ADJ","xip/l:elektrisch","<>:xip/const:NPA#4139-4163$<i>629<b>3","<>:xip/const:AP#4139-4151$<i>628<b>4","<>:xip/const:ADJ#4139-4151$<i>628",">:xip/d:NMOD$<i>628"],["s:Stromstärke","i:stromstärke","_628#4152-4163","opennlp/p:NN","cnx/l:strom","cnx/l:stärke","cnx/p:N","cnx/syn:@NH","tt/l:Stromstärke","tt/p:NN","mate/l:stromstärke","mate/p:NN","mate/m:case:gen","mate/m:number:pl","mate/m:gender:fem","<:mate/d:NK$<i>626","<:mate/d:NK$<i>627",">:mate/d:AG$<i>625","<:mate/d:NK$<i>629","xip/p:NOUN","xip/l:Strom","xip/l:Stärke","xip/l:Stromstärke","<>:xip/const:NOUN#4152-4163$<i>629","<:xip/d:DETERM$<i>626","<:xip/d:NMOD$<i>627",">:xip/d:NMOD$<i>625"],["s:Ampere","i:ampere","_629#4164-4170","opennlp/p:NN","cnx/l:ampere","cnx/p:N","cnx/m:PL","cnx/syn:@NH","<>:cnx/const:np#4164-4170$<i>630","tt/l:Ampere","tt/p:NN","mate/l:ampere","mate/p:NE","mate/m:case:nom","mate/m:number:sg","mate/m:gender:neut",">:mate/d:NK$<i>628","xip/p:NOUN","xip/l:Ampere","<>:xip/const:NP#4164-4170$<i>630<b>2","<>:xip/const:NPA#4164-4170$<i>630<b>3","<>:xip/const:NOUN#4164-4170$<i>630",">:xip/d:PRED$<i>622"],["s:in","i:in","_630#4171-4173","<>:p#4171-4214$<i>637","opennlp/p:APPR","cnx/l:in","cnx/p:PREP","cnx/syn:@PREMARK","tt/l:in","tt/p:APPR","mate/l:in","mate/p:APPR",">:mate/d:MO$<i>633","<:mate/d:NK$<i>632","xip/p:PREP","xip/l:in","<>:xip/const:PP#4171-4188$<i>633<b>2","<>:xip/const:PREP#4171-4173$<i>631"],["s:der","i:der","_631#4174-4177","opennlp/p:ART","cnx/l:die","cnx/p:DET","cnx/syn:@PREMOD","tt/l:die","tt/p:ART","mate/l:der","mate/p:ART","mate/m:case:dat","mate/m:number:sg","mate/m:gender:fem",">:mate/d:NK$<i>632","xip/p:DET","xip/l:der","<>:xip/const:NP#4174-4188$<i>633<b>3","<>:xip/const:DET#4174-4177$<i>632",">:xip/d:DETERM$<i>632"],["s:Numismatik","i:numismatik","_632#4178-4188","opennlp/p:NN","cnx/l:numismatik","cnx/p:N","cnx/syn:@NH","<>:cnx/const:np#4178-4188$<i>633","tt/l:Numismatik","tt/p:NN","mate/l:numismatik","mate/p:NN","mate/m:case:dat","mate/m:number:sg","mate/m:gender:fem","<:mate/d:NK$<i>631",">:mate/d:NK$<i>630","xip/p:NOUN","xip/l:Numismatik","<>:xip/const:NOUN#4178-4188$<i>633","<>:xip/const:NPA#4178-4188$<i>633<b>4","<:xip/d:DETERM$<i>631"],["s:steht","i:steht","_633#4189-4194","opennlp/p:VVFIN","cnx/l:stehen","cnx/p:V","cnx/m:IND","cnx/m:PRES","cnx/syn:@MAIN","tt/l:stehen","tt/p:VVFIN","mate/l:stehen","mate/p:VVFIN","mate/m:number:sg","mate/m:person:3","mate/m:tense:pres","mate/m:mood:ind","<:mate/d:MO$<i>630","<:mate/d:SB$<i>635","xip/p:VERB","xip/l:stehen","<>:xip/const:VERB#4189-4194$<i>634","<>:xip/const:MC#4189-4258$<i>644<b>1","xip/d:VMAIN","<:xip/d:SUBJ$<i>635","<:xip/d:OBJ$<i>636","<:xip/d:OBJ$<i>639"],["s:der","i:der","_634#4195-4198","opennlp/p:ART","cnx/l:die","cnx/p:PRON","cnx/syn:@NH","tt/l:die","tt/p:ART","mate/l:der","mate/p:ART","mate/m:case:nom","mate/m:number:sg","mate/m:gender:masc",">:mate/d:NK$<i>635","xip/p:DET","xip/l:der","<>:xip/const:DET#4195-4198$<i>635","<>:xip/const:NP#4195-4212$<i>636<b>2",">:xip/d:DETERM$<i>635"],["s:Kennbuchstabe","i:kennbuchstabe","_635#4199-4212","opennlp/p:NN","cnx/l:kenn","cnx/l:buchstabe","cnx/p:N","cnx/syn:@NH","<>:cnx/const:np#4199-4212$<i>636","tt/l:Kennbuchstabe","tt/p:NN","mate/l:kennbuchstabe","mate/p:NN","mate/m:case:nom","mate/m:number:sg","mate/m:gender:masc","<:mate/d:NK$<i>634",">:mate/d:SB$<i>633","<:mate/d:NK$<i>636","xip/p:NOUN","xip/l:kennen","xip/l:Buchstabe","xip/l:Kennenbuchstabe","<>:xip/const:NPA#4199-4212$<i>636<b>3","<>:xip/const:NOUN#4199-4212$<i>636","<:xip/d:DETERM$<i>634",">:xip/d:SUBJ$<i>633"],["s:A","i:a","_636#4213-4214","opennlp/p:NE","cnx/l:a","cnx/p:PREP","cnx/syn:@PREMARK","tt/l:A","tt/p:NN","mate/p:NE","mate/m:case:nom","mate/m:number:sg","mate/m:gender:*",">:mate/d:NK$<i>635","xip/p:SYMBOL","xip/l:A","<>:xip/const:SYMBOL#4213-4214$<i>637","<>:xip/const:NP#4213-4214$<i>637<b>2","<>:xip/const:NPA#4213-4214$<i>637<b>3","<>:xip/const:NOUN#4213-4214$<i>637<b>4",">:xip/d:OBJ$<i>633"],["s:auf","i:auf","_637#4215-4218","<>:p#4215-4259$<i>644","opennlp/p:APPR","cnx/l:auf","cnx/p:ADV","cnx/syn:@ADVL","tt/l:auf","tt/p:APPR","mate/l:auf","mate/p:APPR","<:mate/d:NK$<i>639","<:mate/d:MO$<i>640","<:mate/d:MO$<i>642","xip/p:PREP","xip/l:auf","<>:xip/const:PREP#4215-4218$<i>638","<>:xip/const:PP#4215-4237$<i>640<b>2","<:xip/d:PLINK$<i>639"],["s:preußischen","i:preußischen","_638#4219-4230","opennlp/p:ADJA","cnx/l:preussisch","cnx/p:A","cnx/syn:@PREMOD","<>:cnx/const:np#4219-4237$<i>640","tt/l:preußisch","tt/p:ADJA","mate/l:preußisch","mate/p:ADJA","mate/m:case:dat","mate/m:number:pl","mate/m:gender:fem","mate/m:degree:pos",">:mate/d:NK$<i>639","xip/p:ADJ","xip/l:preußisch","<>:xip/const:NP#4219-4237$<i>640<b>3","<>:xip/const:NPA#4219-4237$<i>640<b>4","<>:xip/const:AP#4219-4230$<i>639<b>5","<>:xip/const:ADJ#4219-4230$<i>639",">:xip/d:NMOD$<i>639"],["s:Münzen","i:münzen","_639#4231-4237","opennlp/p:NN","cnx/l:münze","cnx/p:N","cnx/m:PL","cnx/syn:@NH","tt/l:Münze","tt/p:NN","mate/l:münze","mate/p:NN","mate/m:case:dat","mate/m:number:pl","mate/m:gender:fem","<:mate/d:NK$<i>638",">:mate/d:NK$<i>637","xip/p:NOUN","xip/l:münzen","<>:xip/const:NOUN#4231-4237$<i>640","<:xip/d:NMOD$<i>638",">:xip/d:OBJ$<i>633",">:xip/d:PLINK$<i>637"],["s:seit","i:seit","_640#4238-4242","opennlp/p:APPR","cnx/l:seit","cnx/p:CS","cnx/syn:@PREMARK","tt/l:seit","tt/p:APPR","mate/l:seit","mate/p:APPR",">:mate/d:MO$<i>637","<:mate/d:NK$<i>641","xip/p:PREP","xip/l:seit","<>:xip/const:PP#4238-4247$<i>642<b>2","<>:xip/const:PREP#4238-4242$<i>641"],["s:1750","i:1750","_641#4243-4247","opennlp/p:CARD","cnx/l:1750","cnx/p:NUM","cnx/syn:@NH","tt/l:@card@","tt/p:CARD","mate/l:1750","mate/p:CARD",">:mate/d:NK$<i>640","xip/p:NUM","xip/l:1750","<>:xip/const:NUM#4243-4247$<i>642","<>:xip/const:NP#4243-4247$<i>642<b>3","<>:xip/const:NPA#4243-4247$<i>642<b>4","<>:xip/const:NUM#4243-4247$<i>642<b>5","xip/d:DATE"],["s:für","i:für","_642#4248-4251","opennlp/p:APPR","cnx/l:für","cnx/p:PREP","cnx/syn:@POSTMOD","tt/l:für","tt/p:APPR","mate/l:für","mate/p:APPR",">:mate/d:MO$<i>637","<:mate/d:NK$<i>643","xip/p:PREP","xip/l:für","<>:xip/const:PP#4248-4258$<i>644<b>2","<>:xip/const:PREP#4248-4251$<i>643"],["s:Berlin","i:berlin","_643#4252-4258","opennlp/p:NE","corenlp/ne_dewac_175m_600:I-LOC","corenlp/ne_hgc_175m_600:I-LOC","cnx/l:Berlin","cnx/p:N","cnx/m:Prop","cnx/syn:@NH","<>:cnx/const:np#4252-4258$<i>644","tt/l:Berlin","tt/p:NE","mate/l:berlin","mate/p:NE","mate/m:case:acc","mate/m:number:sg","mate/m:gender:neut",">:mate/d:NK$<i>642","xip/p:NOUN","xip/l:Berlin","<>:xip/const:NP#4252-4258$<i>644<b>3","<>:xip/const:NPA#4252-4258$<i>644<b>4","<>:xip/const:NOUN#4252-4258$<i>644","xip/d:LOC"],["s:auf","i:auf","_644#4260-4263","<>:s#4260-4315$<i>653","<>:p#4260-4315$<i>653","opennlp/p:APPR","cnx/l:auf","cnx/p:PREP","cnx/syn:@PREMARK","tt/l:auf","tt/p:APPR","mate/l:auf","mate/p:APPR","<:mate/d:NK$<i>646","<:mate/d:MO$<i>647","<:mate/d:MO$<i>649","<:mate/d:MO$<i>651","xip/p:PREP","xip/l:auf","<>:xip/const:TOP#4260-4315$<i>653","<>:xip/const:PP#4260-4287$<i>647<b>1","<>:xip/const:PREP#4260-4263$<i>645"],["s:österreichischen","i:österreichischen","_645#4264-4280","opennlp/p:ADJA","cnx/l:österreichisch","cnx/p:A","cnx/syn:@PREMOD","<>:cnx/const:np#4264-4287$<i>647","tt/l:österreichisch","tt/p:ADJA","mate/l:österreichisch","mate/p:ADJA","mate/m:case:dat","mate/m:number:pl","mate/m:gender:masc","mate/m:degree:pos",">:mate/d:NK$<i>646","xip/p:ADJ","xip/l:österreichisch","<>:xip/const:NP#4264-4287$<i>647<b>2","<>:xip/const:NPA#4264-4287$<i>647<b>3","<>:xip/const:AP#4264-4280$<i>646<b>4","<>:xip/const:ADJ#4264-4280$<i>646",">:xip/d:NMOD$<i>646"],["s:Münzen","i:münzen","_646#4281-4287","opennlp/p:NN","cnx/l:münze","cnx/p:N","cnx/m:PL","cnx/syn:@NH","tt/l:Münze","tt/p:NN","mate/l:münze","mate/p:NN","mate/m:case:dat","mate/m:number:pl","mate/m:gender:masc","<:mate/d:NK$<i>645",">:mate/d:NK$<i>644","xip/p:NOUN","xip/l:münzen","<>:xip/const:NOUN#4281-4287$<i>647","<:xip/d:NMOD$<i>645"],["s:von","i:von","_647#4288-4291","opennlp/p:APPR","cnx/l:von","cnx/p:PREP","cnx/syn:@POSTMOD","tt/l:von","tt/p:APPR","mate/l:von","mate/p:APPR",">:mate/d:MO$<i>644","<:mate/d:NK$<i>648","xip/p:PREP","xip/l:von","<>:xip/const:PREP#4288-4291$<i>648","<>:xip/const:PP#4288-4305$<i>651<b>1"],["s:1766","i:1766","_648#4292-4296","opennlp/p:CARD","cnx/l:1766","cnx/p:NUM","cnx/syn:@NH","tt/l:@card@","tt/p:CARD","mate/l:1766","mate/p:CARD",">:mate/d:NK$<i>647","xip/p:NUM","xip/l:1766","<>:xip/const:NUM#4292-4296$<i>649","<>:xip/const:NP#4292-4305$<i>651<b>2","<>:xip/const:NPA#4292-4305$<i>651<b>3","<>:xip/const:NUM#4292-4305$<i>651<b>4","<:xip/d:COORD$<i>649"],["s:bis","i:bis","_649#4297-4300","opennlp/p:APPR","cnx/l:bis","cnx/p:CC","cnx/syn:@CC","tt/l:bis","tt/p:APPR","tt/l:bis","tt/p:KON","mate/l:bis","mate/p:APPR",">:mate/d:MO$<i>644","<:mate/d:NK$<i>650","xip/p:CONJ","xip/l:bis","<>:xip/const:CONJ#4297-4300$<i>650",">:xip/d:COORD$<i>648",">:xip/d:COORD$<i>650"],["s:1868","i:1868","_650#4301-4305","opennlp/p:CARD","cnx/l:1868","cnx/p:NUM","cnx/syn:@NH","tt/l:@card@","tt/p:CARD","mate/l:1868","mate/p:CARD",">:mate/d:NK$<i>649","xip/p:NUM","xip/l:1868","<>:xip/const:NUM#4301-4305$<i>651","<:xip/d:COORD$<i>649","xip/d:DATE"],["s:für","i:für","_651#4306-4309","opennlp/p:APPR","cnx/l:für","cnx/p:PREP","cnx/syn:@POSTMOD","tt/l:für","tt/p:APPR","mate/l:für","mate/p:APPR",">:mate/d:MO$<i>644","<:mate/d:NK$<i>652","xip/p:PREP","xip/l:für","<>:xip/const:PP#4306-4314$<i>653<b>1","<>:xip/const:PREP#4306-4309$<i>652"],["s:Wien","i:wien","_652#4310-4314","opennlp/p:NE","corenlp/ne_dewac_175m_600:I-LOC","corenlp/ne_hgc_175m_600:I-LOC","cnx/l:Wien","cnx/p:N","cnx/m:Prop","cnx/syn:@NH","<>:cnx/const:np#4310-4314$<i>653","tt/l:Wien","tt/p:NE","mate/l:wien","mate/p:NE","mate/m:case:acc","mate/m:number:sg","mate/m:gender:neut",">:mate/d:NK$<i>651","xip/p:NOUN","xip/l:Wien","<>:xip/const:NP#4310-4314$<i>653<b>2","<>:xip/const:NPA#4310-4314$<i>653<b>3","<>:xip/const:NOUN#4310-4314$<i>653","xip/d:LOC"],["s:auf","i:auf","_653#4316-4319","<>:s#4316-4361$<i>660","<>:p#4316-4361$<i>660","opennlp/p:APPR","cnx/l:auf","cnx/p:PREP","cnx/syn:@PREMARK","tt/l:auf","tt/p:APPR","mate/l:auf","mate/p:APPR","<:mate/d:NK$<i>655","<:mate/d:MO$<i>656","<:mate/d:MO$<i>658","xip/p:PREP","xip/l:auf","<>:xip/const:TOP#4316-4361$<i>660","<>:xip/const:PP#4316-4340$<i>656<b>1","<>:xip/const:PREP#4316-4319$<i>654"],["s:französischen","i:französischen","_654#4320-4333","opennlp/p:ADJA","cnx/l:französisch","cnx/p:A","cnx/syn:@PREMOD","<>:cnx/const:np#4320-4340$<i>656","tt/l:französisch","tt/p:ADJA","mate/l:französisch","mate/p:ADJA","mate/m:case:dat","mate/m:number:pl","mate/m:gender:fem","mate/m:degree:pos",">:mate/d:NK$<i>655","xip/p:ADJ","xip/l:französisch","<>:xip/const:NP#4320-4340$<i>656<b>2","<>:xip/const:NPA#4320-4340$<i>656<b>3","<>:xip/const:AP#4320-4333$<i>655<b>4","<>:xip/const:ADJ#4320-4333$<i>655",">:xip/d:NMOD$<i>655"],["s:Münzen","i:münzen","_655#4334-4340","opennlp/p:NN","cnx/l:münze","cnx/p:N","cnx/m:PL","cnx/syn:@NH","tt/l:Münze","tt/p:NN","mate/l:münze","mate/p:NN","mate/m:case:dat","mate/m:number:pl","mate/m:gender:fem","<:mate/d:NK$<i>654",">:mate/d:NK$<i>653","xip/p:NOUN","xip/l:münzen","<>:xip/const:NOUN#4334-4340$<i>656","<:xip/d:NMOD$<i>654"],["s:seit","i:seit","_656#4341-4345","opennlp/p:APPR","cnx/l:seit","cnx/p:CS","cnx/syn:@PREMARK","tt/l:seit","tt/p:APPR","mate/l:seit","mate/p:APPR",">:mate/d:MO$<i>653","<:mate/d:NK$<i>657","xip/p:PREP","xip/l:seit","<>:xip/const:PP#4341-4350$<i>658<b>1","<>:xip/const:PREP#4341-4345$<i>657"],["s:1539","i:1539","_657#4346-4350","opennlp/p:CARD","cnx/l:1539","cnx/p:NUM","cnx/syn:@NH","tt/l:@card@","tt/p:CARD","mate/l:1539","mate/p:CARD",">:mate/d:NK$<i>656","xip/p:NUM","xip/l:1539","<>:xip/const:NP#4346-4350$<i>658<b>2","<>:xip/const:NPA#4346-4350$<i>658<b>3","<>:xip/const:NUM#4346-4350$<i>658<b>4","<>:xip/const:NUM#4346-4350$<i>658","xip/d:DATE"],["s:für","i:für","_658#4351-4354","opennlp/p:ADJA","cnx/l:für","cnx/p:PREP","cnx/syn:@POSTMOD","tt/l:für","tt/p:APPR","mate/l:für","mate/p:APPR",">:mate/d:MO$<i>653","<:mate/d:NK$<i>659","xip/p:PREP","xip/l:für","<>:xip/const:PP#4351-4360$<i>660<b>1","<>:xip/const:PREP#4351-4354$<i>659"],["s:Paris","i:paris","_659#4355-4360","opennlp/p:NE","corenlp/ne_dewac_175m_600:I-LOC","corenlp/ne_hgc_175m_600:I-LOC","cnx/l:Paris","cnx/p:N","cnx/m:Prop","cnx/syn:@NH","<>:cnx/const:np#4355-4360$<i>660","tt/l:Paris","tt/p:NE","mate/l:paris","mate/p:NE","mate/m:case:acc","mate/m:number:sg","mate/m:gender:neut",">:mate/d:NK$<i>658","xip/p:NOUN","xip/l:Paris","<>:xip/const:NOUN#4355-4360$<i>660","<>:xip/const:NP#4355-4360$<i>660<b>2","<>:xip/const:NPA#4355-4360$<i>660<b>3","xip/d:LOC"],["s:auf","i:auf","_660#4362-4365","<>:s#4362-4419$<i>670","<>:p#4362-4419$<i>670","opennlp/p:APPR","cnx/l:auf","cnx/p:PREP","cnx/syn:@PREMARK","tt/l:auf","tt/p:APPR","mate/l:auf","mate/p:APPR","<:mate/d:NK$<i>661","<:mate/d:MO$<i>666","<:mate/d:MO$<i>668","xip/p:PREP","xip/l:auf","<>:xip/const:TOP#4362-4419$<i>670","<>:xip/const:PP#4362-4372$<i>662<b>1","<>:xip/const:PREP#4362-4365$<i>661"],["s:Münzen","i:münzen","_661#4366-4372","opennlp/p:NN","cnx/l:münze","cnx/p:N","cnx/m:PL","cnx/syn:@NH","<>:cnx/const:np#4366-4372$<i>662","tt/l:Münze","tt/p:NN","mate/l:münze","mate/p:NN","mate/m:case:acc","mate/m:number:pl","mate/m:gender:fem",">:mate/d:NK$<i>660","<:mate/d:MNR$<i>662","xip/p:NOUN","xip/l:münzen","<>:xip/const:NP#4366-4372$<i>662<b>2","<>:xip/const:NPA#4366-4372$<i>662<b>3","<>:xip/const:NOUN#4366-4372$<i>662"],["s:aus","i:aus","_662#4373-4376","opennlp/p:APPR","cnx/l:aus","cnx/p:ADV","cnx/syn:@ADVL","tt/l:aus","tt/p:APPR","mate/l:aus","mate/p:APPR",">:mate/d:MNR$<i>661","<:mate/d:NK$<i>663","xip/p:PREP","xip/l:aus","<>:xip/const:PP#4373-4384$<i>664<b>1","<>:xip/const:PREP#4373-4376$<i>663"],["s:Monfort","i:monfort","_663#4377-4384","opennlp/p:NN","cnx/l:Monfort","cnx/p:N","cnx/m:Prop","cnx/syn:@NH","<>:cnx/const:np#4377-4384$<i>664","tt/p:NE","tt/p:NN","mate/l:monfort","mate/p:NN","mate/m:case:dat","mate/m:number:sg","mate/m:gender:masc",">:mate/d:NK$<i>662","xip/p:NOUN","xip/l:Monfort","<>:xip/const:NOUN#4377-4384$<i>664","<>:xip/const:NP#4377-4384$<i>664<b>2","<>:xip/const:NPA#4377-4384$<i>664<b>3","xip/d:LOC"],["s:von","i:von","_664#4385-4388","opennlp/p:APPR","cnx/l:von","cnx/p:PREP","cnx/syn:@POSTMOD","tt/l:von","tt/p:APPR","mate/l:von","mate/p:APPR",">:mate/d:MO$<i>666","<:mate/d:NK$<i>665","xip/p:PREP","xip/l:von","<>:xip/const:PP#4385-4402$<i>668<b>1","<>:xip/const:PREP#4385-4388$<i>665"],["s:1703","i:1703","_665#4389-4393","opennlp/p:CARD","cnx/l:1703","cnx/p:NUM","cnx/syn:@NH","tt/l:@card@","tt/p:CARD","mate/l:1703","mate/p:CARD",">:mate/d:NK$<i>664","xip/p:NUM","xip/l:1703","<>:xip/const:NP#4389-4402$<i>668<b>2","<>:xip/const:NPA#4389-4402$<i>668<b>3","<>:xip/const:NUM#4389-4402$<i>668<b>4","<>:xip/const:NUM#4389-4393$<i>666","<:xip/d:COORD$<i>666"],["s:bis","i:bis","_666#4394-4397","opennlp/p:APPR","cnx/l:bis","cnx/p:CC","cnx/syn:@CC","tt/l:bis","tt/p:APPR","tt/l:bis","tt/p:KON","mate/l:bis","mate/p:APPR","<:mate/d:MO$<i>664",">:mate/d:MO$<i>660","<:mate/d:NK$<i>667","xip/p:CONJ","xip/l:bis","<>:xip/const:CONJ#4394-4397$<i>667",">:xip/d:COORD$<i>665",">:xip/d:COORD$<i>667"],["s:1717","i:1717","_667#4398-4402","opennlp/p:CARD","cnx/l:1717","cnx/p:NUM","cnx/syn:@NH","tt/l:@card@","tt/p:CARD","mate/l:1717","mate/p:CARD",">:mate/d:NK$<i>666","xip/p:NUM","xip/l:1717","<>:xip/const:NUM#4398-4402$<i>668","<:xip/d:COORD$<i>666","xip/d:DATE"],["s:für","i:für","_668#4403-4406","opennlp/p:ADJA","cnx/l:für","cnx/p:PREP","cnx/syn:@POSTMOD","tt/l:für","tt/p:APPR","mate/l:für","mate/p:APPR",">:mate/d:MO$<i>660","<:mate/d:NK$<i>669","xip/p:PREP","xip/l:für","<>:xip/const:PP#4403-4418$<i>670<b>1","<>:xip/const:PREP#4403-4406$<i>669"],["s:Langenargen","i:langenargen","_669#4407-4418","opennlp/p:NN","corenlp/ne_dewac_175m_600:I-LOC","corenlp/ne_hgc_175m_600:I-LOC","cnx/l:Langenargen","cnx/p:N","cnx/m:Prop","cnx/syn:@NH","<>:cnx/const:np#4407-4418$<i>670","tt/l:Langenargen","tt/p:NE","mate/l:langenarge","mate/p:NN","mate/m:case:acc","mate/m:number:pl","mate/m:gender:fem",">:mate/d:NK$<i>668","xip/p:NOUN","xip/l:langen","xip/l:arg","xip/l:Langenarg","<>:xip/const:NOUN#4407-4418$<i>670","<>:xip/const:NP#4407-4418$<i>670<b>2","<>:xip/const:NPA#4407-4418$<i>670<b>3"],["s:bei","i:bei","_670#4420-4423","<>:s#4420-4484$<i>681","<>:p#4420-4484$<i>681","opennlp/p:APPR","cnx/l:bei","cnx/p:PREP","cnx/syn:@PREMARK","tt/l:bei","tt/p:APPR","mate/l:bei","mate/p:APPR","<:mate/d:NK$<i>672","<:mate/d:MO$<i>675","<:mate/d:MO$<i>677","xip/p:PREP","xip/l:bei","<>:xip/const:PREP#4420-4423$<i>671","<>:xip/const:TOP#4420-4484$<i>681","<>:xip/const:PP#4420-4442$<i>673<b>1"],["s:bayerischen","i:bayerischen","_671#4424-4435","opennlp/p:ADJA","cnx/l:bayerisch","cnx/p:A","cnx/syn:@PREMOD","<>:cnx/const:np#4424-4442$<i>673","tt/l:bayerisch","tt/p:ADJA","mate/l:bayerisch","mate/p:ADJA","mate/m:case:dat","mate/m:number:pl","mate/m:gender:fem","mate/m:degree:pos",">:mate/d:NK$<i>672","xip/p:ADJ","xip/l:bayerisch","<>:xip/const:NP#4424-4442$<i>673<b>2","<>:xip/const:NPA#4424-4442$<i>673<b>3","<>:xip/const:AP#4424-4435$<i>672<b>4","<>:xip/const:ADJ#4424-4435$<i>672",">:xip/d:NMOD$<i>672"],["s:Münzen","i:münzen","_672#4436-4442","opennlp/p:NN","cnx/l:münze","cnx/p:N","cnx/m:PL","cnx/syn:@NH","tt/l:Münze","tt/p:NN","mate/l:münze","mate/p:NN","mate/m:case:dat","mate/m:number:pl","mate/m:gender:fem","<:mate/d:NK$<i>671",">:mate/d:NK$<i>670","<:mate/d:MNR$<i>673","xip/p:NOUN","xip/l:münzen","<>:xip/const:NOUN#4436-4442$<i>673","<:xip/d:NMOD$<i>671"],["s:von","i:von","_673#4443-4446","opennlp/p:APPR","cnx/l:von","cnx/p:PREP","cnx/syn:@POSTMOD","tt/l:von","tt/p:APPR","mate/l:von","mate/p:APPR",">:mate/d:MNR$<i>672","<:mate/d:NK$<i>674","xip/p:PREP","xip/l:von","<>:xip/const:PREP#4443-4446$<i>674","<>:xip/const:PP#4443-4460$<i>677<b>1"],["s:1763","i:1763","_674#4447-4451","opennlp/p:CARD","cnx/l:1763","cnx/p:NUM","cnx/syn:@NH","tt/l:@card@","tt/p:CARD","mate/l:1763","mate/p:CARD",">:mate/d:NK$<i>673","xip/p:NUM","xip/l:1763","<>:xip/const:NP#4447-4460$<i>677<b>2","<>:xip/const:NPA#4447-4460$<i>677<b>3","<>:xip/const:NUM#4447-4460$<i>677<b>4","<>:xip/const:NUM#4447-4451$<i>675","<:xip/d:COORD$<i>675"],["s:bis","i:bis","_675#4452-4455","opennlp/p:APPR","cnx/l:bis","cnx/p:CC","cnx/syn:@CC","tt/l:bis","tt/p:APPR","tt/l:bis","tt/p:KON","mate/l:bis","mate/p:APPR",">:mate/d:MO$<i>670","<:mate/d:NK$<i>676","xip/p:CONJ","xip/l:bis","<>:xip/const:CONJ#4452-4455$<i>676",">:xip/d:COORD$<i>674",">:xip/d:COORD$<i>676"],["s:1794","i:1794","_676#4456-4460","opennlp/p:CARD","cnx/l:1794","cnx/p:NUM","cnx/syn:@NH","tt/l:@card@","tt/p:CARD","mate/l:1794","mate/p:CARD",">:mate/d:NK$<i>675","xip/p:NUM","xip/l:1794","<>:xip/const:NUM#4456-4460$<i>677","<:xip/d:COORD$<i>675","xip/d:DATE"],["s:für","i:für","_677#4461-4464","opennlp/p:APPR","cnx/l:für","cnx/p:PREP","cnx/syn:@POSTMOD","tt/l:für","tt/p:APPR","mate/l:für","mate/p:APPR",">:mate/d:MO$<i>670","<:mate/d:NK$<i>680","xip/p:PREP","xip/l:für","<>:xip/const:PREP#4461-4464$<i>678","<>:xip/const:PP#4461-4483$<i>681<b>1"],["s:die","i:die","_678#4465-4468","opennlp/p:ART","cnx/l:die","cnx/p:DET","cnx/syn:@PREMOD","tt/l:die","tt/p:ART","mate/l:der","mate/p:ART","mate/m:case:acc","mate/m:number:pl","mate/m:gender:neut",">:mate/d:NK$<i>680","xip/p:DET","xip/l:die","<>:xip/const:DET#4465-4468$<i>679","<>:xip/const:NP#4465-4483$<i>681<b>2",">:xip/d:DETERM$<i>680"],["s:Amberger","i:amberger","_679#4469-4477","opennlp/p:NN","corenlp/ne_dewac_175m_600:I-MISC","cnx/l:Amberger","cnx/p:N","cnx/m:Prop","cnx/syn:@PREMOD","<>:cnx/const:np#4469-4483$<i>681","tt/p:ADJA","mate/l:amberger","mate/p:NE","mate/m:case:nom","mate/m:number:sg","mate/m:gender:*",">:mate/d:PNC$<i>680","xip/p:ADJ","xip/l:Amberger","<>:xip/const:ADJ#4469-4477$<i>680","<>:xip/const:NPA#4469-4483$<i>681<b>3","<>:xip/const:AP#4469-4477$<i>680<b>4",">:xip/d:NMOD$<i>680"],["s:Münze","i:münze","_680#4478-4483","opennlp/p:NN","cnx/l:münze","cnx/p:N","cnx/syn:@NH","tt/l:Münze","tt/p:NN","mate/l:münze","mate/p:NE","mate/m:case:acc","mate/m:number:sg","mate/m:gender:fem","<:mate/d:NK$<i>678","<:mate/d:PNC$<i>679",">:mate/d:NK$<i>677","xip/p:NOUN","xip/l:Münze","<>:xip/const:NOUN#4478-4483$<i>681","<:xip/d:DETERM$<i>678","<:xip/d:NMOD$<i>679"],["s:im","i:im","_681#4485-4487","<>:s#4485-4518$<i>687","<>:p#4485-4543$<i>691","opennlp/p:APPRART","tt/l:im","tt/p:APPRART","mate/l:in","mate/p:APPRART","mate/m:case:dat","mate/m:number:sg","mate/m:gender:masc","<:mate/d:NK$<i>686","<:mate/d:MO$<i>687","xip/p:PREP","xip/l:in","<>:xip/const:PREP#4485-4487$<i>682","<>:xip/const:TOP#4485-4518$<i>687"],["s:Königreich","i:königreich","_682#4488-4498","opennlp/p:NN","cnx/l:könig","cnx/l:reich","cnx/p:N","cnx/syn:@NH","<>:cnx/const:np#4488-4498$<i>683","tt/l:Königreich","tt/p:NE","tt/l:Königreich","tt/p:NN","mate/l:königreich","mate/p:NN","mate/m:case:dat","mate/m:number:sg","mate/m:gender:masc",">:mate/d:PNC$<i>686","<:mate/d:NK$<i>683","<:mate/d:MNR$<i>684","xip/p:ADJ","xip/l:König","xip/l:reich","xip/l:königreich","<>:xip/const:ADJ#4488-4498$<i>683","<>:xip/const:AP#4488-4498$<i>683<b>1"],["s:Hannover","i:hannover","_683#4499-4507","opennlp/p:NE","corenlp/ne_hgc_175m_600:I-LOC","cnx/l:Hannover","cnx/p:N","cnx/m:Prop","cnx/syn:@NH","<>:cnx/const:np#4499-4517$<i>687","tt/l:Hannover","tt/p:NE","mate/l:hannover","mate/p:NE","mate/m:case:nom","mate/m:number:sg","mate/m:gender:neut",">:mate/d:NK$<i>682","xip/p:NOUN","xip/l:Hannover","<>:xip/const:NOUN#4499-4507$<i>684","<>:xip/const:NP#4499-4507$<i>684<b>1","<>:xip/const:NPA#4499-4507$<i>684<b>2","xip/d:LOC","xip/d:THEMA"],["s:im","i:im","_684#4508-4510","opennlp/p:APPRART","tt/l:im","tt/p:APPRART","mate/l:in","mate/p:APPRART","mate/m:case:dat","mate/m:number:sg","mate/m:gender:masc",">:mate/d:MNR$<i>682","xip/p:PREP","xip/l:in","<>:xip/const:PREP#4508-4510$<i>685","<>:xip/const:PP#4508-4517$<i>687<b>1"],["s:19.","i:19.","_685#4511-4514","opennlp/p:ADJA","cnx/l:19.","cnx/p:NUM","cnx/m:ORD","cnx/syn:@PREMOD","tt/l:19.","tt/p:ADJA","xip/p:NUM","xip/l:19.","<>:xip/const:NUM#4511-4514$<i>686","<>:xip/const:NP#4511-4517$<i>687<b>2","<>:xip/const:NPA#4511-4517$<i>687<b>3"],["s:Jh","i:jh","_686#4515-4517","opennlp/p:NN","cnx/l:Jh","cnx/p:N","cnx/m:Prop","cnx/syn:@NH","mate/l:jh","mate/p:NE","mate/m:case:nom","mate/m:number:sg","mate/m:gender:*","<:mate/d:PNC$<i>682",">:mate/d:NK$<i>681","xip/p:NOUN","xip/l:Jh","<>:xip/const:NOUN#4515-4517$<i>687"],["s:für","i:für","_687#4519-4522","<>:s#4519-4543$<i>691","opennlp/p:APPR","cnx/l:für","cnx/p:PREP","cnx/syn:@PREMARK","tt/l:für","tt/p:APPR","mate/l:für","mate/p:APPR",">:mate/d:MO$<i>681","<:mate/d:NK$<i>689","xip/p:PREP","xip/l:für","<>:xip/const:TOP#4519-4543$<i>691","<>:xip/const:PP#4519-4532$<i>690<b>1","<>:xip/const:PREP#4519-4522$<i>688"],["s:die","i:die","_688#4523-4526","opennlp/p:ART","cnx/l:die","cnx/p:DET","cnx/syn:@PREMOD","tt/l:die","tt/p:ART","mate/l:der","mate/p:ART","mate/m:case:acc","mate/m:number:sg","mate/m:gender:fem",">:mate/d:NK$<i>689","xip/p:DET","xip/l:die","<>:xip/const:NP#4523-4532$<i>690<b>2","<>:xip/const:DET#4523-4526$<i>689",">:xip/d:DETERM$<i>689"],["s:Münze","i:münze","_689#4527-4532","opennlp/p:NN","cnx/l:münze","cnx/p:N","cnx/syn:@PREMOD","<>:cnx/const:np#4527-4542$<i>691","tt/l:Münze","tt/p:NN","mate/l:münze","mate/p:NN","mate/m:case:acc","mate/m:number:sg","mate/m:gender:fem","<:mate/d:NK$<i>688",">:mate/d:NK$<i>687","<:mate/d:NK$<i>690","xip/p:NOUN","xip/l:Münze","<>:xip/const:NPA#4527-4532$<i>690<b>3","<>:xip/const:NOUN#4527-4532$<i>690","<:xip/d:DETERM$<i>688","<:xip/d:NMOD$<i>690"],["s:Clausthal","i:clausthal","_690#4533-4542","opennlp/p:NE","corenlp/ne_dewac_175m_600:I-LOC","corenlp/ne_hgc_175m_600:I-LOC","cnx/l:clausthal","cnx/p:N","cnx/syn:@NH","tt/l:Clausthal","tt/p:NE","mate/l:clausthal","mate/p:NE","mate/m:case:nom","mate/m:number:sg","mate/m:gender:*",">:mate/d:NK$<i>689","xip/p:NOUN","xip/l:Clausthal","<>:xip/const:NP#4533-4542$<i>691<b>1","<>:xip/const:NPA#4533-4542$<i>691<b>2","<>:xip/const:NOUN#4533-4542$<i>691",">:xip/d:NMOD$<i>689"],["s:bei","i:bei","_691#4544-4547","<>:s#4544-4595$<i>698","<>:p#4544-4595$<i>698","opennlp/p:APPR","cnx/l:bei","cnx/p:PREP","cnx/syn:@PREMARK","tt/l:bei","tt/p:APPR","mate/l:bei","mate/p:APPR","<:mate/d:NK$<i>693","xip/p:PREP","xip/l:bei","<>:xip/const:PREP#4544-4547$<i>692","<>:xip/const:TOP#4544-4595$<i>698","<>:xip/const:PP#4544-4568$<i>694<b>1"],["s:mexikanischen","i:mexikanischen","_692#4548-4561","opennlp/p:ADJA","cnx/l:mexikanisch","cnx/p:A","cnx/syn:@PREMOD","<>:cnx/const:np#4548-4594$<i>698","tt/l:mexikanisch","tt/p:ADJA","mate/l:mexikanisch","mate/p:ADJA","mate/m:case:dat","mate/m:number:pl","mate/m:gender:fem","mate/m:degree:pos",">:mate/d:NK$<i>693","xip/p:ADJ","xip/l:mexikanisch","<>:xip/const:ADJ#4548-4561$<i>693","<>:xip/const:NP#4548-4568$<i>694<b>2","<>:xip/const:NPA#4548-4568$<i>694<b>3","<>:xip/const:AP#4548-4561$<i>693<b>4",">:xip/d:NMOD$<i>693"],["s:Münzen","i:münzen","_693#4562-4568","opennlp/p:NN","cnx/l:münze","cnx/p:N","cnx/m:PL","cnx/syn:@NH","tt/l:Münze","tt/p:NN","mate/l:münze","mate/p:NN","mate/m:case:dat","mate/m:number:pl","mate/m:gender:fem","<:mate/d:NK$<i>692",">:mate/d:NK$<i>691","<:mate/d:MNR$<i>694","xip/p:NOUN","xip/l:münzen","<>:xip/const:NOUN#4562-4568$<i>694","<:xip/d:NMOD$<i>692"],["s:für","i:für","_694#4569-4572","opennlp/p:APPR","cnx/l:für","cnx/p:PREP","cnx/syn:@POSTMOD","tt/l:für","tt/p:APPR","mate/l:für","mate/p:APPR",">:mate/d:MNR$<i>693","<:mate/d:NK$<i>696","xip/p:PREP","xip/l:für","<>:xip/const:PREP#4569-4572$<i>695","<>:xip/const:PP#4569-4587$<i>697<b>1"],["s:die","i:die","_695#4573-4576","opennlp/p:ART","cnx/l:die","cnx/p:DET","cnx/syn:@PREMOD","tt/l:die","tt/p:ART","mate/l:der","mate/p:ART","mate/m:case:acc","mate/m:number:sg","mate/m:gender:fem",">:mate/d:NK$<i>696","xip/p:DET","xip/l:die","<>:xip/const:DET#4573-4576$<i>696","<>:xip/const:NP#4573-4587$<i>697<b>2",">:xip/d:DETERM$<i>696"],["s:Münzstätte","i:münzstätte","_696#4577-4587","opennlp/p:NN","cnx/l:münze","cnx/l:stätte","cnx/p:N","cnx/syn:@PREMOD","tt/l:Münzstätte","tt/p:NN","mate/l:münzstätte","mate/p:NN","mate/m:case:acc","mate/m:number:sg","mate/m:gender:fem","<:mate/d:NK$<i>695",">:mate/d:NK$<i>694","<:mate/d:NK$<i>697","xip/p:NOUN","xip/l:münzen","xip/l:Stätte","xip/l:Münzenstätte","<>:xip/const:NOUN#4577-4587$<i>697","<>:xip/const:NPA#4577-4587$<i>697<b>3","<:xip/d:DETERM$<i>695","<:xip/d:NMOD$<i>697"],["s:Alamos","i:alamos","_697#4588-4594","opennlp/p:NE","cnx/l:Alamo","cnx/p:N","cnx/m:Prop","cnx/syn:@NH","tt/p:NE","mate/l:alamos","mate/p:NE","mate/m:case:nom","mate/m:number:sg","mate/m:gender:*",">:mate/d:NK$<i>696","xip/p:NOUN","xip/l:Alamos","<>:xip/const:NOUN#4588-4594$<i>698","<>:xip/const:NP#4588-4594$<i>698<b>1","<>:xip/const:NPA#4588-4594$<i>698<b>2",">:xip/d:NMOD$<i>696"],["s:A","i:a","_698#4596-4597","<>:s#4596-4779$<i>725","<>:p#4596-4702$<i>713","opennlp/p:NE","cnx/l:A","cnx/p:N","cnx/syn:@NH","<>:cnx/const:np#4596-4597$<i>699","tt/l:A","tt/p:NN","mate/p:XY","mate/m:case:nom","mate/m:number:sg","mate/m:gender:*","xip/p:SYMBOL","xip/l:A","<>:xip/const:SYMBOL#4596-4597$<i>699","<>:xip/const:TOP#4596-4779$<i>725","<>:xip/const:MC#4596-4626$<i>702<b>1","<>:xip/const:NP#4596-4597$<i>699<b>2","<>:xip/const:NPA#4596-4597$<i>699<b>3","<>:xip/const:NOUN#4596-4597$<i>699<b>4",">:xip/d:SUBJ$<i>699"],["s:ist","i:ist","_699#4598-4601","opennlp/p:VAFIN","cnx/l:sein","cnx/p:V","cnx/m:IND","cnx/m:PRES","cnx/syn:@MAIN","tt/l:sein","tt/p:VAFIN","mate/l:sein","mate/p:VAFIN","mate/m:number:sg","mate/m:person:3","mate/m:tense:pres","mate/m:mood:ind","<:mate/d:PD$<i>701","xip/p:VERB","xip/l:sein","<>:xip/const:VERB#4598-4601$<i>700","<:xip/d:SUBJ$<i>698","xip/d:VMAIN","<:xip/d:PRED$<i>701"],["s:eine","i:eine","_700#4602-4606","opennlp/p:ART","cnx/l:eine","cnx/p:DET","cnx/syn:@PREMOD","tt/l:eine","tt/p:ART","mate/l:ein","mate/p:ART","mate/m:case:nom","mate/m:number:sg","mate/m:gender:fem",">:mate/d:NK$<i>701","xip/p:DET","xip/l:ein","<>:xip/const:NP#4602-4626$<i>702<b>2","<>:xip/const:DET#4602-4606$<i>701",">:xip/d:DETERM$<i>701"],["s:Fahrerlaubnisklasse","i:fahrerlaubnisklasse","_701#4607-4626","opennlp/p:NN","cnx/l:fahr","cnx/l:erlaubnis","cnx/l:klasse","cnx/p:N","cnx/syn:@NH","<>:cnx/const:np#4607-4626$<i>702","tt/l:Fahrerlaubnisklasse","tt/p:NN","mate/l:fahrerlaubnisklasse","mate/p:NN","mate/m:case:nom","mate/m:number:sg","mate/m:gender:fem","<:mate/d:NK$<i>700",">:mate/d:PD$<i>699","<:mate/d:RC$<i>712","xip/p:NOUN","xip/l:fahren","xip/l:Erlaubnis","xip/l:Klasse","xip/l:Fahrenerlaubnisklasse","<>:xip/const:NPA#4607-4626$<i>702<b>3","<>:xip/const:NOUN#4607-4626$<i>702","<:xip/d:DETERM$<i>700",">:xip/d:PRED$<i>699"],["s:die","i:die","_702#4628-4631","opennlp/p:PRELS","cnx/l:die","cnx/p:PRON","cnx/syn:@NH","tt/l:die","tt/p:PRELS","mate/l:der","mate/p:PRELS","mate/m:case:nom","mate/m:number:sg","mate/m:gender:fem",">:mate/d:SB$<i>712","xip/p:PRON","xip/l:die","<>:xip/const:PRON#4628-4631$<i>703","<>:xip/const:MC#4628-4711$<i>715<b>1","<>:xip/const:NP#4628-4631$<i>703<b>2",">:xip/d:SUBJ$<i>712"],["s:in","i:in","_703#4632-4634","opennlp/p:APPR","cnx/l:in","cnx/p:PREP","cnx/syn:@PREMARK","tt/l:in","tt/p:APPR","mate/l:in","mate/p:APPR",">:mate/d:MO$<i>712","<:mate/d:NK$<i>704","<:mate/d:CD$<i>705","xip/p:PREP","xip/l:in","<>:xip/const:PREP#4632-4634$<i>704","<>:xip/const:PP#4632-4646$<i>705<b>2"],["s:Deutschland","i:deutschland","_704#4635-4646","opennlp/p:NE","corenlp/ne_dewac_175m_600:I-LOC","corenlp/ne_hgc_175m_600:I-LOC","cnx/l:Deutschland","cnx/p:N","cnx/m:Prop","cnx/syn:@NH","<>:cnx/const:np#4635-4646$<i>705","tt/l:Deutschland","tt/p:NE","mate/l:deutschland","mate/p:NE","mate/m:case:dat","mate/m:number:sg","mate/m:gender:neut",">:mate/d:NK$<i>703","xip/p:NOUN","xip/l:Deutschland","<>:xip/const:NOUN#4635-4646$<i>705","<>:xip/const:NP#4635-4646$<i>705<b>3","<>:xip/const:NPA#4635-4646$<i>705<b>4","xip/d:LOC"],["s:und","i:und","_705#4647-4650","opennlp/p:KON","cnx/l:und","cnx/p:CC","cnx/syn:@CC","tt/l:und","tt/p:KON","mate/l:und","mate/p:KON",">:mate/d:CD$<i>703","<:mate/d:CJ$<i>706","xip/p:CONJ","xip/l:und","<>:xip/const:CONJ#4647-4650$<i>706"],["s:in","i:in","_706#4651-4653","opennlp/p:APPR","cnx/l:in","cnx/p:PREP","cnx/syn:@PREMARK","tt/l:in","tt/p:APPR","mate/l:in","mate/p:APPR",">:mate/d:CJ$<i>705","<:mate/d:NK$<i>707","xip/p:PREP","xip/l:in","<>:xip/const:PP#4651-4664$<i>708<b>2","<>:xip/const:PREP#4651-4653$<i>707"],["s:Österreich","i:österreich","_707#4654-4664","opennlp/p:NE","cnx/l:Österreich","cnx/p:N","cnx/m:Prop","cnx/syn:@NH","<>:cnx/const:np#4654-4691$<i>712","tt/l:Österreich","tt/p:NE","mate/l:österreich","mate/p:NE","mate/m:case:dat","mate/m:number:sg","mate/m:gender:neut",">:mate/d:NK$<i>706","xip/p:NOUN","xip/l:Österreich","<>:xip/const:NOUN#4654-4664$<i>708","<>:xip/const:NP#4654-4664$<i>708<b>3","<>:xip/const:NPA#4654-4664$<i>708<b>4","xip/d:LOC"],["s:zum","i:zum","_708#4665-4668","opennlp/p:APPRART","tt/l:zum","tt/p:APPRART","mate/l:zu","mate/p:APPRART","mate/m:case:dat","mate/m:number:sg","mate/m:gender:neut",">:mate/d:OP$<i>712","<:mate/d:NK$<i>709","xip/p:PREP","xip/l:zu","<>:xip/const:PREP#4665-4668$<i>709","<>:xip/const:PP#4665-4675$<i>710<b>2"],["s:Fahren","i:fahren","_709#4669-4675","opennlp/p:NN","cnx/l:Fahren","cnx/p:N","cnx/m:Prop","cnx/syn:@NH","tt/l:Fahren","tt/p:NN","mate/l:fahren","mate/p:NN","mate/m:case:dat","mate/m:number:sg","mate/m:gender:neut",">:mate/d:NK$<i>708","<:mate/d:PG$<i>710","xip/p:NOUN","xip/l:fahren","<>:xip/const:NP#4669-4675$<i>710<b>3","<>:xip/const:NPA#4669-4675$<i>710<b>4","<>:xip/const:NOUN#4669-4675$<i>710"],["s:von","i:von","_710#4676-4679","opennlp/p:APPR","cnx/l:von","cnx/p:PREP","cnx/syn:@POSTMOD","tt/l:von","tt/p:APPR","mate/l:von","mate/p:APPR",">:mate/d:PG$<i>709","<:mate/d:NK$<i>711","xip/p:PREP","xip/l:von","<>:xip/const:PP#4676-4691$<i>712<b>2","<>:xip/const:PREP#4676-4679$<i>711"],["s:Motorrädern","i:motorrädern","_711#4680-4691","opennlp/p:NN","cnx/l:motor","cnx/l:rad","cnx/p:N","cnx/m:PL","cnx/syn:@NH","tt/l:Motorrad","tt/p:NN","mate/l:motorrad","mate/p:NN","mate/m:case:dat","mate/m:number:pl","mate/m:gender:neut",">:mate/d:NK$<i>710","xip/p:NOUN","xip/l:Motorrad","<>:xip/const:NOUN#4680-4691$<i>712","<>:xip/const:NP#4680-4691$<i>712<b>3","<>:xip/const:NPA#4680-4691$<i>712<b>4"],["s:berechtigt","i:berechtigt","_712#4692-4702","opennlp/p:VVPP","cnx/l:berechtigen","cnx/p:V","cnx/m:IND","cnx/m:PRES","cnx/syn:@MAIN","tt/l:berechtigen","tt/p:VVFIN","tt/l:berechtigt","tt/p:ADJD","tt/l:berechtigen","tt/p:VVPP","mate/l:berechtigt","mate/p:VVPP","<:mate/d:SB$<i>702","<:mate/d:MO$<i>703","<:mate/d:OP$<i>708",">:mate/d:RC$<i>701","xip/p:VERB","xip/l:berechtigen","<>:xip/const:VERB#4692-4702$<i>713","<:xip/d:SUBJ$<i>702","xip/d:VMAIN","<:xip/d:OBJ$<i>713"],["s:A","i:a","_713#4703-4704","<>:p#4703-4779$<i>725","opennlp/p:XY","cnx/l:a","cnx/p:PREP","cnx/syn:@PREMARK","tt/l:A","tt/p:NN","mate/p:XY","mate/m:case:*","mate/m:number:*","mate/m:gender:*","xip/p:SYMBOL","xip/l:A","<>:xip/const:SYMBOL#4703-4704$<i>714","<>:xip/const:NP#4703-4704$<i>714<b>2","<>:xip/const:NPA#4703-4704$<i>714<b>3","<>:xip/const:NOUN#4703-4704$<i>714<b>4",">:xip/d:OBJ$<i>712"],["s:Zahl","i:zahl","_714#4707-4711","opennlp/p:NN","cnx/l:zahl","cnx/p:N","cnx/syn:@NH","<>:cnx/const:np#4705-4711$<i>715","tt/l:Zahl","tt/p:NN","mate/l:zahl","mate/p:NN","mate/m:case:nom","mate/m:number:sg","mate/m:gender:*",">:mate/d:SB$<i>715","xip/p:NOUN","xip/l:Zahl","<>:xip/const:NOUN#4707-4711$<i>715"],["s:steht","i:steht","_715#4712-4717","opennlp/p:VVFIN","cnx/l:stehen","cnx/p:V","cnx/m:IND","cnx/m:PRES","cnx/syn:@MAIN","tt/l:stehen","tt/p:VVFIN","mate/l:stehen","mate/p:VVFIN","mate/m:number:sg","mate/m:person:3","mate/m:tense:pres","mate/m:mood:ind","<:mate/d:SB$<i>714","<:mate/d:MO$<i>716","<:mate/d:MO$<i>722","xip/p:VERB","xip/l:stehen","<>:xip/const:VERB#4712-4717$<i>716","<>:xip/const:MC#4712-4778$<i>725<b>1","xip/d:VMAIN","<:xip/d:VMOD$<i>718"],["s:in","i:in","_716#4718-4720","opennlp/p:APPR","cnx/l:in","cnx/p:PREP","cnx/syn:@PREMARK","tt/l:in","tt/p:APPR","mate/l:in","mate/p:APPR",">:mate/d:MO$<i>715","<:mate/d:NK$<i>717","xip/p:PREP","xip/l:in","<>:xip/const:PP#4718-4732$<i>718<b>2","<>:xip/const:PREP#4718-4720$<i>717"],["s:Deutschland","i:deutschland","_717#4721-4732","opennlp/p:NE","corenlp/ne_dewac_175m_600:I-LOC","corenlp/ne_hgc_175m_600:I-LOC","cnx/l:Deutschland","cnx/p:N","cnx/m:Prop","cnx/syn:@NH","<>:cnx/const:np#4721-4732$<i>718","tt/l:Deutschland","tt/p:NE","mate/l:deutschland","mate/p:NE","mate/m:case:dat","mate/m:number:sg","mate/m:gender:neut",">:mate/d:NK$<i>716","<:mate/d:CJ$<i>718","xip/p:NOUN","xip/l:Deutschland","<>:xip/const:NOUN#4721-4732$<i>718","<>:xip/const:NP#4721-4732$<i>718<b>3","<>:xip/const:NPA#4721-4732$<i>718<b>4","xip/d:LOC"],["s:Österreich","i:österreich","_718#4734-4744","opennlp/p:NE","cnx/l:Österreich","cnx/p:N","cnx/m:Prop","cnx/syn:@NH","<>:cnx/const:np#4734-4744$<i>719","tt/l:Österreich","tt/p:NE","mate/l:österreich","mate/p:NE","mate/m:case:dat","mate/m:number:sg","mate/m:gender:neut",">:mate/d:CJ$<i>717","<:mate/d:CD$<i>719","xip/p:NOUN","xip/l:Österreich","<>:xip/const:NOUN#4734-4744$<i>719","<>:xip/const:NP#4734-4744$<i>719<b>2","<>:xip/const:NPA#4734-4744$<i>719<b>3",">:xip/d:VMOD$<i>715","xip/d:LOC","<:xip/d:COORD$<i>719"],["s:und","i:und","_719#4745-4748","opennlp/p:KON","cnx/l:und","cnx/p:CC","cnx/syn:@CC","tt/l:und","tt/p:KON","mate/l:und","mate/p:KON",">:mate/d:CD$<i>718","<:mate/d:CJ$<i>721","xip/p:CONJ","xip/l:und","<>:xip/const:CONJ#4745-4748$<i>720",">:xip/d:COORD$<i>718",">:xip/d:COORD$<i>721"],["s:der","i:der","_720#4749-4752","opennlp/p:ART","cnx/l:die","cnx/p:DET","cnx/syn:@PREMOD","tt/l:die","tt/p:ART","mate/l:der","mate/p:ART","mate/m:case:dat","mate/m:number:sg","mate/m:gender:fem",">:mate/d:NK$<i>721","xip/p:DET","xip/l:der","<>:xip/const:NP#4749-4760$<i>722<b>2","<>:xip/const:DET#4749-4752$<i>721",">:xip/d:DETERM$<i>721"],["s:Schweiz","i:schweiz","_721#4753-4760","opennlp/p:NE","corenlp/ne_dewac_175m_600:I-LOC","corenlp/ne_hgc_175m_600:I-LOC","cnx/l:Schweiz","cnx/p:N","cnx/m:Prop","cnx/syn:@NH","<>:cnx/const:np#4753-4778$<i>725","tt/l:Schweiz","tt/p:NE","mate/l:schweiz","mate/p:NE","mate/m:case:dat","mate/m:number:sg","mate/m:gender:fem","<:mate/d:NK$<i>720",">:mate/d:CJ$<i>719","xip/p:NOUN","xip/l:Schweiz","<>:xip/const:NOUN#4753-4760$<i>722","<>:xip/const:NPA#4753-4760$<i>722<b>3","<:xip/d:COORD$<i>719","<:xip/d:DETERM$<i>720","xip/d:LOC"],["s:für","i:für","_722#4761-4764","opennlp/p:APPR","cnx/l:für","cnx/p:PREP","cnx/syn:@POSTMOD","tt/l:für","tt/p:APPR","mate/l:für","mate/p:APPR",">:mate/d:MO$<i>715","<:mate/d:NK$<i>724","xip/p:PREP","xip/l:für","<>:xip/const:PREP#4761-4764$<i>723","<>:xip/const:PP#4761-4778$<i>725<b>2"],["s:eine","i:eine","_723#4765-4769","opennlp/p:ART","cnx/l:eine","cnx/p:DET","cnx/syn:@PREMOD","tt/l:eine","tt/p:ART","mate/l:ein","mate/p:ART","mate/m:case:acc","mate/m:number:sg","mate/m:gender:fem",">:mate/d:NK$<i>724","xip/p:DET","xip/l:ein","<>:xip/const:DET#4765-4769$<i>724","<>:xip/const:NP#4765-4778$<i>725<b>3",">:xip/d:DETERM$<i>724"],["s:Autobahn","i:autobahn","_724#4770-4778","opennlp/p:NN","cnx/l:auto","cnx/l:bahn","cnx/p:N","cnx/syn:@NH","tt/l:Autobahn","tt/p:NN","mate/l:autobahn","mate/p:NN","mate/m:case:acc","mate/m:number:sg","mate/m:gender:fem","<:mate/d:NK$<i>723",">:mate/d:NK$<i>722","xip/p:NOUN","xip/l:Autobahn","<>:xip/const:NPA#4770-4778$<i>725<b>4","<>:xip/const:NOUN#4770-4778$<i>725","<:xip/d:DETERM$<i>723"],["s:A","i:a","_725#4780-4781","<>:s#4780-4817$<i>732","<>:p#4780-4817$<i>732","opennlp/p:NE","cnx/l:A","cnx/p:N","cnx/syn:@NH","<>:cnx/const:np#4780-4781$<i>726","tt/l:A","tt/p:NN","mate/p:$(",">:mate/d:--$<i>726","xip/p:SYMBOL","xip/l:A","<>:xip/const:SYMBOL#4780-4781$<i>726","<>:xip/const:TOP#4780-4817$<i>732","<>:xip/const:MC#4780-4816$<i>732<b>1","<>:xip/const:NP#4780-4781$<i>726<b>2","<>:xip/const:NPA#4780-4781$<i>726<b>3","<>:xip/const:NOUN#4780-4781$<i>726<b>4",">:xip/d:SUBJ$<i>726"],["s:ist","i:ist","_726#4782-4785","opennlp/p:VAFIN","cnx/l:sein","cnx/p:V","cnx/m:IND","cnx/m:PRES","cnx/syn:@MAIN","tt/l:sein","tt/p:VAFIN","mate/l:sein","mate/p:VAFIN","mate/m:number:sg","mate/m:person:3","mate/m:tense:pres","mate/m:mood:ind","<:mate/d:--$<i>725","<:mate/d:MO$<i>727","<:mate/d:PD$<i>731","xip/p:VERB","xip/l:sein","<>:xip/const:VERB#4782-4785$<i>727","<:xip/d:SUBJ$<i>725","xip/d:VMAIN","<:xip/d:PRED$<i>731"],["s:in","i:in","_727#4786-4788","opennlp/p:APPR","cnx/l:in","cnx/p:PREP","cnx/syn:@PREMARK","tt/l:in","tt/p:APPR","mate/l:in","mate/p:APPR",">:mate/d:MO$<i>726","<:mate/d:NK$<i>729","xip/p:PREP","xip/l:in","<>:xip/const:PREP#4786-4788$<i>728","<>:xip/const:PP#4786-4800$<i>730<b>2"],["s:der","i:der","_728#4789-4792","opennlp/p:ART","cnx/l:die","cnx/p:DET","cnx/syn:@PREMOD","tt/l:die","tt/p:ART","mate/l:der","mate/p:ART","mate/m:case:dat","mate/m:number:sg","mate/m:gender:fem",">:mate/d:NK$<i>729","xip/p:DET","xip/l:der","<>:xip/const:DET#4789-4792$<i>729","<>:xip/const:NP#4789-4800$<i>730<b>3",">:xip/d:DETERM$<i>729"],["s:Medizin","i:medizin","_729#4793-4800","opennlp/p:NN","cnx/l:medizin","cnx/p:N","cnx/syn:@NH","<>:cnx/const:np#4793-4800$<i>730","tt/l:Medizin","tt/p:NN","mate/l:medizin","mate/p:NN","mate/m:case:dat","mate/m:number:sg","mate/m:gender:fem","<:mate/d:NK$<i>728",">:mate/d:NK$<i>727","xip/p:NOUN","xip/l:Medizin","<>:xip/const:NPA#4793-4800$<i>730<b>4","<>:xip/const:NOUN#4793-4800$<i>730","<:xip/d:DETERM$<i>728"],["s:eine","i:eine","_730#4801-4805","opennlp/p:ART","cnx/l:eine","cnx/p:DET","cnx/syn:@PREMOD","tt/l:eine","tt/p:ART","mate/l:ein","mate/p:ART","mate/m:case:acc","mate/m:number:sg","mate/m:gender:fem",">:mate/d:NK$<i>731","xip/p:DET","xip/l:ein","<>:xip/const:DET#4801-4805$<i>731","<>:xip/const:NP#4801-4816$<i>732<b>2",">:xip/d:DETERM$<i>731"],["s:Blutgruppe","i:blutgruppe","_731#4806-4816","opennlp/p:NN","cnx/l:blut","cnx/l:gruppe","cnx/p:N","cnx/syn:@NH","<>:cnx/const:np#4806-4816$<i>732","tt/l:Blutgruppe","tt/p:NN","mate/l:blutgruppe","mate/p:NN","mate/m:case:acc","mate/m:number:sg","mate/m:gender:fem","<:mate/d:NK$<i>730",">:mate/d:PD$<i>726","xip/p:NOUN","xip/l:bluten","xip/l:Gruppe","xip/l:Blutengruppe","<>:xip/const:NOUN#4806-4816$<i>732","<>:xip/const:NPA#4806-4816$<i>732<b>3","<:xip/d:DETERM$<i>730",">:xip/d:PRED$<i>726"],["s:A","i:a","_732#4818-4819","<>:s#4818-4893$<i>742","<>:p#4818-4893$<i>742","opennlp/p:NE","cnx/l:A","cnx/p:N","cnx/syn:@NH","<>:cnx/const:np#4818-4819$<i>733","tt/l:A","tt/p:NN","mate/p:XY","mate/m:case:nom","mate/m:number:sg","mate/m:gender:*","<:mate/d:UC$<i>741","xip/p:SYMBOL","xip/l:A","<>:xip/const:SYMBOL#4818-4819$<i>733","<>:xip/const:TOP#4818-4893$<i>742","<>:xip/const:MC#4818-4892$<i>742<b>1","<>:xip/const:NP#4818-4819$<i>733<b>2","<>:xip/const:NPA#4818-4819$<i>733<b>3","<>:xip/const:NOUN#4818-4819$<i>733<b>4",">:xip/d:SUBJ$<i>733"],["s:steht","i:steht","_733#4820-4825","opennlp/p:VVFIN","cnx/l:stehen","cnx/p:V","cnx/m:IND","cnx/m:PRES","cnx/syn:@MAIN","tt/l:stehen","tt/p:VVFIN","mate/l:stehen","mate/p:VVFIN","mate/m:number:sg","mate/m:person:3","mate/m:tense:pres","mate/m:mood:ind","<:mate/d:MO$<i>734","xip/p:VERB","xip/l:stehen","<>:xip/const:VERB#4820-4825$<i>734","<:xip/d:SUBJ$<i>732","xip/d:VMAIN"],["s:als","i:als","_734#4826-4829","opennlp/p:APPR","cnx/l:als","cnx/p:PREP","cnx/syn:@PREMARK","tt/l:als","tt/p:KOKOM","mate/l:als","mate/p:APPR",">:mate/d:MO$<i>733","<:mate/d:NK$<i>736","xip/p:PREP","xip/l:als","<>:xip/const:PREP#4826-4829$<i>735","<>:xip/const:PP#4826-4854$<i>737<b>2"],["s:internationale","i:internationale","_735#4830-4844","opennlp/p:ADJA","cnx/l:international","cnx/p:A","cnx/syn:@PREMOD","<>:cnx/const:np#4830-4854$<i>737","tt/l:international","tt/p:ADJA","mate/l:international","mate/p:ADJA","mate/m:case:nom","mate/m:number:sg","mate/m:gender:fem","mate/m:degree:pos",">:mate/d:NK$<i>736","xip/p:ADJ","xip/l:international","<>:xip/const:ADJ#4830-4844$<i>736","<>:xip/const:NP#4830-4854$<i>737<b>3","<>:xip/const:NPA#4830-4854$<i>737<b>4","<>:xip/const:AP#4830-4844$<i>736<b>5",">:xip/d:NMOD$<i>736"],["s:Abkürzung","i:abkürzung","_736#4845-4854","opennlp/p:NN","cnx/l:abkürzung","cnx/p:N","cnx/syn:@NH","tt/l:Abkürzung","tt/p:NN","mate/l:abkürzung","mate/p:NN","mate/m:case:nom","mate/m:number:sg","mate/m:gender:fem","<:mate/d:NK$<i>735",">:mate/d:NK$<i>734","<:mate/d:MNR$<i>737","xip/p:NOUN","xip/l:Abkürzung","<>:xip/const:NOUN#4845-4854$<i>737","<:xip/d:NMOD$<i>735"],["s:bei","i:bei","_737#4855-4858","opennlp/p:APPR","cnx/l:bei","cnx/p:PREP","cnx/syn:@PREMARK","tt/l:bei","tt/p:APPR","mate/l:bei","mate/p:APPR",">:mate/d:MNR$<i>736","<:mate/d:NK$<i>738","xip/p:PREP","xip/l:bei","<>:xip/const:PP#4855-4873$<i>739<b>2","<>:xip/const:PREP#4855-4858$<i>738"],["s:Eisenbahnwagen","i:eisenbahnwagen","_738#4859-4873","opennlp/p:NN","cnx/l:eisen","cnx/l:bahn","cnx/l:wagen","cnx/p:N","cnx/syn:@NH","<>:cnx/const:np#4859-4892$<i>742","tt/l:Eisenbahnwagen","tt/p:NN","mate/l:eisenbahnwagen","mate/p:NN","mate/m:case:dat","mate/m:number:pl","mate/m:gender:masc",">:mate/d:NK$<i>737","<:mate/d:MNR$<i>739","xip/p:NOUN","xip/l:Eisenbahn","xip/l:wagen","xip/l:Eisenbahnwagen","<>:xip/const:NP#4859-4873$<i>739<b>3","<>:xip/const:NPA#4859-4873$<i>739<b>4","<>:xip/const:NOUN#4859-4873$<i>739"],["s:für","i:für","_739#4874-4877","opennlp/p:APPR","cnx/l:für","cnx/p:PREP","cnx/syn:@POSTMOD","tt/l:für","tt/p:APPR","mate/l:für","mate/p:APPR",">:mate/d:MNR$<i>738","xip/p:PREP","xip/l:für","<>:xip/const:PREP#4874-4877$<i>740","<>:xip/const:PP#4874-4892$<i>742<b>2"],["s:1.","i:1.","_740#4878-4880","opennlp/p:ADJA","cnx/l:1.","cnx/p:NUM","cnx/syn:@PREMOD","tt/l:1.","tt/p:ADJA","xip/p:NUM","xip/l:1.","<>:xip/const:NUM#4878-4880$<i>741","<>:xip/const:NP#4878-4892$<i>742<b>3","<>:xip/const:NPA#4878-4892$<i>742<b>4"],["s:Wagenklasse","i:wagenklasse","_741#4881-4892","opennlp/p:NN","cnx/l:wagen","cnx/l:klasse","cnx/p:N","cnx/syn:@NH","tt/l:Wagenklasse","tt/p:NN","mate/l:wagenklasse","mate/p:NN","mate/m:case:nom","mate/m:number:sg","mate/m:gender:fem",">:mate/d:UC$<i>732","xip/p:NOUN","xip/l:wagen","xip/l:Klasse","xip/l:Wagenklasse","<>:xip/const:NOUN#4881-4892$<i>742"],["s:A","i:a","_742#4894-4895","<>:s#4894-5011$<i>757","<>:p#4894-5043$<i>762","opennlp/p:NE","cnx/l:A","cnx/p:N","cnx/syn:@NH","<>:cnx/const:np#4894-4895$<i>743","tt/l:A","tt/p:NN","mate/p:XY","mate/m:case:nom","mate/m:number:sg","mate/m:gender:*","xip/p:SYMBOL","xip/l:A","<>:xip/const:SYMBOL#4894-4895$<i>743","<>:xip/const:TOP#4894-5009$<i>757","<>:xip/const:MC#4894-4926$<i>748<b>1","<>:xip/const:NP#4894-4895$<i>743<b>2","<>:xip/const:NPA#4894-4895$<i>743<b>3","<>:xip/const:NOUN#4894-4895$<i>743<b>4",">:xip/d:SUBJ$<i>743"],["s:steht","i:steht","_743#4896-4901","opennlp/p:VVFIN","cnx/l:stehen","cnx/p:V","cnx/m:IND","cnx/m:PRES","cnx/syn:@MAIN","tt/l:stehen","tt/p:VVFIN","mate/l:stehen","mate/p:VVFIN","mate/m:number:sg","mate/m:person:3","mate/m:tense:pres","mate/m:mood:ind","<:mate/d:MO$<i>744","xip/p:VERB","xip/l:stehen","<>:xip/const:VERB#4896-4901$<i>744","<:xip/d:SUBJ$<i>742","xip/d:VMAIN"],["s:als","i:als","_744#4902-4905","opennlp/p:APPR","cnx/l:als","cnx/p:PREP","cnx/syn:@PREMARK","tt/l:als","tt/p:KOKOM","mate/l:als","mate/p:APPR",">:mate/d:MO$<i>743","<:mate/d:NK$<i>745","xip/p:PREP","xip/l:als","<>:xip/const:PP#4902-4915$<i>746<b>2","<>:xip/const:PREP#4902-4905$<i>745"],["s:Abkürzung","i:abkürzung","_745#4906-4915","opennlp/p:NN","cnx/l:abkürzung","cnx/p:N","cnx/syn:@NH","<>:cnx/const:np#4906-4926$<i>748","tt/l:Abkürzung","tt/p:NN","mate/l:abkürzung","mate/p:NN","mate/m:case:acc","mate/m:number:sg","mate/m:gender:fem",">:mate/d:NK$<i>744","<:mate/d:MNR$<i>746","xip/p:NOUN","xip/l:Abkürzung","<>:xip/const:NOUN#4906-4915$<i>746","<>:xip/const:NP#4906-4915$<i>746<b>3","<>:xip/const:NPA#4906-4915$<i>746<b>4"],["s:für","i:für","_746#4916-4919","opennlp/p:ADJA","cnx/l:für","cnx/p:PREP","cnx/syn:@POSTMOD","tt/l:für","tt/p:APPR","mate/l:für","mate/p:APPR",">:mate/d:MNR$<i>745","<:mate/d:NK$<i>747","xip/p:PREP","xip/l:für","<>:xip/const:PREP#4916-4919$<i>747","<>:xip/const:PP#4916-4926$<i>748<b>2"],["s:Abfall","i:abfall","_747#4920-4926","opennlp/p:NN","cnx/l:abfall","cnx/p:N","cnx/syn:@NH","tt/l:Abfall","tt/p:NN","mate/l:abfall","mate/p:NN","mate/m:case:acc","mate/m:number:sg","mate/m:gender:masc",">:mate/d:NK$<i>746","<:mate/d:CJ$<i>748","xip/p:NOUN","xip/l:Abfall","<>:xip/const:NP#4920-4926$<i>748<b>3","<>:xip/const:NPA#4920-4926$<i>748<b>4","<>:xip/const:NOUN#4920-4926$<i>748"],["s:Akten","i:akten","_748#4928-4933","opennlp/p:NN","cnx/l:akt","cnx/p:N","cnx/m:PL","cnx/syn:@NH","<>:cnx/const:np#4928-4933$<i>749","tt/l:Akt|Akte","tt/p:NN","mate/l:akte","mate/p:NN","mate/m:case:acc","mate/m:number:pl","mate/m:gender:fem",">:mate/d:CJ$<i>747","<:mate/d:PAR$<i>749","<:mate/d:CJ$<i>751","xip/p:NOUN","xip/l:Akt","<>:xip/const:NP#4928-4933$<i>749<b>1","<>:xip/const:NPA#4928-4933$<i>749<b>2","<>:xip/const:NOUN#4928-4933$<i>749","xip/d:THEMA"],["s:bei","i:bei","_749#4935-4938","opennlp/p:APPR","cnx/l:bei","cnx/p:PREP","cnx/syn:@PREMARK","tt/l:bei","tt/p:APPR","mate/l:bei","mate/p:APPR",">:mate/d:PAR$<i>748","<:mate/d:NK$<i>750","xip/p:PREP","xip/l:bei","<>:xip/const:PREP#4935-4938$<i>750","<>:xip/const:INS#4934-4946$<i>751<b>1","<>:xip/const:PP#4935-4945$<i>751<b>2"],["s:Ämtern","i:ämtern","_750#4939-4945","opennlp/p:NN","cnx/l:amt","cnx/p:N","cnx/m:PL","cnx/syn:@NH","<>:cnx/const:np#4939-4945$<i>751","tt/l:Amt","tt/p:NN","mate/l:amt","mate/p:NN","mate/m:case:dat","mate/m:number:pl","mate/m:gender:neut",">:mate/d:NK$<i>749","xip/p:NOUN","xip/l:Amt","<>:xip/const:NOUN#4939-4945$<i>751","<>:xip/const:NP#4939-4945$<i>751<b>3","<>:xip/const:NPA#4939-4945$<i>751<b>4"],["s:Anordnung","i:anordnung","_751#4948-4957","opennlp/p:NN","cnx/l:anordnung","cnx/p:N","cnx/syn:@NH","<>:cnx/const:np#4948-4957$<i>752","tt/l:Anordnung","tt/p:NN","mate/l:anordnung","mate/p:NN","mate/m:case:acc","mate/m:number:sg","mate/m:gender:fem",">:mate/d:CJ$<i>748","<:mate/d:PAR$<i>752","<:mate/d:CJ$<i>753","xip/p:NOUN","xip/l:Anordnung","<>:xip/const:NOUN#4948-4957$<i>752","<>:xip/const:NP#4948-4957$<i>752<b>1","<>:xip/const:NPA#4948-4957$<i>752<b>2","xip/d:THEMA"],["s:Rechtswesen","i:rechtswesen","_752#4959-4970","opennlp/p:NN","cnx/l:recht","cnx/l:wesen","cnx/p:N","cnx/m:PL","cnx/syn:@NH","<>:cnx/const:np#4959-4970$<i>753","tt/l:Rechtswesen","tt/p:NN","mate/l:rechtswesen","mate/p:NN","mate/m:case:*","mate/m:number:pl","mate/m:gender:fem",">:mate/d:PAR$<i>751","xip/p:NOUN","xip/l:Recht","xip/l:Wesen","xip/l:Rechtswesen","<>:xip/const:INS#4958-4971$<i>753<b>1","<>:xip/const:NP#4959-4970$<i>753<b>2","<>:xip/const:NPA#4959-4970$<i>753<b>3","<>:xip/const:NOUN#4959-4970$<i>753"],["s:Agent","i:agent","_753#4973-4978","opennlp/p:NN","cnx/l:agent","cnx/p:N","cnx/syn:@NH","<>:cnx/const:np#4973-4978$<i>754","tt/l:Agent","tt/p:NN","mate/l:agent","mate/p:NN","mate/m:case:nom","mate/m:number:sg","mate/m:gender:masc",">:mate/d:CJ$<i>751","<:mate/d:PAR$<i>754","<:mate/d:CJ$<i>755","xip/p:NOUN","xip/l:Agent","<>:xip/const:NOUN#4973-4978$<i>754","<>:xip/const:NP#4973-4978$<i>754<b>1","<>:xip/const:NPA#4973-4978$<i>754<b>2","xip/d:THEMA"],["s:Börse","i:börse","_754#4980-4985","opennlp/p:NE","cnx/l:börse","cnx/p:N","cnx/syn:@NH","<>:cnx/const:np#4980-4985$<i>755","tt/l:Börse","tt/p:NN","mate/l:börse","mate/p:NN","mate/m:case:nom","mate/m:number:sg","mate/m:gender:fem",">:mate/d:PAR$<i>753","xip/p:NOUN","xip/l:Börse","<>:xip/const:NOUN#4980-4985$<i>755","<>:xip/const:INS#4979-4986$<i>755<b>1","<>:xip/const:NP#4980-4985$<i>755<b>2","<>:xip/const:NPA#4980-4985$<i>755<b>3"],["s:Aufzeichung","i:aufzeichung","_755#4988-4999","opennlp/p:NN","cnx/l:Aufzeichung","cnx/p:N","cnx/m:Prop","cnx/syn:@NH","<>:cnx/const:np#4988-4999$<i>756","tt/p:NN","mate/l:aufzeichung","mate/p:NN","mate/m:case:acc","mate/m:number:sg","mate/m:gender:fem",">:mate/d:CJ$<i>753","<:mate/d:CJ$<i>758","xip/p:NOUN","xip/l:Aufzeichung","<>:xip/const:NOUN#4988-4999$<i>756","<>:xip/const:INS#4986-5009$<i>757<b>1","<>:xip/const:NP#4988-4999$<i>756<b>2","<>:xip/const:NPA#4988-4999$<i>756<b>3"],["s:Rechtsw.","i:rechtsw.","_756#5001-5009","opennlp/p:NN","cnx/l:Rechtsw.","cnx/p:N","cnx/m:Prop","cnx/syn:@NH","<>:cnx/const:np#5001-5009$<i>757"],["s:das","i:das","_757#5012-5015","<>:s#5012-5101$<i>772","opennlp/p:ART","cnx/l:das","cnx/p:DET","cnx/syn:@PREMOD","tt/l:die","tt/p:ART","tt/l:die","tt/p:PRELS","mate/l:der","mate/p:ART","mate/m:case:acc","mate/m:number:sg","mate/m:gender:neut",">:mate/d:NK$<i>758","xip/p:DET","xip/l:das","<>:xip/const:DET#5012-5015$<i>758","<>:xip/const:MC#5012-5084$<i>769","<>:xip/const:NP#5012-5026$<i>759<b>1",">:xip/d:DETERM$<i>758"],["s:Flächenmaß","i:flächenmaß","_758#5016-5026","opennlp/p:NN","cnx/l:fläche","cnx/l:mass","cnx/p:N","cnx/syn:@PREMOD","<>:cnx/const:np#5016-5031$<i>760","tt/l:Flächenmaß","tt/p:NN","mate/l:flächenmaß","mate/p:NN","mate/m:case:acc","mate/m:number:sg","mate/m:gender:neut","<:mate/d:NK$<i>757",">:mate/d:CJ$<i>755","<:mate/d:NK$<i>759","xip/p:NOUN","xip/l:Fläche","xip/l:Maß","xip/l:Flächemaß","<>:xip/const:NPA#5016-5026$<i>759<b>2","<>:xip/const:NOUN#5016-5026$<i>759","<:xip/d:DETERM$<i>757",">:xip/d:SUBJ$<i>763"],["s:Acre","i:acre","_759#5027-5031","opennlp/p:NE","cnx/l:Acre","cnx/p:N","cnx/m:Prop","cnx/syn:@NH","tt/l:Acre","tt/p:NN","mate/l:acre","mate/p:NN","mate/m:case:nom","mate/m:number:sg","mate/m:gender:fem",">:mate/d:NK$<i>758","<:mate/d:CD$<i>760","xip/p:NOUN","xip/l:Acre","<>:xip/const:NP#5027-5031$<i>760<b>1","<>:xip/const:NPA#5027-5031$<i>760<b>2","<>:xip/const:NOUN#5027-5031$<i>760",">:xip/d:PRED$<i>763","<:xip/d:COORD$<i>760"],["s:und","i:und","_760#5032-5035","opennlp/p:KON","cnx/l:und","cnx/p:CC","cnx/syn:@CC","tt/l:und","tt/p:KON","mate/l:und","mate/p:KON",">:mate/d:CD$<i>759","<:mate/d:CJ$<i>761","xip/p:CONJ","xip/l:und","<>:xip/const:CONJ#5032-5035$<i>761",">:xip/d:COORD$<i>759",">:xip/d:COORD$<i>761"],["s:Ausgabe","i:ausgabe","_761#5036-5043","opennlp/p:NN","cnx/l:ausgabe","cnx/p:N","cnx/syn:@NH","<>:cnx/const:np#5036-5043$<i>762","tt/l:Ausgabe","tt/p:NN","mate/l:ausgabe","mate/p:NN","mate/m:case:nom","mate/m:number:sg","mate/m:gender:fem",">:mate/d:CJ$<i>760","xip/p:NOUN","xip/l:Ausgabe","<>:xip/const:NP#5036-5043$<i>762<b>1","<>:xip/const:NPA#5036-5043$<i>762<b>2","<>:xip/const:NOUN#5036-5043$<i>762","<:xip/d:COORD$<i>760",">:xip/d:PRED$<i>763",">:xip/d:PRED$<i>763"],["s:A","i:a","_762#5044-5045","<>:p#5044-5101$<i>772","opennlp/p:NE","cnx/l:A","cnx/p:N","cnx/syn:@NH","<>:cnx/const:np#5044-5045$<i>763","tt/l:A","tt/p:NN","mate/p:XY","mate/m:case:nom","mate/m:number:sg","mate/m:gender:*","xip/p:SYMBOL","xip/l:A","<>:xip/const:SYMBOL#5044-5045$<i>763","<>:xip/const:NP#5044-5045$<i>763<b>1","<>:xip/const:NPA#5044-5045$<i>763<b>2","<>:xip/const:NOUN#5044-5045$<i>763<b>3",">:xip/d:PRED$<i>763"],["s:ist","i:ist","_763#5046-5049","opennlp/p:VAFIN","cnx/l:sein","cnx/p:V","cnx/m:IND","cnx/m:PRES","cnx/syn:@MAIN","tt/l:sein","tt/p:VAFIN","mate/l:sein","mate/p:VAFIN","mate/m:number:sg","mate/m:person:3","mate/m:tense:pres","mate/m:mood:ind","<:mate/d:SB$<i>765","<:mate/d:PD$<i>768","xip/p:VERB","xip/l:sein","<>:xip/const:VERB#5046-5049$<i>764","<:xip/d:SUBJ$<i>758","<:xip/d:PRED$<i>759","<:xip/d:PRED$<i>761","<:xip/d:PRED$<i>761","<:xip/d:PRED$<i>762","xip/d:VMAIN","<:xip/d:PRED$<i>765"],["s:der","i:der","_764#5050-5053","opennlp/p:ART","cnx/l:der","cnx/p:DET","cnx/syn:@PREMOD","tt/l:die","tt/p:ART","mate/l:der","mate/p:ART","mate/m:case:nom","mate/m:number:sg","mate/m:gender:masc",">:mate/d:NK$<i>765","xip/p:DET","xip/l:der","<>:xip/const:NP#5050-5058$<i>766<b>1","<>:xip/const:DET#5050-5053$<i>765",">:xip/d:DETERM$<i>765"],["s:Name","i:name","_765#5054-5058","opennlp/p:NN","cnx/l:name","cnx/p:N","cnx/syn:@NH","<>:cnx/const:np#5054-5058$<i>766","tt/l:Name","tt/p:NN","mate/l:name","mate/p:NN","mate/m:case:nom","mate/m:number:sg","mate/m:gender:masc","<:mate/d:NK$<i>764",">:mate/d:SB$<i>763","xip/p:NOUN","xip/l:Name","<>:xip/const:NOUN#5054-5058$<i>766","<>:xip/const:NPA#5054-5058$<i>766<b>2","<:xip/d:DETERM$<i>764",">:xip/d:PRED$<i>763","<:xip/d:NMOD$<i>768"],["s:einer","i:einer","_766#5059-5064","opennlp/p:ART","cnx/l:eine","cnx/p:DET","cnx/syn:@PREMOD","tt/l:eine","tt/p:ART","mate/l:ein","mate/p:ART","mate/m:case:gen","mate/m:number:sg","mate/m:gender:fem",">:mate/d:NK$<i>768","xip/p:DET","xip/l:ein","<>:xip/const:DET#5059-5064$<i>767","<>:xip/const:NP#5059-5084$<i>769<b>1",">:xip/d:DETERM$<i>768"],["s:britischen","i:britischen","_767#5065-5075","opennlp/p:ADJA","corenlp/ne_dewac_175m_600:I-MISC","corenlp/ne_hgc_175m_600:I-MISC","cnx/l:britisch","cnx/p:A","cnx/syn:@PREMOD","<>:cnx/const:np#5065-5084$<i>769","tt/l:britisch","tt/p:ADJA","mate/l:britisch","mate/p:ADJA","mate/m:case:gen","mate/m:number:sg","mate/m:gender:fem","mate/m:degree:pos",">:mate/d:NK$<i>768","xip/p:ADJ","xip/l:britisch","<>:xip/const:NPA#5065-5084$<i>769<b>2","<>:xip/const:AP#5065-5075$<i>768<b>3","<>:xip/const:ADJ#5065-5075$<i>768",">:xip/d:NMOD$<i>768"],["s:Rockband","i:rockband","_768#5076-5084","opennlp/p:NN","cnx/l:rock","cnx/l:band","cnx/p:N","cnx/syn:@NH","tt/l:Rockband","tt/p:NN","mate/l:rockband","mate/p:NN","mate/m:case:gen","mate/m:number:sg","mate/m:gender:fem","<:mate/d:NK$<i>766","<:mate/d:NK$<i>767",">:mate/d:PD$<i>763","<:mate/d:PAR$<i>770","xip/p:NOUN","xip/l:rocken","xip/l:Band","xip/l:Rockenband","<>:xip/const:NOUN#5076-5084$<i>769","<:xip/d:DETERM$<i>766","<:xip/d:NMOD$<i>767",">:xip/d:NMOD$<i>765"],["s:siehe","i:siehe","_769#5086-5091","opennlp/p:VVFIN","cnx/l:sehen","cnx/p:V","cnx/m:IMP","cnx/syn:@MAIN","tt/l:sehen","tt/p:VVIMP","mate/l:sehen","mate/p:VVIMP","mate/m:number:sg","mate/m:person:2","mate/m:mood:imp",">:mate/d:PNC$<i>770","xip/p:VERB","xip/l:sehen","<>:xip/const:VERB#5086-5091$<i>770","<>:xip/const:MC#5086-5100$<i>772","xip/d:VMAIN","<:xip/d:OBJ$<i>770"],["s:A","i:a","_770#5092-5093","opennlp/p:NE","cnx/l:a","cnx/p:PREP","cnx/syn:@PREMARK","tt/l:A","tt/p:NN","tt/l:A","tt/p:FM","mate/p:NN","mate/m:case:acc","mate/m:number:sg","mate/m:gender:fem","<:mate/d:PNC$<i>769",">:mate/d:PAR$<i>768","<:mate/d:PAR$<i>771","xip/p:SYMBOL","xip/l:A","<>:xip/const:SYMBOL#5092-5093$<i>771","<>:xip/const:NP#5092-5093$<i>771<b>1","<>:xip/const:NPA#5092-5093$<i>771<b>2","<>:xip/const:NOUN#5092-5093$<i>771<b>3",">:xip/d:OBJ$<i>769"],["s:Band","i:band","_771#5095-5099","opennlp/p:NN","cnx/l:band","cnx/p:N","cnx/syn:@NH","<>:cnx/const:np#5095-5099$<i>772","tt/l:Band","tt/p:NN","mate/l:band","mate/p:NN","mate/m:case:nom","mate/m:number:sg","mate/m:gender:neut",">:mate/d:PAR$<i>770","xip/p:NOUN","xip/l:Band","<>:xip/const:NOUN#5095-5099$<i>772","<>:xip/const:INS#5094-5100$<i>772<b>1","<>:xip/const:NP#5095-5099$<i>772<b>2","<>:xip/const:NPA#5095-5099$<i>772<b>3"],["s:in","i:in","_772#5102-5104","<>:s#5102-5245$<i>799","<>:p#5102-5161$<i>785","opennlp/p:APPR","cnx/l:in","cnx/p:PREP","cnx/syn:@PREMARK","tt/l:in","tt/p:APPR","mate/l:in","mate/p:APPR","<:mate/d:NK$<i>773","xip/p:PREP","xip/l:in","<>:xip/const:TOP#5102-5161$<i>785","<>:xip/const:PP#5102-5118$<i>774<b>1","<>:xip/const:PREP#5102-5104$<i>773"],["s:Redewendungen","i:redewendungen","_773#5105-5118","opennlp/p:NN","cnx/l:rede","cnx/l:wendung","cnx/p:N","cnx/m:PL","cnx/syn:@NH","<>:cnx/const:np#5105-5133$<i>777","tt/l:Redewendung","tt/p:NN","mate/l:redewendung","mate/p:NN","mate/m:case:dat","mate/m:number:pl","mate/m:gender:fem",">:mate/d:NK$<i>772","<:mate/d:MNR$<i>774","xip/p:NOUN","xip/l:Redewendung","<>:xip/const:NP#5105-5118$<i>774<b>2","<>:xip/const:NPA#5105-5118$<i>774<b>3","<>:xip/const:NOUN#5105-5118$<i>774"],["s:für","i:für","_774#5119-5122","opennlp/p:APPR","cnx/l:für","cnx/p:PREP","cnx/syn:@POSTMOD","tt/l:für","tt/p:APPR","mate/l:für","mate/p:APPR",">:mate/d:MNR$<i>773","<:mate/d:NK$<i>776","xip/p:PREP","xip/l:für","<>:xip/const:PREP#5119-5122$<i>775","<>:xip/const:PP#5119-5133$<i>777<b>1"],["s:den","i:den","_775#5123-5126","opennlp/p:ART","cnx/l:der","cnx/p:DET","cnx/syn:@PREMOD","tt/l:die","tt/p:ART","mate/l:der","mate/p:ART","mate/m:case:acc","mate/m:number:sg","mate/m:gender:masc",">:mate/d:NK$<i>776","xip/p:DET","xip/l:der","<>:xip/const:NP#5123-5133$<i>777<b>2","<>:xip/const:DET#5123-5126$<i>776",">:xip/d:DETERM$<i>776"],["s:Anfang","i:anfang","_776#5127-5133","opennlp/p:NN","cnx/l:anfang","cnx/p:N","cnx/syn:@NH","tt/l:Anfang","tt/p:NN","mate/l:anfang","mate/p:NN","mate/m:case:acc","mate/m:number:sg","mate/m:gender:masc","<:mate/d:NK$<i>775",">:mate/d:NK$<i>774","<:mate/d:APP$<i>778","xip/p:NOUN","xip/l:Anfang","<>:xip/const:NPA#5127-5133$<i>777<b>3","<>:xip/const:NOUN#5127-5133$<i>777","<:xip/d:DETERM$<i>775"],["s:das","i:das","_777#5135-5138","opennlp/p:ART","cnx/l:das","cnx/p:PRON","cnx/syn:@NH","tt/l:die","tt/p:ART","mate/l:der","mate/p:ART","mate/m:case:acc","mate/m:number:sg","mate/m:gender:neut",">:mate/d:NK$<i>778","xip/p:DET","xip/l:das","<>:xip/const:INS#5134-5160$<i>785<b>1","<>:xip/const:NP#5135-5140$<i>779<b>2","<>:xip/const:DET#5135-5138$<i>778",">:xip/d:DETERM$<i>778"],["s:A","i:a","_778#5139-5140","opennlp/p:NE","cnx/l:a","cnx/p:PREP","cnx/syn:@PREMARK","tt/l:A","tt/p:NN","mate/p:NN","mate/m:case:acc","mate/m:number:sg","mate/m:gender:neut","<:mate/d:NK$<i>777",">:mate/d:APP$<i>776","<:mate/d:CD$<i>779","<:mate/d:MNR$<i>783","xip/p:SYMBOL","xip/l:A","<>:xip/const:SYMBOL#5139-5140$<i>779","<>:xip/const:NPA#5139-5140$<i>779<b>3","<>:xip/const:NOUN#5139-5140$<i>779<b>4","<:xip/d:DETERM$<i>777","<:xip/d:COORD$<i>779"],["s:und","i:und","_779#5141-5144","opennlp/p:KON","cnx/l:und","cnx/p:CC","cnx/syn:@CC","tt/l:und","tt/p:KON","mate/l:und","mate/p:KON",">:mate/d:CD$<i>778","<:mate/d:CJ$<i>780","xip/p:CONJ","xip/l:und","<>:xip/const:CONJ#5141-5144$<i>780",">:xip/d:COORD$<i>778",">:xip/d:COORD$<i>780"],["s:O","i:o","_780#5145-5146","opennlp/p:NE","cnx/l:O","cnx/p:N","cnx/syn:@NH","<>:cnx/const:np#5145-5146$<i>781","tt/l:O","tt/p:NN","mate/l:O","mate/p:NN","mate/m:case:acc","mate/m:number:sg","mate/m:gender:neut",">:mate/d:CJ$<i>779","xip/p:SYMBOL","xip/l:O","<>:xip/const:SYMBOL#5145-5146$<i>781","<>:xip/const:NP#5145-5146$<i>781<b>2","<>:xip/const:NPA#5145-5146$<i>781<b>3","<>:xip/const:NOUN#5145-5146$<i>781<b>4","<:xip/d:COORD$<i>779"],["s:von","i:von","_781#5148-5151","opennlp/p:APPR","cnx/l:von","cnx/p:PREP","cnx/syn:@PREMARK","tt/l:von","tt/p:APPR","mate/l:von","mate/p:APPR",">:mate/d:MO$<i>783","<:mate/d:NK$<i>782","xip/p:PREP","xip/l:von","<>:xip/const:PREP#5148-5151$<i>782","<>:xip/const:PP#5148-5153$<i>783<b>2"],["s:A","i:a","_782#5152-5153","opennlp/p:NE","cnx/l:A","cnx/p:N","cnx/syn:@NH","<>:cnx/const:np#5152-5153$<i>783","tt/l:A","tt/p:NN","mate/p:NE","mate/m:case:dat","mate/m:number:sg","mate/m:gender:neut",">:mate/d:NK$<i>781","xip/p:SYMBOL","xip/l:A","<>:xip/const:SYMBOL#5152-5153$<i>783","<>:xip/const:NP#5152-5153$<i>783<b>3","<>:xip/const:NPA#5152-5153$<i>783<b>4","<>:xip/const:NOUN#5152-5153$<i>783<b>5","<:xip/d:COORD$<i>783"],["s:bis","i:bis","_783#5154-5157","opennlp/p:APPR","cnx/l:bis","cnx/p:CC","cnx/syn:@CC","tt/l:bis","tt/p:APPR","tt/l:bis","tt/p:KON","mate/l:bis","mate/p:APPR","<:mate/d:MO$<i>781",">:mate/d:MNR$<i>778","<:mate/d:NK$<i>784","xip/p:CONJ","xip/l:bis","<>:xip/const:CONJ#5154-5157$<i>784",">:xip/d:COORD$<i>782",">:xip/d:COORD$<i>784"],["s:Z","i:z","_784#5158-5159","opennlp/p:NE","cnx/l:Z","cnx/p:N","cnx/syn:@NH","<>:cnx/const:np#5158-5159$<i>785","tt/l:Z","tt/p:NN","mate/l:z","mate/p:NE","mate/m:case:dat","mate/m:number:sg","mate/m:gender:neut",">:mate/d:NK$<i>783","xip/p:SYMBOL","xip/l:Z","<>:xip/const:NP#5158-5159$<i>785<b>2","<>:xip/const:NPA#5158-5159$<i>785<b>3","<>:xip/const:NOUN#5158-5159$<i>785<b>4","<>:xip/const:SYMBOL#5158-5159$<i>785","<:xip/d:COORD$<i>783"],["s:a","i:a","_785#5162-5163","<>:p#5162-5203$<i>793","opennlp/p:NE","cnx/l:a","cnx/p:N","cnx/syn:@NH","<>:cnx/const:np#5162-5163$<i>786","tt/l:a","tt/p:FM","mate/p:XY","xip/p:SYMBOL","xip/l:a","<>:xip/const:NP#5162-5163$<i>786","<>:xip/const:NPA#5162-5163$<i>786<b>1","<>:xip/const:NOUN#5162-5163$<i>786<b>2","<>:xip/const:SYMBOL#5162-5163$<i>786","<>:xip/const:TOP#5162-5245$<i>799",">:xip/d:SUBJ$<i>786"],["s:ist","i:ist","_786#5164-5167","opennlp/p:VAFIN","cnx/l:sein","cnx/p:V","cnx/m:IND","cnx/m:PRES","cnx/syn:@AUX","tt/l:sein","tt/p:VAFIN","mate/l:sein","mate/p:VAFIN","mate/m:number:sg","mate/m:person:3","mate/m:tense:pres","mate/m:mood:ind","<:mate/d:PD$<i>788","xip/p:VERB","xip/l:sein","<>:xip/const:VERB#5164-5167$<i>787","<:xip/d:SUBJ$<i>785","xip/d:VMAIN","<:xip/d:PRED$<i>788","<:xip/d:PRED$<i>792","<:xip/d:PRED$<i>796"],["s:die","i:die","_787#5168-5171","opennlp/p:ART","cnx/l:die","cnx/p:DET","cnx/syn:@PREMOD","tt/l:die","tt/p:ART","mate/l:der","mate/p:ART","mate/m:case:nom","mate/m:number:sg","mate/m:gender:fem",">:mate/d:NK$<i>788","xip/p:DET","xip/l:die","<>:xip/const:NP#5168-5181$<i>789","<>:xip/const:DET#5168-5171$<i>788",">:xip/d:DETERM$<i>788"],["s:Abkürzung","i:abkürzung","_788#5172-5181","opennlp/p:NN","cnx/l:abkürzung","cnx/p:N","cnx/syn:@NH","<>:cnx/const:np#5172-5203$<i>793","tt/l:Abkürzung","tt/p:NN","mate/l:abkürzung","mate/p:NN","mate/m:case:nom","mate/m:number:sg","mate/m:gender:fem","<:mate/d:NK$<i>787",">:mate/d:PD$<i>786","<:mate/d:MNR$<i>789","xip/p:NOUN","xip/l:Abkürzung","<>:xip/const:NPA#5172-5181$<i>789<b>1","<>:xip/const:NOUN#5172-5181$<i>789","<:xip/d:DETERM$<i>787",">:xip/d:PRED$<i>786"],["s:für","i:für","_789#5182-5185","opennlp/p:APPR","cnx/l:für","cnx/p:PREP","cnx/syn:@POSTMOD","tt/l:für","tt/p:APPR","mate/l:für","mate/p:APPR",">:mate/d:MNR$<i>788","<:mate/d:NK$<i>791","xip/p:PREP","xip/l:für","<>:xip/const:PP#5182-5200$<i>792","<>:xip/const:PREP#5182-5185$<i>790"],["s:das","i:das","_790#5186-5189","opennlp/p:ART","cnx/l:das","cnx/p:DET","cnx/syn:@PREMOD","tt/l:die","tt/p:ART","mate/l:der","mate/p:ART","mate/m:case:acc","mate/m:number:sg","mate/m:gender:neut",">:mate/d:NK$<i>791","xip/p:DET","xip/l:das","<>:xip/const:NP#5186-5200$<i>792<b>1","<>:xip/const:DET#5186-5189$<i>791",">:xip/d:DETERM$<i>791"],["s:Flächenmaß","i:flächenmaß","_791#5190-5200","opennlp/p:NN","cnx/l:fläche","cnx/l:mass","cnx/p:N","cnx/syn:@PREMOD","tt/l:Flächenmaß","tt/p:NN","mate/l:flächenmaß","mate/p:NN","mate/m:case:acc","mate/m:number:sg","mate/m:gender:neut","<:mate/d:NK$<i>790",">:mate/d:NK$<i>789","<:mate/d:NK$<i>792","xip/p:NOUN","xip/l:Fläche","xip/l:Maß","xip/l:Flächemaß","<>:xip/const:NPA#5190-5200$<i>792<b>2","<>:xip/const:NOUN#5190-5200$<i>792","<:xip/d:DETERM$<i>790"],["s:Ar","i:ar","_792#5201-5203","opennlp/p:NE","cnx/l:ar","cnx/p:N","cnx/syn:@NH","tt/l:Ar","tt/p:NN","mate/l:ar","mate/p:NE","mate/m:case:nom","mate/m:number:sg","mate/m:gender:*",">:mate/d:NK$<i>791","xip/p:NOUN","xip/l:Ar","<>:xip/const:NOUN#5201-5203$<i>793","<>:xip/const:NP#5201-5203$<i>793","<>:xip/const:NPA#5201-5203$<i>793<b>1",">:xip/d:PRED$<i>786"],["s:in","i:in","_793#5204-5206","<>:p#5204-5272$<i>804","opennlp/p:APPR","cnx/l:in","cnx/p:PREP","cnx/syn:@PREMARK","tt/l:in","tt/p:APPR","mate/l:in","mate/p:APPR",">:mate/d:MO$<i>796","<:mate/d:NK$<i>795","xip/p:PREP","xip/l:in","<>:xip/const:PP#5204-5227$<i>796","<>:xip/const:PREP#5204-5206$<i>794"],["s:der","i:der","_794#5207-5210","opennlp/p:ART","cnx/l:die","cnx/p:DET","cnx/syn:@PREMOD","tt/l:die","tt/p:ART","mate/l:der","mate/p:ART","mate/m:case:dat","mate/m:number:sg","mate/m:gender:fem",">:mate/d:NK$<i>795","xip/p:DET","xip/l:der","<>:xip/const:NP#5207-5227$<i>796<b>1","<>:xip/const:DET#5207-5210$<i>795",">:xip/d:DETERM$<i>795"],["s:Kaufmannssprache","i:kaufmannssprache","_795#5211-5227","opennlp/p:NN","cnx/l:kaufmann","cnx/l:sprache","cnx/p:N","cnx/syn:@NH","<>:cnx/const:np#5211-5227$<i>796","tt/l:Kaufmannssprache","tt/p:NN","mate/l:kaufmannssprache","mate/p:NN","mate/m:case:dat","mate/m:number:sg","mate/m:gender:fem","<:mate/d:NK$<i>794",">:mate/d:NK$<i>793","xip/p:NOUN","xip/l:Kaufmann","xip/l:Sprache","xip/l:Kaufmannssprache","<>:xip/const:NOUN#5211-5227$<i>796","<>:xip/const:NPA#5211-5227$<i>796<b>2","<:xip/d:DETERM$<i>794"],["s:bedeutet","i:bedeutet","_796#5228-5236","opennlp/p:VVFIN","cnx/l:bedeuten","cnx/p:V","cnx/m:PCP","cnx/m:PERF","cnx/syn:@MAIN","tt/l:bedeuten","tt/p:VVFIN","mate/l:bedeuten","mate/p:VVFIN","mate/m:number:sg","mate/m:person:3","mate/m:tense:pres","mate/m:mood:ind","<:mate/d:MO$<i>793","<:mate/d:--$<i>797","<:mate/d:SVP$<i>803","xip/p:ADJ","xip/l:bedeuten","<>:xip/const:AP#5228-5236$<i>797","<>:xip/const:ADJ#5228-5236$<i>797",">:xip/d:PRED$<i>786"],["s:à","i:à","_797#5237-5238","opennlp/p:NE","cnx/l:à","cnx/p:PREP","cnx/syn:@PREMARK","tt/l:à","tt/p:FM","mate/p:$.",">:mate/d:--$<i>796"],["s:lat.","i:lat.","_798#5240-5244","opennlp/p:ADJD","tt/p:VVINF","tt/p:VVFIN","tt/p:ADJD","xip/p:ADJ","xip/l:lat.","<>:xip/const:ADJ#5240-5244$<i>799"],["s:ad","i:ad","_799#5246-5248","<>:s#5246-5345$<i>818","opennlp/p:FM","cnx/l:ad","cnx/p:PREP","cnx/syn:@PREMARK","tt/l:ad","tt/p:FM","mate/l:ad","mate/p:XY","xip/p:ADV","xip/l:ad","<>:xip/const:ADV#5246-5248$<i>800","<>:xip/const:TOP#5246-5345$<i>818"],["s:zu","i:zu","_800#5249-5251","opennlp/p:APPR","cnx/l:zu","cnx/p:ADV","cnx/syn:@ADVL","tt/l:zu","tt/p:APPR","tt/l:zu","tt/p:PTKVZ","tt/l:zu","tt/p:PTKZU","tt/l:zu","tt/p:PTKA","mate/l:zu","mate/p:PTKVZ","xip/p:PREP","xip/l:zu","<>:xip/const:PREP#5249-5251$<i>801"],["s:‚[das","i:‚[das","_801#5253-5258","opennlp/p:ART"],["s:Stück","i:stück","_802#5259-5264","opennlp/p:NN","cnx/l:stück","cnx/p:N","cnx/syn:@NH","<>:cnx/const:np#5259-5264$<i>803","tt/l:Stück","tt/p:NN","mate/l:stück","mate/p:NN","mate/m:case:acc","mate/m:number:sg","mate/m:gender:neut","xip/p:NOUN","xip/l:Stück","<>:xip/const:NOUN#5259-5264$<i>803","<>:xip/const:NPA#5259-5264$<i>803"],["s:zu","i:zu","_803#5266-5268","opennlp/p:PTKZU","cnx/l:zu","cnx/p:ADV","cnx/syn:@ADVL","tt/l:zu","tt/p:PTKVZ","mate/l:zu","mate/p:PTKVZ",">:mate/d:SVP$<i>796","xip/p:PREP","xip/l:zu","<>:xip/const:PREP#5266-5268$<i>804"],["s:für","i:für","_804#5273-5276","<>:p#5273-5345$<i>818","opennlp/p:ADV","cnx/l:für","cnx/p:PREP","cnx/syn:@PREMARK","tt/l:für","tt/p:APPR","mate/l:für","mate/p:APPR","<:mate/d:NK$<i>806","xip/p:PREP","xip/l:für","<>:xip/const:PREP#5273-5276$<i>805"],["s:das","i:das","_805#5277-5280","opennlp/p:ART","cnx/l:das","cnx/p:DET","cnx/syn:@PREMOD","tt/l:die","tt/p:ART","mate/l:der","mate/p:ART","mate/m:case:acc","mate/m:number:sg","mate/m:gender:neut",">:mate/d:NK$<i>806","xip/p:DET","xip/l:das","<>:xip/const:DET#5277-5280$<i>806",">:xip/d:DETERM$<i>806"],["s:Französische","i:französische","_806#5281-5293","opennlp/p:ADJA","cnx/l:Französisch","cnx/p:N","cnx/syn:@NH","<>:cnx/const:np#5281-5293$<i>807","tt/l:französisch","tt/p:ADJA","tt/l:Französische","tt/p:NN","mate/l:französisch","mate/p:NN","mate/m:case:acc","mate/m:number:sg","mate/m:gender:neut","<:mate/d:NK$<i>805",">:mate/d:NK$<i>804","<:mate/d:--$<i>807","xip/p:NOUN","xip/l:französisch","<>:xip/const:NOUN#5281-5293$<i>807","<:xip/d:DETERM$<i>805"],["s:à","i:à","_807#5294-5295","opennlp/p:NN","cnx/l:à","cnx/p:N","cnx/syn:@NH","tt/l:à","tt/p:FM","mate/p:$(",">:mate/d:--$<i>806"],["s:„nach“","i:„nach“","_808#5296-5302","opennlp/p:$(","cnx/l:nach","cnx/p:ADV","cnx/syn:@ADVL"],["s:z","i:z","_809#5304-5305","opennlp/p:ADV","cnx/l:z","cnx/p:N","cnx/syn:@NH","<>:cnx/const:np#5304-5305$<i>810","mate/l:z","mate/p:KON","<>:xip/const:ADV#5304-5309$<i>811"],["s:B.","i:b.","_810#5307-5309","opennlp/p:NN","tt/l:B.","tt/p:NN"],["s:in","i:in","_811#5310-5312","opennlp/p:APPR","cnx/l:in","cnx/p:PREP","cnx/syn:@PREMARK","tt/l:in","tt/p:APPR","mate/l:in","mate/p:APPR","<:mate/d:MO$<i>815","xip/p:PREP","xip/l:in","<>:xip/const:PREP#5310-5312$<i>812"],["s:„à","i:„à","_812#5313-5315","opennlp/p:NE","cnx/l:à","cnx/p:ADV","cnx/syn:@PREMOD"],["s:la","i:la","_813#5316-5318","opennlp/p:NE","cnx/l:la","cnx/p:ADV","cnx/syn:@PREMOD","tt/l:la","tt/p:FM","mate/l:La","mate/p:FM","xip/p:NOUN","xip/l:la","<>:xip/const:NOUN#5316-5318$<i>814"],["s:carte“","i:carte“","_814#5319-5325","opennlp/p:NE","cnx/l:carte","cnx/p:ADV","cnx/syn:@ADVL"],["s:in","i:in","_815#5326-5328","opennlp/p:APPR","cnx/l:in","cnx/p:PREP","cnx/syn:@PREMARK","tt/l:in","tt/p:APPR","mate/l:in","mate/p:APPR",">:mate/d:MO$<i>811","<:mate/d:NK$<i>817","xip/p:PREP","xip/l:in","<>:xip/const:PREP#5326-5328$<i>816"],["s:der","i:der","_816#5329-5332","opennlp/p:ART","cnx/l:die","cnx/p:DET","cnx/syn:@PREMOD","tt/l:die","tt/p:ART","mate/l:der","mate/p:ART","mate/m:case:dat","mate/m:number:sg","mate/m:gender:fem",">:mate/d:NK$<i>817","xip/p:DET","xip/l:der","<>:xip/const:DET#5329-5332$<i>817",">:xip/d:DETERM$<i>817"],["s:Gastronomie","i:gastronomie","_817#5333-5344","opennlp/p:NN","cnx/l:gastronomie","cnx/p:N","cnx/syn:@NH","<>:cnx/const:np#5333-5344$<i>818","tt/l:Gastronomie","tt/p:NN","mate/l:gastronomie","mate/p:NN","mate/m:case:dat","mate/m:number:sg","mate/m:gender:fem","<:mate/d:NK$<i>816",">:mate/d:NK$<i>815","xip/p:NOUN","xip/l:Gastronomie","<>:xip/const:NOUN#5333-5344$<i>818","<:xip/d:DETERM$<i>816"],["s:4.","i:4.","_818#5346-5348","<>:s#5346-5417$<i>829","opennlp/p:ADV","cnx/l:4.","cnx/p:NUM","cnx/syn:@PREMOD","tt/l:4.","tt/p:ADJA","xip/p:NUM","xip/l:4.","<>:xip/const:NUM#5346-5348$<i>819","<>:xip/const:TOP#5346-5417$<i>829","<>:xip/const:MC#5346-5416$<i>829<b>1","<>:xip/const:NP#5346-5360$<i>820<b>2","<>:xip/const:NPA#5346-5360$<i>820<b>3"],["s:Fremdwörter","i:fremdwörter","_819#5349-5360","opennlp/p:NN","cnx/l:fremd","cnx/l:wort","cnx/p:N","cnx/m:PL","cnx/syn:@NH","<>:cnx/const:np#5349-5360$<i>820","tt/l:Fremdwort","tt/p:NN","mate/l:fremdwörter","mate/p:NN","mate/m:case:nom","mate/m:number:pl","mate/m:gender:masc","xip/p:NOUN","xip/l:fremden","xip/l:Wort","xip/l:Fremdenwort","<>:xip/const:NOUN#5349-5360$<i>820",">:xip/d:OBJ$<i>821"],["s:A","i:a","_820#5361-5362","<>:p#5361-5784$<i>885","opennlp/p:NE","cnx/l:A","cnx/p:N","cnx/syn:@NH","<>:cnx/const:np#5361-5362$<i>821","tt/l:A","tt/p:NN","mate/p:XY","mate/m:case:nom","mate/m:number:sg","mate/m:gender:*","xip/p:SYMBOL","xip/l:A","<>:xip/const:SYMBOL#5361-5362$<i>821","<>:xip/const:NP#5361-5362$<i>821<b>2","<>:xip/const:NPA#5361-5362$<i>821<b>3","<>:xip/const:NOUN#5361-5362$<i>821<b>4",">:xip/d:SUBJ$<i>821"],["s:hat","i:hat","_821#5363-5366","opennlp/p:VAFIN","cnx/l:haben","cnx/p:V","cnx/m:IND","cnx/m:PRES","cnx/syn:@MAIN","tt/l:haben","tt/p:VAFIN","mate/l:haben","mate/p:VAFIN","mate/m:number:sg","mate/m:person:3","mate/m:tense:pres","mate/m:mood:ind","<:mate/d:MO$<i>822","<:mate/d:OA$<i>828","xip/p:VERB","xip/l:haben","<>:xip/const:VERB#5363-5366$<i>822","<:xip/d:OBJ$<i>819","<:xip/d:SUBJ$<i>820","xip/d:VMAIN","<:xip/d:OBJ$<i>828"],["s:in","i:in","_822#5367-5369","opennlp/p:APPR","cnx/l:in","cnx/p:PREP","cnx/syn:@PREMARK","tt/l:in","tt/p:APPR","mate/l:in","mate/p:APPR",">:mate/d:MO$<i>821","<:mate/d:NK$<i>824","xip/p:PREP","xip/l:in","<>:xip/const:PREP#5367-5369$<i>823","<>:xip/const:PP#5367-5392$<i>825<b>2"],["s:verschiedenen","i:verschiedenen","_823#5370-5383","opennlp/p:ADJA","cnx/l:verschieden","cnx/p:A","cnx/syn:@PREMOD","<>:cnx/const:np#5370-5392$<i>825","tt/l:verschieden","tt/p:ADJA","mate/l:verschieden","mate/p:ADJA","mate/m:case:dat","mate/m:number:pl","mate/m:gender:masc","mate/m:degree:pos",">:mate/d:NK$<i>824","xip/p:ADJ","xip/l:verscheiden","<>:xip/const:ADJ#5370-5383$<i>824","<>:xip/const:NP#5370-5392$<i>825<b>3","<>:xip/const:NPA#5370-5392$<i>825<b>4","<>:xip/const:AP#5370-5383$<i>824<b>5",">:xip/d:NMOD$<i>824"],["s:Sprachen","i:sprachen","_824#5384-5392","opennlp/p:NN","cnx/l:sprache","cnx/p:N","cnx/m:PL","cnx/syn:@NH","tt/l:Sprache","tt/p:NN","mate/l:sprache","mate/p:NN","mate/m:case:dat","mate/m:number:pl","mate/m:gender:masc","<:mate/d:NK$<i>823",">:mate/d:NK$<i>822","<:mate/d:MNR$<i>825","xip/p:NOUN","xip/l:Sprache","<>:xip/const:NOUN#5384-5392$<i>825","<:xip/d:NMOD$<i>823"],["s:als","i:als","_825#5393-5396","opennlp/p:APPR","cnx/l:als","cnx/p:PREP","cnx/syn:@PREMARK","tt/l:als","tt/p:KOKOM","tt/l:als","tt/p:KON","mate/l:als","mate/p:APPR",">:mate/d:MNR$<i>824","<:mate/d:NK$<i>826","xip/p:PREP","xip/l:als","<>:xip/const:PREP#5393-5396$<i>826","<>:xip/const:PP#5393-5401$<i>827<b>2"],["s:Wort","i:wort","_826#5397-5401","opennlp/p:NN","cnx/l:wort","cnx/p:N","cnx/syn:@NH","<>:cnx/const:np#5397-5401$<i>827","tt/l:Wort","tt/p:NN","mate/l:wort","mate/p:NN","mate/m:case:nom","mate/m:number:sg","mate/m:gender:neut",">:mate/d:NK$<i>825","xip/p:NOUN","xip/l:Wort","<>:xip/const:NOUN#5397-5401$<i>827","<>:xip/const:NP#5397-5401$<i>827<b>3","<>:xip/const:NPA#5397-5401$<i>827<b>4"],["s:eine","i:eine","_827#5402-5406","opennlp/p:ART","cnx/l:eine","cnx/p:DET","cnx/syn:@PREMOD","tt/l:eine","tt/p:ART","mate/l:ein","mate/p:ART","mate/m:case:acc","mate/m:number:sg","mate/m:gender:fem",">:mate/d:NK$<i>828","xip/p:DET","xip/l:ein","<>:xip/const:NP#5402-5416$<i>829<b>2","<>:xip/const:DET#5402-5406$<i>828",">:xip/d:DETERM$<i>828"],["s:Bedeutung","i:bedeutung","_828#5407-5416","opennlp/p:NN","cnx/l:bedeutung","cnx/p:N","cnx/syn:@NH","<>:cnx/const:np#5407-5416$<i>829","tt/l:Bedeutung","tt/p:NN","mate/l:bedeutung","mate/p:NN","mate/m:case:acc","mate/m:number:sg","mate/m:gender:fem","<:mate/d:NK$<i>827",">:mate/d:OA$<i>821","xip/p:NOUN","xip/l:Bedeutung","<>:xip/const:NOUN#5407-5416$<i>829","<>:xip/const:NPA#5407-5416$<i>829<b>3","<:xip/d:DETERM$<i>827",">:xip/d:OBJ$<i>821"],["s:Im","i:im","_829#5418-5420","<>:s#5418-5540$<i>847","opennlp/p:APPRART","tt/l:im","tt/p:APPRART","mate/l:in","mate/p:APPRART","mate/m:case:dat","mate/m:number:sg","mate/m:gender:neut",">:mate/d:MO$<i>831","<:mate/d:NK$<i>830","xip/p:PREP","xip/l:in","<>:xip/const:PREP#5418-5420$<i>830","<>:xip/const:TOP#5418-5540$<i>847","<>:xip/const:MC#5418-5450$<i>834<b>1","<>:xip/const:PP#5418-5433$<i>831<b>2"],["s:Griechischen","i:griechischen","_830#5421-5433","opennlp/p:NN","corenlp/ne_dewac_175m_600:I-MISC","corenlp/ne_hgc_175m_600:I-MISC","cnx/l:Griechisch","cnx/p:N","cnx/syn:@NH","<>:cnx/const:np#5421-5433$<i>831","tt/l:Griechische","tt/p:NN","mate/l:griechische","mate/p:NN","mate/m:case:dat","mate/m:number:sg","mate/m:gender:neut",">:mate/d:NK$<i>829","xip/p:NOUN","xip/l:griechisch","<>:xip/const:NP#5421-5433$<i>831<b>3","<>:xip/const:NPA#5421-5433$<i>831<b>4","<>:xip/const:NOUN#5421-5433$<i>831"],["s:hat","i:hat","_831#5434-5437","opennlp/p:VAFIN","cnx/l:haben","cnx/p:V","cnx/m:IND","cnx/m:PRES","cnx/syn:@MAIN","tt/l:haben","tt/p:VAFIN","mate/l:haben","mate/p:VAFIN","mate/m:number:sg","mate/m:person:3","mate/m:tense:pres","mate/m:mood:ind","<:mate/d:MO$<i>829","<:mate/d:SB$<i>833","<:mate/d:CJ$<i>843","xip/p:VERB","xip/l:haben","<>:xip/const:VERB#5434-5437$<i>832","xip/d:VMAIN","<:xip/d:SUBJ$<i>833"],["s:die","i:die","_832#5438-5441","opennlp/p:ART","cnx/l:die","cnx/p:DET","cnx/syn:@PREMOD","tt/l:die","tt/p:ART","mate/l:der","mate/p:ART","mate/m:case:nom","mate/m:number:sg","mate/m:gender:fem",">:mate/d:NK$<i>833","xip/p:DET","xip/l:die","<>:xip/const:NP#5438-5450$<i>834<b>2","<>:xip/const:DET#5438-5441$<i>833",">:xip/d:DETERM$<i>833"],["s:Vorsilbe","i:vorsilbe","_833#5442-5450","opennlp/p:NN","cnx/l:vor","cnx/l:silbe","cnx/p:N","cnx/syn:@NH","<>:cnx/const:np#5442-5450$<i>834","tt/l:Vorsilbe","tt/p:NN","mate/l:vorsilb","mate/p:NN","mate/m:case:nom","mate/m:number:sg","mate/m:gender:fem","<:mate/d:NK$<i>832",">:mate/d:SB$<i>831","xip/p:NOUN","xip/l:vor","xip/l:Silbe","xip/l:Vorsilbe","<>:xip/const:NPA#5442-5450$<i>834<b>3","<>:xip/const:NOUN#5442-5450$<i>834","<:xip/d:DETERM$<i>832",">:xip/d:SUBJ$<i>831"],["s:a-","i:a-","_834#5451-5453","opennlp/p:TRUNC","cnx/l:a","cnx/p:ADV","cnx/syn:@ADVL","tt/p:VVFIN","tt/p:ADJD","tt/l:A-","tt/p:TRUNC","tt/p:VVINF","tt/p:VVPP","xip/p:TRUNC","xip/l:a","<>:xip/const:TRUNC#5451-5453$<i>835","<:xip/d:COORD$<i>835"],["s:bzw.","i:bzw.","_835#5454-5458","opennlp/p:KON","cnx/l:bzw.","cnx/p:CC","cnx/syn:@CC","tt/l:bzw.","tt/p:KOKOM","tt/l:bzw.","tt/p:KOUS","tt/l:bzw.","tt/p:KOUI","xip/p:CONJ","xip/l:beziehungsweise","<>:xip/const:CONJ#5454-5458$<i>836",">:xip/d:COORD$<i>834",">:xip/d:COORD$<i>836"],["s:an-","i:an-","_836#5459-5462","opennlp/p:TRUNC","tt/l:an-","tt/p:TRUNC","xip/p:TRUNC","xip/l:an","<>:xip/const:TRUNC#5459-5462$<i>837","<:xip/d:COORD$<i>835"],["s:wenn","i:wenn","_837#5464-5468","opennlp/p:KOUS","cnx/l:wenn","cnx/p:CS","cnx/syn:@PREMARK","tt/l:wenn","tt/p:KOUS","mate/l:wenn","mate/p:KOUS",">:mate/d:CP$<i>843","xip/p:CONJ","xip/l:wenn","<>:xip/const:CONJ#5464-5468$<i>838","<>:xip/const:SC#5464-5511$<i>844",">:xip/d:CONNECT$<i>843"],["s:der","i:der","_838#5469-5472","opennlp/p:ART","cnx/l:der","cnx/p:DET","cnx/syn:@PREMOD","tt/l:die","tt/p:ART","mate/l:der","mate/p:ART","mate/m:case:nom","mate/m:number:sg","mate/m:gender:masc",">:mate/d:NK$<i>840","xip/p:DET","xip/l:der","<>:xip/const:DET#5469-5472$<i>839","<>:xip/const:NP#5469-5497$<i>841<b>1",">:xip/d:DETERM$<i>840"],["s:darauffolgende","i:darauffolgende","_839#5473-5487","opennlp/p:ADJA","cnx/l:darauffolgend","cnx/p:A","cnx/syn:@PREMOD","<>:cnx/const:np#5473-5497$<i>841","tt/l:darauffolgend","tt/p:ADJA","mate/l:darauffolgend","mate/p:ADJA","mate/m:case:nom","mate/m:number:sg","mate/m:gender:masc","mate/m:degree:pos",">:mate/d:NK$<i>840","xip/p:ADJ","xip/l:darauffolgen","<>:xip/const:NPA#5473-5497$<i>841<b>2","<>:xip/const:AP#5473-5487$<i>840<b>3","<>:xip/const:ADJ#5473-5487$<i>840",">:xip/d:NMOD$<i>840"],["s:Buchstabe","i:buchstabe","_840#5488-5497","opennlp/p:NN","cnx/l:buchstabe","cnx/p:N","cnx/syn:@NH","tt/l:Buchstabe","tt/p:NN","mate/l:buchstabe","mate/p:NN","mate/m:case:nom","mate/m:number:sg","mate/m:gender:masc","<:mate/d:NK$<i>838","<:mate/d:NK$<i>839",">:mate/d:SB$<i>843","xip/p:NOUN","xip/l:Buchstabe","<>:xip/const:NOUN#5488-5497$<i>841","<:xip/d:DETERM$<i>838","<:xip/d:NMOD$<i>839",">:xip/d:SUBJ$<i>843"],["s:ein","i:ein","_841#5498-5501","opennlp/p:ART","cnx/l:ein","cnx/p:DET","cnx/syn:@PREMOD","tt/l:eine","tt/p:ART","mate/l:ein","mate/p:ART","mate/m:case:nom","mate/m:number:sg","mate/m:gender:masc",">:mate/d:NK$<i>842","xip/p:DET","xip/l:ein","<>:xip/const:NP#5498-5507$<i>843<b>1","<>:xip/const:DET#5498-5501$<i>842",">:xip/d:DETERM$<i>842"],["s:Vokal","i:vokal","_842#5502-5507","opennlp/p:NN","cnx/l:vokal","cnx/p:N","cnx/syn:@NH","<>:cnx/const:np#5502-5507$<i>843","tt/l:Vokal","tt/p:NN","mate/l:vokal","mate/p:NN","mate/m:case:nom","mate/m:number:sg","mate/m:gender:masc","<:mate/d:NK$<i>841",">:mate/d:PD$<i>843","xip/p:NOUN","xip/l:Vokal","<>:xip/const:NPA#5502-5507$<i>843<b>2","<>:xip/const:NOUN#5502-5507$<i>843","<:xip/d:DETERM$<i>841",">:xip/d:SUBJ$<i>843"],["s:ist","i:ist","_843#5508-5511","opennlp/p:VAFIN","cnx/l:sein","cnx/p:V","cnx/m:IND","cnx/m:PRES","cnx/syn:@MAIN","tt/l:sein","tt/p:VAFIN","mate/l:sein","mate/p:VAFIN","mate/m:number:sg","mate/m:person:3","mate/m:tense:pres","mate/m:mood:ind","<:mate/d:CP$<i>837","<:mate/d:SB$<i>840","<:mate/d:PD$<i>842",">:mate/d:CJ$<i>831","<:mate/d:PD$<i>846","xip/p:VERB","xip/l:sein","<>:xip/const:VERB#5508-5511$<i>844","<:xip/d:CONNECT$<i>837","<:xip/d:SUBJ$<i>840","<:xip/d:SUBJ$<i>842","xip/d:VMAIN"],["s:eine","i:eine","_844#5513-5517","opennlp/p:ART","cnx/l:eine","cnx/p:DET","cnx/syn:@PREMOD","tt/l:eine","tt/p:ART","mate/l:ein","mate/p:ART","mate/m:case:acc","mate/m:number:sg","mate/m:gender:fem",">:mate/d:NK$<i>846","xip/p:DET","xip/l:ein","<>:xip/const:DET#5513-5517$<i>845",">:xip/d:DETERM$<i>846"],["s:verneinende","i:verneinende","_845#5518-5529","opennlp/p:ADJA","cnx/l:verneinend","cnx/p:A","cnx/syn:@PREMOD","<>:cnx/const:np#5518-5539$<i>847","tt/l:verneinend","tt/p:ADJA","mate/l:verneinend","mate/p:ADJA","mate/m:case:acc","mate/m:number:sg","mate/m:gender:fem","mate/m:degree:pos",">:mate/d:NK$<i>846","xip/p:ADJ","xip/l:verneinen","<>:xip/const:ADJ#5518-5529$<i>846",">:xip/d:NMOD$<i>846"],["s:Bedeutung","i:bedeutung","_846#5530-5539","opennlp/p:NN","cnx/l:bedeutung","cnx/p:N","cnx/syn:@NH","tt/l:Bedeutung","tt/p:NN","mate/l:bedeutung","mate/p:NN","mate/m:case:acc","mate/m:number:sg","mate/m:gender:fem","<:mate/d:NK$<i>844","<:mate/d:NK$<i>845",">:mate/d:PD$<i>843","xip/p:NOUN","xip/l:Bedeutung","<>:xip/const:NOUN#5530-5539$<i>847","<:xip/d:DETERM$<i>844","<:xip/d:NMOD$<i>845","xip/d:THEMA"],["s:Im","i:im","_847#5541-5543","<>:s#5541-5687$<i>870","opennlp/p:APPRART","tt/l:im","tt/p:APPRART","mate/l:in","mate/p:APPRART","mate/m:case:dat","mate/m:number:sg","mate/m:gender:neut",">:mate/d:MO$<i>854","<:mate/d:NK$<i>848","<:mate/d:CD$<i>849","xip/p:PREP","xip/l:in","<>:xip/const:TOP#5541-5687$<i>870","<>:xip/const:MC#5541-5686$<i>870<b>1","<>:xip/const:PP#5541-5554$<i>849<b>2","<>:xip/const:PREP#5541-5543$<i>848"],["s:Englischen","i:englischen","_848#5544-5554","opennlp/p:NN","corenlp/ne_dewac_175m_600:I-MISC","corenlp/ne_hgc_175m_600:I-MISC","cnx/l:Englisch","cnx/p:N","cnx/syn:@NH","<>:cnx/const:np#5544-5554$<i>849","tt/l:Englische","tt/p:NN","tt/l:englisch","tt/p:ADJA","mate/l:englische","mate/p:NN","mate/m:case:dat","mate/m:number:sg","mate/m:gender:neut",">:mate/d:NK$<i>847","xip/p:NOUN","xip/l:englisch","<>:xip/const:NP#5544-5554$<i>849<b>3","<>:xip/const:NPA#5544-5554$<i>849<b>4","<>:xip/const:NOUN#5544-5554$<i>849"],["s:und","i:und","_849#5555-5558","opennlp/p:KON","cnx/l:und","cnx/p:CC","cnx/syn:@CC","tt/l:und","tt/p:KON","mate/l:und","mate/p:KON",">:mate/d:CD$<i>847","<:mate/d:CJ$<i>851","xip/p:CONJ","xip/l:und","<>:xip/const:CONJ#5555-5558$<i>850"],["s:auch","i:auch","_850#5559-5563","opennlp/p:ADV","cnx/l:auch","cnx/p:ADV","cnx/syn:@ADVL","tt/l:auch","tt/p:ADV","mate/l:auch","mate/p:ADV",">:mate/d:MO$<i>851","xip/p:ADV","xip/l:auch","<>:xip/const:ADV#5559-5563$<i>851",">:xip/d:VMOD$<i>854"],["s:in","i:in","_851#5564-5566","opennlp/p:APPR","cnx/l:in","cnx/p:PREP","cnx/syn:@PREMARK","tt/l:in","tt/p:APPR","mate/l:in","mate/p:APPR","<:mate/d:MO$<i>850",">:mate/d:CJ$<i>849","<:mate/d:NK$<i>853","xip/p:PREP","xip/l:in","<>:xip/const:PP#5564-5586$<i>854<b>2","<>:xip/const:PREP#5564-5566$<i>852"],["s:deutschen","i:deutschen","_852#5567-5576","opennlp/p:ADJA","corenlp/ne_dewac_175m_600:I-MISC","corenlp/ne_hgc_175m_600:I-MISC","cnx/l:deutsch","cnx/p:A","cnx/syn:@PREMOD","<>:cnx/const:np#5567-5586$<i>854","tt/l:deutsch","tt/p:ADJA","mate/l:deutsch","mate/p:ADJA","mate/m:case:dat","mate/m:number:pl","mate/m:gender:masc","mate/m:degree:pos",">:mate/d:NK$<i>853","xip/p:ADJ","xip/l:deutsch","<>:xip/const:NP#5567-5586$<i>854<b>3","<>:xip/const:NPA#5567-5586$<i>854<b>4","<>:xip/const:AP#5567-5576$<i>853<b>5","<>:xip/const:ADJ#5567-5576$<i>853",">:xip/d:NMOD$<i>853"],["s:Dialekten","i:dialekten","_853#5577-5586","opennlp/p:NN","cnx/l:dialekt","cnx/p:N","cnx/m:PL","cnx/syn:@NH","tt/l:Dialekt","tt/p:NN","mate/l:dialekt","mate/p:NN","mate/m:case:dat","mate/m:number:pl","mate/m:gender:masc","<:mate/d:NK$<i>852",">:mate/d:NK$<i>851","xip/p:NOUN","xip/l:Dialekt","<>:xip/const:NOUN#5577-5586$<i>854","<:xip/d:NMOD$<i>852"],["s:heißt","i:heißt","_854#5587-5592","opennlp/p:VVFIN","cnx/l:heissen","cnx/p:V","cnx/m:IND","cnx/m:PRES","cnx/syn:@MAIN","tt/l:heißen","tt/p:VVFIN","mate/l:heißen","mate/p:VVFIN","mate/m:number:sg","mate/m:person:3","mate/m:tense:pres","mate/m:mood:ind","<:mate/d:MO$<i>847","<:mate/d:--$<i>855","<:mate/d:SVP$<i>857","<:mate/d:OC$<i>868","xip/p:VERB","xip/l:heißen","<>:xip/const:VERB#5587-5592$<i>855","<:xip/d:VMOD$<i>850","xip/d:VMAIN","<:xip/d:SUBJ$<i>855","<:xip/d:VPREF$<i>857"],["s:a","i:a","_855#5593-5594","opennlp/p:ADV","cnx/l:a","cnx/p:N","cnx/syn:@NH","<>:cnx/const:np#5593-5594$<i>856","tt/l:a","tt/p:FM","mate/p:$.",">:mate/d:--$<i>854","xip/p:SYMBOL","xip/l:a","<>:xip/const:NP#5593-5594$<i>856<b>2","<>:xip/const:NPA#5593-5594$<i>856<b>3","<>:xip/const:NOUN#5593-5594$<i>856<b>4","<>:xip/const:SYMBOL#5593-5594$<i>856",">:xip/d:SUBJ$<i>854"],["s:bzw.","i:bzw.","_856#5595-5599","opennlp/p:KON","cnx/l:bzw.","cnx/p:CC","cnx/syn:@CC","tt/l:bzw.","tt/p:KOUI","tt/l:bzw.","tt/p:KOKOM","tt/l:bzw.","tt/p:KOUS","xip/p:CONJ","xip/l:beziehungsweise","<>:xip/const:CONJ#5595-5599$<i>857"],["s:an","i:an","_857#5600-5602","opennlp/p:PTKVZ","cnx/l:an","cnx/p:ADV","cnx/syn:@ADVL","tt/l:an","tt/p:PTKVZ","mate/l:an","mate/p:PTKVZ",">:mate/d:SVP$<i>854","xip/p:PTCL","xip/l:an","<>:xip/const:PTCL#5600-5602$<i>858",">:xip/d:VPREF$<i>854"],["s:wenn","i:wenn","_858#5604-5608","opennlp/p:KOUS","cnx/l:wenn","cnx/p:CS","cnx/syn:@PREMARK","tt/l:wenn","tt/p:KOUS","mate/l:wenn","mate/p:KOUS",">:mate/d:CP$<i>868","xip/p:CONJ","xip/l:wenn","<>:xip/const:CONJ#5604-5608$<i>859","<>:xip/const:SC#5604-5675$<i>869",">:xip/d:CONNECT$<i>868"],["s:der","i:der","_859#5609-5612","opennlp/p:ART","cnx/l:der","cnx/p:DET","cnx/syn:@PREMOD","tt/l:die","tt/p:ART","mate/l:der","mate/p:ART","mate/m:case:nom","mate/m:number:sg","mate/m:gender:masc",">:mate/d:NK$<i>861","xip/p:DET","xip/l:der","<>:xip/const:NP#5609-5628$<i>862<b>1","<>:xip/const:DET#5609-5612$<i>860",">:xip/d:DETERM$<i>861"],["s:erste","i:erste","_860#5613-5618","opennlp/p:ADJA","cnx/l:erste","cnx/p:NUM","cnx/m:ORD","cnx/syn:@PREMOD","<>:cnx/const:np#5613-5628$<i>862","tt/l:erst","tt/p:ADJA","mate/l:erster","mate/p:ADJA","mate/m:case:nom","mate/m:number:sg","mate/m:gender:masc","mate/m:degree:pos",">:mate/d:NK$<i>861","xip/p:ADJ","xip/l:ein","<>:xip/const:NPA#5613-5628$<i>862<b>2","<>:xip/const:AP#5613-5618$<i>861<b>3","<>:xip/const:ADJ#5613-5618$<i>861",">:xip/d:NMOD$<i>861"],["s:Buchstabe","i:buchstabe","_861#5619-5628","opennlp/p:NN","cnx/l:buchstabe","cnx/p:N","cnx/syn:@NH","tt/l:Buchstabe","tt/p:NN","mate/l:buchstabe","mate/p:NN","mate/m:case:nom","mate/m:number:sg","mate/m:gender:masc","<:mate/d:NK$<i>859","<:mate/d:NK$<i>860",">:mate/d:SB$<i>868","<:mate/d:AG$<i>864","xip/p:NOUN","xip/l:Buchstabe","<>:xip/const:NOUN#5619-5628$<i>862","<:xip/d:DETERM$<i>859","<:xip/d:NMOD$<i>860",">:xip/d:SUBJ$<i>868","<:xip/d:NMOD$<i>864"],["s:des","i:des","_862#5629-5632","opennlp/p:ART","cnx/l:das","cnx/p:DET","cnx/syn:@PREMOD","tt/l:die","tt/p:ART","mate/l:der","mate/p:ART","mate/m:case:gen","mate/m:number:sg","mate/m:gender:masc",">:mate/d:NK$<i>864","xip/p:DET","xip/l:der","<>:xip/const:NP#5629-5649$<i>865<b>1","<>:xip/const:DET#5629-5632$<i>863",">:xip/d:DETERM$<i>864"],["s:folgenden","i:folgenden","_863#5633-5642","opennlp/p:ADJA","cnx/l:folgend","cnx/p:A","cnx/syn:@PREMOD","<>:cnx/const:np#5633-5659$<i>867","tt/l:folgend","tt/p:ADJA","mate/l:folgend","mate/p:ADJA","mate/m:case:gen","mate/m:number:sg","mate/m:gender:masc","mate/m:degree:pos",">:mate/d:MO$<i>864","xip/p:ADJ","xip/l:folgen","<>:xip/const:ADJ#5633-5642$<i>864","<>:xip/const:NPA#5633-5649$<i>865<b>2","<>:xip/const:AP#5633-5642$<i>864<b>3",">:xip/d:NMOD$<i>864"],["s:Wortes","i:wortes","_864#5643-5649","opennlp/p:NN","cnx/l:wort","cnx/p:N","cnx/syn:@NH","tt/l:Wort","tt/p:NN","mate/l:wort","mate/p:NN","mate/m:case:gen","mate/m:number:sg","mate/m:gender:masc","<:mate/d:NK$<i>862","<:mate/d:MO$<i>863",">:mate/d:AG$<i>861","xip/p:NOUN","xip/l:Wort","<>:xip/const:NOUN#5643-5649$<i>865","<:xip/d:DETERM$<i>862","<:xip/d:NMOD$<i>863",">:xip/d:NMOD$<i>861"],["s:als","i:als","_865#5650-5653","opennlp/p:APPR","cnx/l:als","cnx/p:PREP","cnx/syn:@POSTMOD","tt/l:als","tt/p:KOKOM","tt/l:als","tt/p:KON","mate/l:als","mate/p:APPR",">:mate/d:MO$<i>867","<:mate/d:NK$<i>866","xip/p:PREP","xip/l:als","<>:xip/const:PREP#5650-5653$<i>866","<>:xip/const:PP#5650-5659$<i>867<b>1"],["s:Vokal","i:vokal","_866#5654-5659","opennlp/p:NN","cnx/l:vokal","cnx/p:N","cnx/syn:@NH","tt/l:Vokal","tt/p:NN","mate/l:vokal","mate/p:NN","mate/m:case:nom","mate/m:number:sg","mate/m:gender:masc",">:mate/d:NK$<i>865","xip/p:NOUN","xip/l:Vokal","<>:xip/const:NOUN#5654-5659$<i>867","<>:xip/const:NP#5654-5659$<i>867<b>2","<>:xip/const:NPA#5654-5659$<i>867<b>3"],["s:gesprochen","i:gesprochen","_867#5660-5670","opennlp/p:VVPP","cnx/l:sprechen","cnx/p:V","cnx/m:PCP","cnx/m:PERF","cnx/syn:@MAIN","tt/l:sprechen","tt/p:VVPP","mate/l:sprechen","mate/p:VVPP","<:mate/d:MO$<i>865",">:mate/d:OC$<i>868","xip/p:VERB","xip/l:sprechen","<>:xip/const:VERB#5660-5670$<i>868"],["s:wird","i:wird","_868#5671-5675","opennlp/p:VAFIN","cnx/l:werden","cnx/p:V","cnx/m:IND","cnx/m:PRES","cnx/syn:@AUX","tt/l:werden","tt/p:VAFIN","mate/l:werden","mate/p:VAFIN","mate/m:number:sg","mate/m:person:3","mate/m:tense:pres","mate/m:mood:ind","<:mate/d:CP$<i>858","<:mate/d:SB$<i>861","<:mate/d:OC$<i>867",">:mate/d:OC$<i>854","<:mate/d:OC$<i>872","xip/p:VERB","xip/l:werden","<>:xip/const:VERB#5671-5675$<i>869","<:xip/d:CONNECT$<i>858","<:xip/d:SUBJ$<i>861","xip/d:VMAIN"],["s:„ein/eine“","i:„ein/eine“","_869#5676-5686","opennlp/p:$("],["s:Auf","i:auf","_870#5688-5691","<>:s#5688-5726$<i>876","opennlp/p:APPR","cnx/l:auf","cnx/p:PREP","cnx/syn:@PREMARK","tt/l:auf","tt/p:APPR","mate/l:auf","mate/p:APPR",">:mate/d:MO$<i>872","<:mate/d:NK$<i>871","xip/p:PREP","xip/l:auf","<>:xip/const:TOP#5688-5726$<i>876","<>:xip/const:PP#5688-5703$<i>872<b>1","<>:xip/const:PREP#5688-5691$<i>871"],["s:Französisch","i:französisch","_871#5692-5703","opennlp/p:NN","cnx/l:französisch","cnx/p:A","cnx/syn:@NH","tt/l:Französisch","tt/p:NN","mate/l:französisch","mate/p:NN","mate/m:case:dat","mate/m:number:sg","mate/m:gender:neut",">:mate/d:NK$<i>870","xip/p:NOUN","xip/l:Französisch","<>:xip/const:NP#5692-5703$<i>872<b>2","<>:xip/const:NPA#5692-5703$<i>872<b>3","<>:xip/const:NOUN#5692-5703$<i>872","xip/d:PERSON"],["s:bedeutet","i:bedeutet","_872#5704-5712","opennlp/p:VVFIN","cnx/l:bedeuten","cnx/p:V","cnx/m:IND","cnx/m:PRES","cnx/syn:@MAIN","tt/l:bedeuten","tt/p:VVFIN","mate/l:bedeuten","mate/p:VVFIN","mate/m:number:sg","mate/m:person:3","mate/m:tense:pres","mate/m:mood:ind","<:mate/d:MO$<i>870",">:mate/d:OC$<i>868","<:mate/d:--$<i>873","xip/p:ADJ","xip/l:bedeuten","<>:xip/const:AP#5704-5712$<i>873<b>1","<>:xip/const:ADJ#5704-5712$<i>873"],["s:à","i:à","_873#5713-5714","opennlp/p:PIAT","cnx/l:à","cnx/p:N","cnx/syn:@NH","tt/l:à","tt/p:FM","mate/p:$.",">:mate/d:--$<i>872"],["s:„je/je","i:„je/je","_874#5715-5721","opennlp/p:NN"],["s:zu“","i:zu“","_875#5722-5725","opennlp/p:PTKVZ"],["s:In","i:in","_876#5727-5729","<>:s#5727-5784$<i>885","opennlp/p:APPR","cnx/l:in","cnx/p:PREP","cnx/syn:@PREMARK","tt/l:in","tt/p:APPR","mate/l:in","mate/p:APPR",">:mate/d:MO$<i>880","<:mate/d:NK$<i>879","xip/p:PREP","xip/l:in","<>:xip/const:TOP#5727-5784$<i>885","<>:xip/const:MC#5727-5783$<i>885<b>1","<>:xip/const:PP#5727-5757$<i>880<b>2","<>:xip/const:PREP#5727-5729$<i>877"],["s:der","i:der","_877#5730-5733","opennlp/p:ART","cnx/l:die","cnx/p:DET","cnx/syn:@PREMOD","tt/l:die","tt/p:ART","mate/l:der","mate/p:ART","mate/m:case:dat","mate/m:number:sg","mate/m:gender:fem",">:mate/d:NK$<i>879","xip/p:DET","xip/l:der","<>:xip/const:NP#5730-5757$<i>880<b>3","<>:xip/const:DET#5730-5733$<i>878",">:xip/d:DETERM$<i>879"],["s:portugiesischen","i:portugiesischen","_878#5734-5749","opennlp/p:ADJA","corenlp/ne_dewac_175m_600:I-MISC","corenlp/ne_hgc_175m_600:I-MISC","cnx/l:portugiesisch","cnx/p:A","cnx/syn:@PREMOD","<>:cnx/const:np#5734-5757$<i>880","tt/l:portugiesisch","tt/p:ADJA","mate/l:portugiesisch","mate/p:ADJA","mate/m:case:dat","mate/m:number:sg","mate/m:gender:fem","mate/m:degree:pos",">:mate/d:NK$<i>879","xip/p:ADJ","xip/l:portugiesisch","<>:xip/const:NPA#5734-5757$<i>880<b>4","<>:xip/const:AP#5734-5749$<i>879<b>5","<>:xip/const:ADJ#5734-5749$<i>879",">:xip/d:NMOD$<i>879"],["s:Sprache","i:sprache","_879#5750-5757","opennlp/p:NN","cnx/l:sprache","cnx/p:N","cnx/syn:@NH","tt/l:Sprache","tt/p:NN","mate/l:sprache","mate/p:NN","mate/m:case:dat","mate/m:number:sg","mate/m:gender:fem","<:mate/d:NK$<i>877","<:mate/d:NK$<i>878",">:mate/d:NK$<i>876","xip/p:NOUN","xip/l:Sprache","<>:xip/const:NOUN#5750-5757$<i>880","<:xip/d:DETERM$<i>877","<:xip/d:NMOD$<i>878"],["s:heißt","i:heißt","_880#5758-5763","opennlp/p:VVFIN","cnx/l:heissen","cnx/p:V","cnx/m:IND","cnx/m:PRES","cnx/syn:@MAIN","tt/l:heißen","tt/p:VVFIN","mate/l:heißen","mate/p:VVFIN","mate/m:number:sg","mate/m:person:3","mate/m:tense:pres","mate/m:mood:ind","<:mate/d:MO$<i>876","<:mate/d:EP$<i>881","xip/p:VERB","xip/l:heißen","<>:xip/const:VERB#5758-5763$<i>881","xip/d:VMAIN","<:xip/d:SUBJ$<i>881"],["s:es","i:es","_881#5764-5766","opennlp/p:PPER","cnx/l:es","cnx/p:PRON","cnx/syn:@NH","tt/l:es","tt/p:PPER","mate/l:es","mate/p:PPER","mate/m:case:nom","mate/m:number:sg","mate/m:gender:neut","mate/m:person:3",">:mate/d:EP$<i>880","xip/p:PRON","xip/l:es","<>:xip/const:NP#5764-5766$<i>882<b>2","<>:xip/const:PRON#5764-5766$<i>882",">:xip/d:SUBJ$<i>880"],["s:„die“","i:„die“","_882#5767-5772","opennlp/p:NE","cnx/l:die","cnx/p:PRON","cnx/syn:@NH"],["s:oder","i:oder","_883#5773-5777","opennlp/p:KON","cnx/l:oder","cnx/p:CC","cnx/syn:@CC","tt/l:oder","tt/p:KON","mate/l:oder","mate/p:KON","xip/p:CONJ","xip/l:oder","<>:xip/const:CONJ#5773-5777$<i>884"],["s:„sie“","i:„sie“","_884#5778-5783","opennlp/p:NE","cnx/l:sie","cnx/p:PRON","cnx/syn:@NH"],["s:5.","i:5.","_885#5785-5787","<>:s#5785-5838$<i>892","opennlp/p:ADJA","cnx/l:5.","cnx/p:NUM","cnx/syn:@PREMOD","tt/l:5.","tt/p:ADJA","xip/p:NUM","xip/l:5.","<>:xip/const:NUM#5785-5787$<i>886","<>:xip/const:TOP#5785-5814$<i>889","<>:xip/const:NP#5785-5797$<i>887<b>1","<>:xip/const:NPA#5785-5797$<i>887<b>2"],["s:Literatur","i:literatur","_886#5788-5797","opennlp/p:NN","cnx/l:literatur","cnx/p:N","cnx/syn:@NH","<>:cnx/const:np#5788-5797$<i>887","tt/l:Literatur","tt/p:NN","mate/l:literatur","mate/p:NN","mate/m:case:nom","mate/m:number:sg","mate/m:gender:fem","xip/p:NOUN","xip/l:Literatur","<>:xip/const:NOUN#5788-5797$<i>887","xip/d:THEMA"],["s:Harald","i:harald","_887#5798-5804","<>:p#5798-5876$<i>897","opennlp/p:NE","corenlp/ne_dewac_175m_600:I-PER","corenlp/ne_hgc_175m_600:I-PER","cnx/l:Harald","cnx/p:N","cnx/m:Prop","cnx/syn:@PREMOD","<>:cnx/const:np#5798-5813$<i>889","tt/l:Harald","tt/p:NE","mate/l:harald","mate/p:NE","mate/m:case:nom","mate/m:number:sg","mate/m:gender:masc",">:mate/d:PNC$<i>888","xip/p:NOUN","xip/l:Harald","<>:xip/const:NOUN#5798-5804$<i>888","<>:xip/const:NP#5798-5813$<i>889<b>1","<>:xip/const:NPA#5798-5813$<i>889<b>2","<>:xip/const:NOUN#5798-5813$<i>889<b>3"],["s:Haarmann","i:haarmann","_888#5805-5813","opennlp/p:NE","corenlp/ne_dewac_175m_600:I-PER","corenlp/ne_hgc_175m_600:I-PER","cnx/l:Haarmann","cnx/p:N","cnx/m:Prop","cnx/syn:@NH","tt/l:Haarmann","tt/p:NE","mate/l:haarmann","mate/p:NE","mate/m:case:nom","mate/m:number:sg","mate/m:gender:masc","<:mate/d:PNC$<i>887","<:mate/d:APP$<i>889","xip/p:NOUN","xip/l:haaren","xip/l:Mann","xip/l:Haarenmann","<>:xip/const:NOUN#5805-5813$<i>889"],["s:Geschichte","i:geschichte","_889#5815-5825","opennlp/p:NN","cnx/l:geschichte","cnx/p:N","cnx/syn:@NH","<>:cnx/const:np#5815-5825$<i>890","tt/l:Geschichte","tt/p:NN","mate/l:geschichte","mate/p:NN","mate/m:case:nom","mate/m:number:sg","mate/m:gender:fem",">:mate/d:APP$<i>888","<:mate/d:AG$<i>891","xip/p:NOUN","xip/l:Geschichte","<>:xip/const:TOP#5815-5838$<i>892","<>:xip/const:NP#5815-5825$<i>890<b>1","<>:xip/const:NPA#5815-5825$<i>890<b>2","<>:xip/const:NOUN#5815-5825$<i>890","xip/d:THEMA","<:xip/d:NMOD$<i>891"],["s:der","i:der","_890#5826-5829","opennlp/p:ART","cnx/l:die","cnx/p:DET","cnx/syn:@PREMOD","tt/l:die","tt/p:ART","mate/l:der","mate/p:ART","mate/m:case:gen","mate/m:number:sg","mate/m:gender:fem",">:mate/d:NK$<i>891","xip/p:DET","xip/l:der","<>:xip/const:DET#5826-5829$<i>891","<>:xip/const:NP#5826-5837$<i>892<b>1",">:xip/d:DETERM$<i>891"],["s:Schrift","i:schrift","_891#5830-5837","opennlp/p:NN","cnx/l:schrift","cnx/p:N","cnx/syn:@NH","<>:cnx/const:np#5830-5837$<i>892","tt/l:Schrift","tt/p:NN","mate/l:schrift","mate/p:NN","mate/m:case:gen","mate/m:number:sg","mate/m:gender:fem","<:mate/d:NK$<i>890",">:mate/d:AG$<i>889","xip/p:NOUN","xip/l:Schrift","<>:xip/const:NOUN#5830-5837$<i>892","<>:xip/const:NPA#5830-5837$<i>892<b>2","<:xip/d:DETERM$<i>890",">:xip/d:NMOD$<i>889"],["s:Beck","i:beck","_892#5839-5843","<>:s#5839-5936$<i>903","opennlp/p:NE","corenlp/ne_dewac_175m_600:I-PER","corenlp/ne_hgc_175m_600:I-PER","cnx/l:Beck","cnx/p:N","cnx/m:Prop","cnx/syn:@NH","<>:cnx/const:np#5839-5843$<i>893","tt/l:Beck","tt/p:NE","mate/l:beck","mate/p:NE","mate/m:case:nom","mate/m:number:sg","mate/m:gender:masc","xip/p:NOUN","xip/l:Beck","<>:xip/const:NOUN#5839-5843$<i>893","<>:xip/const:TOP#5839-5948$<i>905","<>:xip/const:INS#5839-5844$<i>893<b>1","<>:xip/const:NP#5839-5843$<i>893<b>2","<>:xip/const:NPA#5839-5843$<i>893<b>3","xip/d:PERSON"],["s:München","i:münchen","_893#5845-5852","opennlp/p:ADJA","cnx/l:München","cnx/p:N","cnx/m:Prop","cnx/syn:@NH","<>:cnx/const:np#5845-5852$<i>894","tt/l:München","tt/p:NE","mate/l:München","mate/p:NE","mate/m:case:nom","mate/m:number:sg","mate/m:gender:neut",">:mate/d:PNC$<i>895","xip/p:NOUN","xip/l:München","<>:xip/const:MC#5845-5947$<i>905<b>1","<>:xip/const:NP#5845-5852$<i>894<b>2","<>:xip/const:NPA#5845-5852$<i>894<b>3","<>:xip/const:NOUN#5845-5852$<i>894","xip/d:LOC",">:xip/d:OBJ$<i>903"],["s:2002","i:2002","_894#5853-5857","opennlp/p:CARD","cnx/l:2002","cnx/p:NUM","cnx/syn:@PREMOD","tt/l:@card@","tt/p:CARD","mate/l:2002","mate/p:CARD",">:mate/d:NK$<i>895","xip/p:NUM","xip/l:2002","<>:xip/const:NP#5853-5862$<i>896<b>2","<>:xip/const:NPA#5853-5862$<i>896<b>3","<>:xip/const:NUM#5853-5857$<i>895<b>4","<>:xip/const:NUM#5853-5857$<i>895",">:xip/d:NMOD$<i>895"],["s:ISBN","i:isbn","_895#5858-5862","opennlp/p:NE","cnx/l:ISBN","cnx/p:N","cnx/syn:@PREMOD","<>:cnx/const:np#5858-5888$<i>899","tt/l:ISBN","tt/p:NE","mate/l:isbn","mate/p:NE","mate/m:case:nom","mate/m:number:sg","mate/m:gender:neut","<:mate/d:PNC$<i>893","<:mate/d:NK$<i>894","<:mate/d:PNC$<i>896","xip/p:NOUN","xip/l:ISBN","<>:xip/const:NOUN#5858-5862$<i>896","<:xip/d:NMOD$<i>894",">:xip/d:OBJ$<i>903","<:xip/d:NMOD$<i>896"],["s:3-406-47998-7","i:3-406-47998-7","_896#5863-5876","opennlp/p:CARD","cnx/l:3-406-47998-7","cnx/p:NUM","cnx/syn:@NH","tt/l:@card@","tt/p:CARD","mate/l:3-406-47998-7","mate/p:CARD",">:mate/d:PNC$<i>895","xip/p:NUM","xip/l:3-406-47998-7","<>:xip/const:NUM#5863-5876$<i>897","<>:xip/const:NP#5863-5876$<i>897<b>2","<>:xip/const:NPA#5863-5876$<i>897<b>3","<>:xip/const:NUM#5863-5876$<i>897<b>4",">:xip/d:NMOD$<i>895"],["s:6.","i:6.","_897#5877-5879","opennlp/p:ADJA","cnx/l:6.","cnx/p:NUM","cnx/syn:@PREMOD","tt/l:6.","tt/p:ADJA","xip/p:NUM","xip/l:6.","<>:xip/const:NP#5877-5936$<i>903<b>2","<>:xip/const:NPA#5877-5936$<i>903<b>3","<>:xip/const:NUM#5877-5879$<i>898"],["s:Weblinks","i:weblinks","_898#5880-5888","opennlp/p:NN","cnx/l:web","cnx/l:link","cnx/p:N","cnx/m:PL","cnx/syn:@NH","tt/l:weblinks","tt/p:ADJD","mate/l:weblinks","mate/p:FM","xip/p:NOUN","xip/l:Weblinks","<>:xip/const:NOUN#5880-5936$<i>903<b>4","<>:xip/const:NOUN#5880-5888$<i>899"],["s:http://www.wam","i:http://www.wam","_899#5889-5903","<>:p#5889-5936$<i>903","opennlp/p:NE","<>:cnx/const:np#5889-5942$<i>904","<>:xip/const:NOUN#5889-5936$<i>903"],["s:.umd","i:.umd","_900#5903-5907","opennlp/p:NE"],["s:.edu/~rfradkin/alphapage","i:.edu/~rfradkin/alphapage","_901#5907-5931","opennlp/p:NE"],["s:.html","i:.html","_902#5931-5936","opennlp/p:NE"],["s:Siehe","i:siehe","_903#5937-5942","<>:s#5937-6083$<i>923","<>:p#5937-6021$<i>915","opennlp/p:VVIMP","cnx/l:siehe","cnx/p:N","cnx/syn:@NH","tt/l:siehe","tt/p:ADV","mate/l:sehen","mate/p:VVIMP","mate/m:number:sg","mate/m:person:2","mate/m:mood:imp","<:mate/d:MO$<i>904","<:mate/d:OA$<i>905","xip/p:VERB","xip/l:sehen","<>:xip/const:VERB#5937-5942$<i>904","<:xip/d:OBJ$<i>893","<:xip/d:OBJ$<i>895","xip/d:VMAIN","<:xip/d:VMOD$<i>904"],["s:auch","i:auch","_904#5943-5947","opennlp/p:ADV","cnx/l:auch","cnx/p:ADV","cnx/syn:@ADVL","tt/l:auch","tt/p:ADV","mate/l:auch","mate/p:ADV",">:mate/d:MO$<i>903","xip/p:ADV","xip/l:auch","<>:xip/const:ADV#5943-5947$<i>905",">:xip/d:VMOD$<i>903"],["s:Abkürzungen/A","i:abkürzungen/a","_905#5949-5962","opennlp/p:NN","mate/l:abkürzungen/a","mate/p:NN","mate/m:case:nom","mate/m:number:sg","mate/m:gender:neut",">:mate/d:OA$<i>903","<:mate/d:CJ$<i>906","<>:xip/const:TOP#5949-6083$<i>923"],["s:Abkürzung","i:abkürzung","_906#5964-5973","opennlp/p:NN","cnx/l:abkürzung","cnx/p:N","cnx/syn:@NH","<>:cnx/const:np#5964-5973$<i>907","tt/l:Abkürzung","tt/p:NN","mate/l:abkürzung","mate/p:NN","mate/m:case:nom","mate/m:number:sg","mate/m:gender:fem",">:mate/d:CJ$<i>905","<:mate/d:CJ$<i>907","xip/p:NOUN","xip/l:Abkürzung","<>:xip/const:NOUN#5964-5973$<i>907","<>:xip/const:NP#5964-5973$<i>907","<>:xip/const:NPA#5964-5973$<i>907<b>1"],["s:Akronym","i:akronym","_907#5975-5982","opennlp/p:NN","cnx/l:akronym","cnx/p:N","cnx/syn:@NH","<>:cnx/const:np#5975-5982$<i>908","tt/l:Akronym","tt/p:NN","mate/l:akronym","mate/p:NN","mate/m:case:nom","mate/m:number:sg","mate/m:gender:neut",">:mate/d:CJ$<i>906","<:mate/d:CJ$<i>908","xip/p:NOUN","xip/l:Akronym","<>:xip/const:NOUN#5975-5982$<i>908","xip/d:THEMA"],["s:beginnend","i:beginnend","_908#5984-5993","opennlp/p:ADJD","cnx/l:beginnen","cnx/p:V","cnx/m:PCP","cnx/m:PROG","cnx/syn:@MAIN","tt/l:beginnend","tt/p:ADJD","mate/l:beginnend","mate/p:ADJD","mate/m:degree:pos",">:mate/d:CJ$<i>907","<:mate/d:MO$<i>909","xip/p:ADJ","xip/l:beginnen","<>:xip/const:AP#5984-5993$<i>909","<>:xip/const:ADJ#5984-5993$<i>909"],["s:mit","i:mit","_909#5994-5997","opennlp/p:APPR","cnx/l:mit","cnx/p:PREP","cnx/syn:@PREMARK","tt/l:mit","tt/p:APPR","mate/l:mit","mate/p:APPR",">:mate/d:MO$<i>908","<:mate/d:NK$<i>911","xip/p:PREP","xip/l:mit","<>:xip/const:PREP#5994-5997$<i>910","<>:xip/const:PP#5994-6012$<i>912"],["s:dem","i:dem","_910#5998-6001","opennlp/p:ART","cnx/l:der","cnx/p:DET","cnx/syn:@PREMOD","tt/l:die","tt/p:ART","mate/l:der","mate/p:ART","mate/m:case:dat","mate/m:number:sg","mate/m:gender:neut",">:mate/d:NK$<i>911","xip/p:DET","xip/l:der","<>:xip/const:NP#5998-6012$<i>912<b>1","<>:xip/const:DET#5998-6001$<i>911",">:xip/d:DETERM$<i>911"],["s:Buchstaben","i:buchstaben","_911#6002-6012","opennlp/p:NN","cnx/l:buchstabe","cnx/p:N","cnx/syn:@NH","<>:cnx/const:np#6002-6012$<i>912","tt/l:Buchstabe","tt/p:NN","mate/l:buchstabe","mate/p:NN","mate/m:case:dat","mate/m:number:sg","mate/m:gender:neut","<:mate/d:NK$<i>910",">:mate/d:NK$<i>909","<:mate/d:NK$<i>912","xip/p:NOUN","xip/l:Buchstabe","<>:xip/const:NOUN#6002-6012$<i>912","<>:xip/const:NPA#6002-6012$<i>912<b>2","<:xip/d:DETERM$<i>910"],["s:A","i:a","_912#6013-6014","opennlp/p:NE","cnx/l:a","cnx/p:PREP","cnx/syn:@PREMARK","tt/l:A","tt/p:NN","mate/p:NE","mate/m:case:nom","mate/m:number:sg","mate/m:gender:*",">:mate/d:NK$<i>911","<:mate/d:CD$<i>913","xip/p:SYMBOL","xip/l:A","<>:xip/const:SYMBOL#6013-6014$<i>913","<>:xip/const:NP#6013-6014$<i>913","<>:xip/const:NPA#6013-6014$<i>913<b>1","<>:xip/const:NOUN#6013-6014$<i>913<b>2","<:xip/d:COORD$<i>913"],["s:oder","i:oder","_913#6015-6019","opennlp/p:KON","cnx/l:oder","cnx/p:CC","cnx/syn:@CC","tt/l:oder","tt/p:KON","mate/l:oder","mate/p:KON",">:mate/d:CD$<i>912","<:mate/d:CJ$<i>914","xip/p:CONJ","xip/l:oder","<>:xip/const:CONJ#6015-6019$<i>914",">:xip/d:COORD$<i>912",">:xip/d:COORD$<i>914"],["s:a","i:a","_914#6020-6021","opennlp/p:NE","cnx/l:a","cnx/p:PREP","cnx/syn:@PREMARK","tt/l:a","tt/p:FM","mate/p:NE",">:mate/d:CJ$<i>913","xip/p:SYMBOL","xip/l:a","<>:xip/const:SYMBOL#6020-6021$<i>915","<>:xip/const:NP#6020-6021$<i>915","<>:xip/const:NPA#6020-6021$<i>915<b>1","<>:xip/const:NOUN#6020-6021$<i>915<b>2","<:xip/d:COORD$<i>913"],["s:ein","i:ein","_915#6025-6028","<>:p#6022-6070$<i>922","opennlp/p:ART","cnx/l:ein","cnx/p:NUM","cnx/syn:@NH","tt/l:eine","tt/p:ART","mate/l:ein","mate/p:ART","mate/m:case:nom","mate/m:number:sg","mate/m:gender:neut","<:mate/d:MNR$<i>916","xip/p:DET","xip/l:ein","<>:xip/const:DET#6025-6028$<i>916"],["s:aus","i:aus","_916#6029-6032","opennlp/p:APPR","cnx/l:aus","cnx/p:PREP","cnx/syn:@PREMARK","tt/l:aus","tt/p:APPR","mate/l:aus","mate/p:APPR",">:mate/d:MNR$<i>915","<:mate/d:NK$<i>918","xip/p:PREP","xip/l:aus","<>:xip/const:PREP#6029-6032$<i>917"],["s:dem","i:dem","_917#6033-6036","opennlp/p:ART","cnx/l:der","cnx/p:DET","cnx/syn:@PREMOD","tt/l:die","tt/p:ART","mate/l:der","mate/p:ART","mate/m:case:dat","mate/m:number:sg","mate/m:gender:neut",">:mate/d:NK$<i>918","xip/p:DET","xip/l:der","<>:xip/const:DET#6033-6036$<i>918",">:xip/d:DETERM$<i>918"],["s:Buchstaben","i:buchstaben","_918#6037-6047","opennlp/p:NN","cnx/l:buchstabe","cnx/p:N","cnx/syn:@NH","<>:cnx/const:np#6037-6047$<i>919","tt/l:Buchstabe","tt/p:NN","mate/l:buchstabe","mate/p:NN","mate/m:case:dat","mate/m:number:sg","mate/m:gender:neut","<:mate/d:NK$<i>917",">:mate/d:NK$<i>916","<:mate/d:MNR$<i>919","xip/p:NOUN","xip/l:Buchstabe","<>:xip/const:NOUN#6037-6047$<i>919","<:xip/d:DETERM$<i>917"],["s:a","i:a","_919#6048-6049","opennlp/p:NE","cnx/l:a","cnx/p:PREP","cnx/syn:@PREMARK","tt/l:a","tt/p:FM","mate/p:APPR",">:mate/d:MNR$<i>918","<:mate/d:NK$<i>921","xip/p:SYMBOL","xip/l:a","<>:xip/const:SYMBOL#6048-6049$<i>920"],["s:entstandenes","i:entstandenes","_920#6050-6062","opennlp/p:ADJA","cnx/l:entstanden","cnx/p:A","cnx/syn:@PREMOD","<>:cnx/const:np#6050-6083$<i>923","tt/l:entstanden","tt/p:ADJA","mate/l:entstanden","mate/p:ADJA","mate/m:case:acc","mate/m:number:sg","mate/m:gender:neut","mate/m:degree:pos",">:mate/d:NK$<i>921","xip/p:ADJ","xip/l:entstehen","<>:xip/const:ADJ#6050-6062$<i>921",">:xip/d:NMOD$<i>921"],["s:Zeichen","i:zeichen","_921#6063-6070","opennlp/p:NN","cnx/l:zeichen","cnx/p:N","cnx/syn:@PREMOD","tt/l:Zeichen","tt/p:NN","mate/l:zeichen","mate/p:NN","mate/m:case:acc","mate/m:number:sg","mate/m:gender:neut","<:mate/d:NK$<i>920",">:mate/d:NK$<i>919","xip/p:NOUN","xip/l:Zeichen","<>:xip/const:NOUN#6063-6070$<i>922","<:xip/d:NMOD$<i>920","xip/d:THEMA"],["s:Funkalphabet","i:funkalphabet","_922#6071-6083","<>:p#6071-6083$<i>923","opennlp/p:NE","cnx/l:funk","cnx/l:alphabet","cnx/p:N","cnx/syn:@NH","tt/l:Funkalphabet","tt/p:NN","mate/l:funkalphabet","mate/p:NN","mate/m:case:nom","mate/m:number:sg","mate/m:gender:neut","xip/p:NOUN","xip/l:funken","xip/l:Alphabet","xip/l:Funkenalphabet","<>:xip/const:NOUN#6071-6083$<i>923","xip/d:THEMA"]],"foundries":"xip xip#morpho xip#constituency xip#dependency connexor connexor#morpho connexor#syntax connexor#phrase corenlp corenlp#namedentities corenlp#namedentities#ne_dewac_175m_600 corenlp#namedentities corenlp#namedentities#ne_hgc_175m_600 opennlp opennlp#sentences opennlp#morpho mate mate#morpho mate#dependency base base#paragraphs treetagger treetagger#morpho","name":"tokens"}],"ID":"WPD_AAA.00001","title":"Wikipedia","subTitle":"Die freie Enzyklopädie","pubDate":"20050328"}
\ No newline at end of file
diff --git a/trunk/src/test/resources/wiki/00001.json.gz b/trunk/src/test/resources/wiki/00001.json.gz
new file mode 100644
index 0000000..9fbc2d8
--- /dev/null
+++ b/trunk/src/test/resources/wiki/00001.json.gz
Binary files differ
diff --git a/trunk/src/test/resources/wiki/00002.json b/trunk/src/test/resources/wiki/00002.json
new file mode 100644
index 0000000..b39560b
--- /dev/null
+++ b/trunk/src/test/resources/wiki/00002.json
@@ -0,0 +1 @@
+{"subTitle":"Die freie Enzyklopädie","fields":[{"primaryData":"Der Buchstabe Å - Kleinbuchstabe å - steht für den offenen, tiefen Vokal A mit einer Tendenz zum O (langes nordisches A), wie er im Dänischen, Norwegischen vorkommt. Früher wurde er im Dänischen Aa bzw. aa geschrieben, erst am 22. März 1948 wurde Å eingeführt. den Vokal o (wie langes/kurzes deutsches \"o\") im Schwedischen. die Abkürzung für Ångström (Einheit) das Suffix -aa im Schwedischen Å bedeutet auf schwedisch, norwegisch und dänisch \"Bach/Fluss\". Das altnordische Wort á - Wasser ist urverwandt mit lateinisch aqua, erhalten im Ortsnamen Århus, vergleiche deutsch Au. den altnordischen Buchstaben á, wie er heute im Färöischen und Isländischen verwendet wird. in der dänischen Sprache ein Ausdruck des Erstaunens, vergleiche deutsch ach! oder oh! Å bzw. vollständig Å i Lofoten ist der Name eines Ortes auf der Inselgruppe Lofoten in Norwegen, unter anderem Endpunkt der Europastraße E10. Außer Å i Lofoten gibt es in Norwegen noch andere Orte, die Å heißen. Auch in Schweden gibt es mehrere Orte, die Å heißen Das Å besteht aus dem Buchstaben A und einem kleinen übergeschriebenen O, welches die Vokalqualität andeutet. Im Schwedischen steht der Buchstabe nach dem z und vor dem ä im Alphabet, im Dänischen ist es der letzte Buchstabe des Alphabetes. In Dänemark ist der alte Digraph Aa durch Å ersetzt worden, in Eigennamen und Ortsnamen findet sich jedoch noch häufig die alte Scheibung. Ein Kuriosum ist die Stadt Århus, die sich mit Å schreibt, während im Namen der Universität der Stadt der Digraph beibehalten wurde: Aarhus Universitet."},{"data":[["s:Der","i:der","_0#0-3","-:t$<i>246","<>:s#0-165$<i>26","-:s$<i>12","<>:p#0-46$<i>7","-:p$<i>12","opennlp/p:ART","cnx/l:die","cnx/p:DET","cnx/syn:@PREMOD","tt/l:die","tt/p:ART","mate/l:der","mate/p:ART","mate/m:case:nom","mate/m:number:sg","mate/m:gender:masc",">:mate/d:NK$<i>1","xip/p:DET","xip/l:der","<>:xip/const:TOP#0-165$<i>26","<>:xip/const:MC#0-120$<i>20<b>1","<>:xip/const:NP#0-13$<i>2<b>2",">:xip/d:DETERM$<i>1"],["s:Buchstabe","i:buchstabe","_1#4-13","opennlp/p:NN","cnx/l:buchstabe","cnx/p:N","cnx/syn:@NH","<>:cnx/const:np#4-13$<i>2","tt/l:Buchstabe","tt/p:NN","mate/l:buchstabe","mate/p:NN","mate/m:case:nom","mate/m:number:sg","mate/m:gender:masc","<:mate/d:NK$<i>0",">:mate/d:SB$<i>5","<:mate/d:NK$<i>2","<:mate/d:PAR$<i>3","xip/p:NOUN","xip/l:Buchstabe","<>:xip/const:NPA#4-13$<i>2<b>3","<>:xip/const:NOUN#4-13$<i>2","<:xip/d:DETERM$<i>0",">:xip/d:SUBJ$<i>5"],["s:Å","i:å","_2#14-15","opennlp/p:VVFIN","cnx/l:Å","cnx/p:N","cnx/syn:@NH","<>:cnx/const:np#14-15$<i>3","tt/p:NE","tt/p:NN","tt/p:VVINF","tt/p:VVFIN","mate/l:å","mate/p:CARD",">:mate/d:NK$<i>1","xip/p:ADV","xip/l:å","<>:xip/const:ADV#14-15$<i>3",">:xip/d:VMOD$<i>5"],["s:Kleinbuchstabe","i:kleinbuchstabe","_3#18-32","opennlp/p:NN","cnx/l:klein","cnx/l:buchstabe","cnx/p:N","cnx/syn:@NH","<>:cnx/const:np#18-32$<i>4","tt/l:Kleinbuchstabe","tt/p:NN","mate/l:kleinbuchstabe","mate/p:NN","mate/m:case:nom","mate/m:number:sg","mate/m:gender:masc",">:mate/d:PAR$<i>1","<:mate/d:NK$<i>4","xip/p:NOUN","xip/l:klein","xip/l:Buchstabe","xip/l:Kleinbuchstabe","<>:xip/const:INS#16-36$<i>5<b>2","<>:xip/const:NP#18-32$<i>4<b>3","<>:xip/const:NPA#18-32$<i>4<b>4","<>:xip/const:NOUN#18-32$<i>4"],["s:å","i:å","_4#33-34","opennlp/p:VVFIN","cnx/l:å","cnx/p:N","cnx/syn:@NH","<>:cnx/const:np#33-34$<i>5","tt/p:NE","tt/p:NN","tt/p:VVINF","tt/p:VVFIN","mate/l:å","mate/p:XY","mate/m:case:nom","mate/m:number:sg","mate/m:gender:masc",">:mate/d:NK$<i>3","xip/p:ADV","xip/l:å","<>:xip/const:ADV#33-34$<i>5"],["s:steht","i:steht","_5#37-42","opennlp/p:VVFIN","cnx/l:stehen","cnx/p:V","cnx/m:IND","cnx/m:PRES","cnx/syn:@MAIN","tt/l:stehen","tt/p:VVFIN","mate/l:stehen","mate/p:VVFIN","mate/m:number:sg","mate/m:person:3","mate/m:tense:pres","mate/m:mood:ind","<:mate/d:SB$<i>1","<:mate/d:SVP$<i>6","xip/p:VERB","xip/l:stehen","<>:xip/const:VERB#37-42$<i>6","<:xip/d:SUBJ$<i>1","<:xip/d:VMOD$<i>2","xip/d:VMAIN","<:xip/d:OBJ$<i>11"],["s:für","i:für","_6#43-46","opennlp/p:APPR","cnx/l:für","cnx/p:PREP","cnx/syn:@PREMARK","tt/l:für","tt/p:APPR","mate/l:für","mate/p:APPR",">:mate/d:SVP$<i>5","xip/p:PREP","xip/l:für","<>:xip/const:PREP#43-46$<i>7","<>:xip/const:PP#43-72$<i>11<b>2"],["s:den","i:den","_7#47-50","<>:p#47-260$<i>43","opennlp/p:ART","cnx/l:der","cnx/p:DET","cnx/syn:@PREMOD","tt/l:die","tt/p:ART","mate/l:der","mate/p:ART","mate/m:case:acc","mate/m:number:sg","mate/m:gender:masc",">:mate/d:NK$<i>10","xip/p:DET","xip/l:der","<>:xip/const:DET#47-50$<i>8","<>:xip/const:NP#47-72$<i>11<b>3",">:xip/d:DETERM$<i>10"],["s:offenen","i:offenen","_8#51-58","opennlp/p:ADJA","cnx/l:offen","cnx/p:A","cnx/syn:@PREMOD","tt/l:offen","tt/p:ADJA","mate/l:offen","mate/p:ADJA","mate/m:case:acc","mate/m:number:sg","mate/m:gender:masc","mate/m:degree:pos",">:mate/d:NK$<i>10","<:mate/d:CJ$<i>9","xip/p:ADJ","xip/l:offen","<>:xip/const:ADJ#51-58$<i>9","<>:xip/const:NPA#51-72$<i>11<b>4","<>:xip/const:AP#51-58$<i>9<b>5",">:xip/d:NMOD$<i>10"],["s:tiefen","i:tiefen","_9#60-66","opennlp/p:ADJA","cnx/l:tief","cnx/p:A","cnx/syn:@PREMOD","<>:cnx/const:np#60-72$<i>11","tt/l:tief","tt/p:ADJA","mate/l:tief","mate/p:ADJA","mate/m:case:acc","mate/m:number:sg","mate/m:gender:masc","mate/m:degree:pos",">:mate/d:CJ$<i>8","xip/p:ADJ","xip/l:tief","<>:xip/const:ADJ#60-66$<i>10","<>:xip/const:AP#60-66$<i>10<b>5",">:xip/d:NMOD$<i>10"],["s:Vokal","i:vokal","_10#67-72","opennlp/p:NN","cnx/l:vokal","cnx/p:N","cnx/syn:@NH","tt/l:Vokal","tt/p:NN","mate/l:vokal","mate/p:NN","mate/m:case:acc","mate/m:number:sg","mate/m:gender:masc","<:mate/d:NK$<i>7","<:mate/d:NK$<i>8","<:mate/d:NK$<i>11","<:mate/d:MNR$<i>12","<:mate/d:MNR$<i>25","xip/p:NOUN","xip/l:Vokal","<>:xip/const:NOUN#67-72$<i>11","<:xip/d:DETERM$<i>7","<:xip/d:NMOD$<i>8","<:xip/d:NMOD$<i>9"],["s:A","i:a","_11#73-74","opennlp/p:NE","cnx/l:a","cnx/p:PREP","cnx/syn:@PREMARK","tt/l:A","tt/p:NN","mate/p:NE","mate/m:case:nom","mate/m:number:sg","mate/m:gender:*",">:mate/d:NK$<i>10","xip/p:SYMBOL","xip/l:A","<>:xip/const:NP#73-74$<i>12<b>2","<>:xip/const:NPA#73-74$<i>12<b>3","<>:xip/const:NOUN#73-74$<i>12<b>4","<>:xip/const:SYMBOL#73-74$<i>12",">:xip/d:OBJ$<i>5"],["s:mit","i:mit","_12#75-78","opennlp/p:APPR","cnx/l:mit","cnx/p:ADV","cnx/syn:@ADVL","tt/l:mit","tt/p:APPR","mate/l:mit","mate/p:APPR",">:mate/d:MNR$<i>10","<:mate/d:NK$<i>14","xip/p:PREP","xip/l:mit","<>:xip/const:PREP#75-78$<i>13","<>:xip/const:PP#75-92$<i>15<b>2"],["s:einer","i:einer","_13#79-84","opennlp/p:ART","cnx/l:eine","cnx/p:DET","cnx/syn:@PREMOD","tt/l:eine","tt/p:ART","mate/l:ein","mate/p:ART","mate/m:case:dat","mate/m:number:sg","mate/m:gender:fem",">:mate/d:NK$<i>14","xip/p:DET","xip/l:ein","<>:xip/const:NP#79-92$<i>15<b>3","<>:xip/const:DET#79-84$<i>14",">:xip/d:DETERM$<i>14"],["s:Tendenz","i:tendenz","_14#85-92","opennlp/p:NN","cnx/l:tendenz","cnx/p:N","cnx/syn:@NH","<>:cnx/const:np#85-98$<i>17","tt/l:Tendenz","tt/p:NN","mate/l:tendenz","mate/p:NN","mate/m:case:dat","mate/m:number:sg","mate/m:gender:fem","<:mate/d:NK$<i>13",">:mate/d:NK$<i>12","<:mate/d:MNR$<i>15","xip/p:NOUN","xip/l:Tendenz","<>:xip/const:NOUN#85-92$<i>15","<>:xip/const:NPA#85-92$<i>15<b>4","<:xip/d:DETERM$<i>13"],["s:zum","i:zum","_15#93-96","opennlp/p:APPRART","tt/l:zum","tt/p:APPRART","mate/l:zu","mate/p:APPRART","mate/m:case:dat","mate/m:number:sg","mate/m:gender:masc",">:mate/d:MNR$<i>14","<:mate/d:NK$<i>16","xip/p:PREP","xip/l:zu","<>:xip/const:PREP#93-96$<i>16","<>:xip/const:PP#93-98$<i>17<b>2"],["s:O","i:o","_16#97-98","opennlp/p:NE","cnx/l:O","cnx/p:N","cnx/syn:@NH","tt/l:O","tt/p:NN","mate/l:O","mate/p:NN","mate/m:case:dat","mate/m:number:sg","mate/m:gender:masc",">:mate/d:NK$<i>15","<:mate/d:APP$<i>19","xip/p:SYMBOL","xip/l:O","<>:xip/const:NP#97-98$<i>17<b>3","<>:xip/const:NPA#97-98$<i>17<b>4","<>:xip/const:NOUN#97-98$<i>17<b>5","<>:xip/const:SYMBOL#97-98$<i>17"],["s:langes","i:langes","_17#100-106","opennlp/p:ADJA","cnx/l:lang","cnx/p:A","cnx/syn:@PREMOD","tt/l:lang","tt/p:ADJA","mate/l:lang","mate/p:ADJA","mate/m:case:acc","mate/m:number:sg","mate/m:gender:neut","mate/m:degree:pos",">:mate/d:MO$<i>18","xip/p:ADJ","xip/l:lang","<>:xip/const:ADJ#100-106$<i>18","<>:xip/const:INS#99-120$<i>20<b>2","<>:xip/const:NP#100-119$<i>20<b>3","<>:xip/const:NPA#100-119$<i>20<b>4","<>:xip/const:AP#100-106$<i>18<b>5",">:xip/d:NMOD$<i>19"],["s:nordisches","i:nordisches","_18#107-117","opennlp/p:ADJA","cnx/l:nordisch","cnx/p:A","cnx/syn:@NH","tt/l:nordisch","tt/p:ADJA","mate/l:nordisch","mate/p:ADJA","mate/m:case:acc","mate/m:number:sg","mate/m:gender:neut","mate/m:degree:pos","<:mate/d:MO$<i>17",">:mate/d:NK$<i>19","xip/p:ADJ","xip/l:nordisch","<>:xip/const:AP#107-117$<i>19<b>5","<>:xip/const:ADJ#107-117$<i>19",">:xip/d:NMOD$<i>19"],["s:A","i:a","_19#118-119","opennlp/p:NN","cnx/l:a","cnx/p:PREP","cnx/syn:@PREMARK","tt/l:A","tt/p:NN","mate/p:NN","mate/m:case:acc","mate/m:number:sg","mate/m:gender:neut","<:mate/d:NK$<i>18",">:mate/d:APP$<i>16","xip/p:SYMBOL","xip/l:A","<>:xip/const:SYMBOL#118-119$<i>20","<>:xip/const:NOUN#118-119$<i>20<b>5","<:xip/d:NMOD$<i>17","<:xip/d:NMOD$<i>18"],["s:wie","i:wie","_20#122-125","opennlp/p:PWAV","cnx/l:wie","cnx/p:ADV","cnx/syn:@ADVL","tt/l:wie","tt/p:KOUS","tt/l:wie","tt/p:KOKOM","mate/l:wie","mate/p:PWAV",">:mate/d:MO$<i>25","xip/p:ADV","xip/l:wie","<>:xip/const:ADV#122-125$<i>21"],["s:er","i:er","_21#126-128","opennlp/p:PPER","cnx/l:er","cnx/p:PRON","cnx/syn:@NH","tt/l:er","tt/p:PPER","mate/l:er","mate/p:PPER","mate/m:case:nom","mate/m:number:sg","mate/m:gender:masc","mate/m:person:3",">:mate/d:SB$<i>25","xip/p:PRON","xip/l:er","<>:xip/const:PRON#126-128$<i>22","<>:xip/const:NP#126-128$<i>22<b>1","xip/d:THEMA"],["s:im","i:im","_22#129-131","opennlp/p:APPRART","tt/l:im","tt/p:APPRART","mate/l:in","mate/p:APPRART","mate/m:case:dat","mate/m:number:sg","mate/m:gender:neut",">:mate/d:MO$<i>25","<:mate/d:NK$<i>23","xip/p:PREP","xip/l:in","<>:xip/const:PREP#129-131$<i>23","<>:xip/const:PP#129-141$<i>24<b>1"],["s:Dänischen","i:dänischen","_23#132-141","opennlp/p:NN","cnx/l:Dänisch","cnx/p:N","cnx/syn:@NH","<>:cnx/const:np#132-141$<i>24","tt/l:Dänische","tt/p:NN","mate/l:dänischen","mate/p:NN","mate/m:case:dat","mate/m:number:sg","mate/m:gender:neut",">:mate/d:NK$<i>22","xip/p:NOUN","xip/l:dänisch","<>:xip/const:NP#132-141$<i>24<b>2","<>:xip/const:NPA#132-141$<i>24<b>3","<>:xip/const:NOUN#132-141$<i>24"],["s:Norwegischen","i:norwegischen","_24#143-155","opennlp/p:NE","corenlp/ne_dewac_175m_600:I-MISC","corenlp/ne_hgc_175m_600:I-MISC","cnx/l:Norwegisch","cnx/p:N","cnx/syn:@NH","<>:cnx/const:np#143-155$<i>25","tt/l:Norwegische","tt/p:NN","mate/l:norwegischen","mate/p:NN","mate/m:case:dat","mate/m:number:sg","mate/m:gender:neut",">:mate/d:MO$<i>25","xip/p:NOUN","xip/l:norwegisch","<>:xip/const:NOUN#143-155$<i>25","<>:xip/const:MC#143-164$<i>26<b>1","<>:xip/const:NP#143-155$<i>25<b>2","<>:xip/const:NPA#143-155$<i>25<b>3",">:xip/d:SUBJ$<i>25"],["s:vorkommt","i:vorkommt","_25#156-164","opennlp/p:VVFIN","cnx/l:vor","cnx/l:kommen","cnx/p:V","cnx/m:IND","cnx/m:PRES","cnx/syn:@MAIN","tt/l:vorkommen","tt/p:VVFIN","mate/l:vorkommen","mate/p:VVFIN","mate/m:number:sg","mate/m:person:3","mate/m:tense:pres","mate/m:mood:ind","<:mate/d:MO$<i>20","<:mate/d:SB$<i>21","<:mate/d:MO$<i>22","<:mate/d:MO$<i>24",">:mate/d:MNR$<i>10","xip/p:VERB","xip/l:vorkommen","<>:xip/const:VERB#156-164$<i>26","<:xip/d:SUBJ$<i>24","xip/d:VMAIN"],["s:Früher","i:früher","_26#166-172","<>:s#166-260$<i>43","opennlp/p:NN","cnx/l:früh","cnx/p:A","cnx/syn:@NH","tt/l:früher","tt/p:ADV","tt/l:früh","tt/p:ADJD","mate/l:früh","mate/p:ADJD","mate/m:degree:comp",">:mate/d:MO$<i>34","xip/p:ADV","xip/l:früher","<>:xip/const:ADV#166-172$<i>27","<>:xip/const:TOP#166-260$<i>43","<>:xip/const:MC#166-217$<i>35<b>1",">:xip/d:VMOD$<i>34"],["s:wurde","i:wurde","_27#173-178","opennlp/p:VAFIN","cnx/l:werden","cnx/p:V","cnx/m:IND","cnx/m:PAST","cnx/syn:@AUX","tt/l:werden","tt/p:VAFIN","mate/l:werden","mate/p:VAFIN","mate/m:number:sg","mate/m:person:3","mate/m:tense:past","mate/m:mood:ind","<:mate/d:SB$<i>28","<:mate/d:OC$<i>34","<:mate/d:CJ$<i>40","xip/p:VERB","xip/l:werden","<>:xip/const:VERB#173-178$<i>28","<:xip/d:AUXIL$<i>34"],["s:er","i:er","_28#179-181","opennlp/p:PPER","cnx/l:er","cnx/p:PRON","cnx/syn:@NH","tt/l:er","tt/p:PPER","mate/l:er","mate/p:PPER","mate/m:case:nom","mate/m:number:sg","mate/m:gender:masc","mate/m:person:3",">:mate/d:SB$<i>27","xip/p:PRON","xip/l:er","<>:xip/const:PRON#179-181$<i>29","<>:xip/const:NP#179-181$<i>29<b>2",">:xip/d:SUBJ$<i>34"],["s:im","i:im","_29#182-184","opennlp/p:APPRART","tt/l:im","tt/p:APPRART","mate/l:in","mate/p:APPRART","mate/m:case:dat","mate/m:number:sg","mate/m:gender:masc",">:mate/d:MO$<i>34","xip/p:PREP","xip/l:in","<>:xip/const:PREP#182-184$<i>30","<>:xip/const:PP#182-197$<i>32<b>2"],["s:Dänischen","i:dänischen","_30#185-194","opennlp/p:ADJA","cnx/l:dänisch","cnx/p:A","cnx/syn:@PREMOD","<>:cnx/const:np#185-197$<i>32","tt/l:Dänische","tt/p:NN","mate/l:dänisch","mate/p:NN","mate/m:case:dat","mate/m:number:sg","mate/m:gender:masc","xip/p:ADJ","xip/l:dänisch","<>:xip/const:ADJ#185-194$<i>31","<>:xip/const:NP#185-197$<i>32<b>3","<>:xip/const:NPA#185-197$<i>32<b>4","<>:xip/const:AP#185-194$<i>31<b>5",">:xip/d:NMOD$<i>31"],["s:Aa","i:aa","_31#195-197","opennlp/p:NE","cnx/l:aa","cnx/p:N","cnx/syn:@NH","tt/p:NE","tt/p:NN","mate/l:aa","mate/p:NE","mate/m:case:nom","mate/m:number:sg","mate/m:gender:neut","xip/p:NOUN","xip/l:Aa","<>:xip/const:NOUN#195-197$<i>32","<:xip/d:NMOD$<i>30"],["s:bzw.","i:bzw.","_32#198-202","opennlp/p:KON","cnx/l:bzw.","cnx/p:CC","cnx/syn:@CC","tt/l:bzw.","tt/p:KOKOM","tt/l:bzw.","tt/p:KOUI","xip/p:CONJ","xip/l:beziehungsweise","<>:xip/const:CONJ#198-202$<i>33"],["s:aa","i:aa","_33#203-205","opennlp/p:NE","cnx/l:aa","cnx/p:N","cnx/syn:@NH","<>:cnx/const:np#203-205$<i>34","tt/l:aa","tt/p:NE","tt/l:aa","tt/p:XY","tt/l:aa","tt/p:FM","mate/l:aa","mate/p:ADV",">:mate/d:MO$<i>34","xip/p:ADV","xip/l:aa","<>:xip/const:ADV#203-205$<i>34",">:xip/d:VMOD$<i>34"],["s:geschrieben","i:geschrieben","_34#206-217","opennlp/p:VVPP","cnx/l:schreiben","cnx/p:V","cnx/m:PCP","cnx/m:PERF","cnx/syn:@MAIN","tt/l:schreiben","tt/p:VVPP","mate/l:schreiben","mate/p:VVPP","<:mate/d:MO$<i>26","<:mate/d:MO$<i>29","<:mate/d:MO$<i>33",">:mate/d:OC$<i>27","xip/p:VERB","xip/l:schreiben","<>:xip/const:VERB#206-217$<i>35","<:xip/d:VMOD$<i>26","<:xip/d:SUBJ$<i>28","<:xip/d:VMOD$<i>33",">:xip/d:AUXIL$<i>27","xip/d:VMAIN"],["s:erst","i:erst","_35#219-223","opennlp/p:ADV","cnx/l:erst","cnx/p:ADV","cnx/syn:@ADVL","tt/l:erst","tt/p:ADV","mate/l:erst","mate/p:ADV",">:mate/d:MO$<i>36","xip/p:ADV","xip/l:erst","<>:xip/const:ADV#219-223$<i>36","<>:xip/const:MC#219-259$<i>43<b>1",">:xip/d:VMOD$<i>42"],["s:am","i:am","_36#224-226","opennlp/p:APPRART","tt/l:am","tt/p:APPRART","mate/l:an","mate/p:APPRART","mate/m:case:dat","mate/m:number:sg","mate/m:gender:masc","<:mate/d:MO$<i>35",">:mate/d:MO$<i>42","<:mate/d:NK$<i>38","xip/p:PREP","xip/l:an","<>:xip/const:PREP#224-226$<i>37","<>:xip/const:PP#224-240$<i>40<b>2"],["s:22.","i:22.","_37#227-230","opennlp/p:ADJA","cnx/l:22.","cnx/p:NUM","cnx/m:ORD","cnx/syn:@PREMOD","<>:cnx/const:np#227-235$<i>39","tt/l:22.","tt/p:ADJA","xip/p:NUM","xip/l:22.","<>:xip/const:NUM#227-230$<i>38","<>:xip/const:NP#227-240$<i>40<b>3","<>:xip/const:NPA#227-240$<i>40<b>4","<>:xip/const:NOUN#227-240$<i>40<b>5"],["s:März","i:märz","_38#231-235","opennlp/p:NN","cnx/l:märz","cnx/p:N","cnx/syn:@NH","tt/l:März","tt/p:NN","mate/l:märz","mate/p:NN","mate/m:case:nom","mate/m:number:sg","mate/m:gender:masc",">:mate/d:NK$<i>36","<:mate/d:NK$<i>39","xip/p:NOUN","xip/l:März","<>:xip/const:NOUN#231-235$<i>39"],["s:1948","i:1948","_39#236-240","opennlp/p:CARD","cnx/l:1948","cnx/p:NUM","cnx/syn:@NH","tt/l:1948","tt/p:CARD","mate/l:1948","mate/p:CARD",">:mate/d:NK$<i>38","xip/p:NUM","xip/l:1948","<>:xip/const:NUM#236-240$<i>40"],["s:wurde","i:wurde","_40#241-246","opennlp/p:VAFIN","cnx/l:werden","cnx/p:V","cnx/m:IND","cnx/m:PAST","cnx/syn:@AUX","tt/l:werden","tt/p:VAFIN","mate/l:werden","mate/p:VAFIN","mate/m:number:sg","mate/m:person:3","mate/m:tense:past","mate/m:mood:ind",">:mate/d:CJ$<i>27","<:mate/d:SB$<i>41","<:mate/d:OC$<i>42","xip/p:VERB","xip/l:werden","<>:xip/const:VERB#241-246$<i>41","<:xip/d:AUXIL$<i>42"],["s:Å","i:å","_41#247-248","opennlp/p:NE","cnx/l:Å","cnx/p:N","cnx/syn:@NH","<>:cnx/const:np#247-248$<i>42","tt/p:NN","tt/p:ADJD","tt/p:NE","mate/l:å","mate/p:CARD",">:mate/d:SB$<i>40","xip/p:ADV","xip/l:å","<>:xip/const:ADV#247-248$<i>42",">:xip/d:VMOD$<i>42"],["s:eingeführt","i:eingeführt","_42#249-259","opennlp/p:VVPP","cnx/l:ein","cnx/l:führen","cnx/p:V","cnx/m:PCP","cnx/m:PERF","cnx/syn:@MAIN","tt/l:einführen","tt/p:VVPP","mate/l:einführen","mate/p:VVPP","<:mate/d:MO$<i>36",">:mate/d:OC$<i>40","xip/p:VERB","xip/l:einführen","<>:xip/const:VERB#249-259$<i>43","<:xip/d:VMOD$<i>35","<:xip/d:VMOD$<i>41",">:xip/d:AUXIL$<i>40","xip/d:VMAIN"],["s:den","i:den","_43#261-264","<>:s#261-323$<i>52","<>:p#261-323$<i>52","opennlp/p:ART","cnx/l:der","cnx/p:DET","cnx/syn:@PREMOD","tt/l:die","tt/p:ART","mate/l:der","mate/p:ART","mate/m:case:acc","mate/m:number:sg","mate/m:gender:masc",">:mate/d:NK$<i>45","xip/p:DET","xip/l:der","<>:xip/const:TOP#261-323$<i>52","<>:xip/const:NP#261-270$<i>45<b>1","<>:xip/const:DET#261-264$<i>44",">:xip/d:DETERM$<i>44"],["s:Vokal","i:vokal","_44#265-270","opennlp/p:NN","cnx/l:vokal","cnx/p:N","cnx/syn:@NH","<>:cnx/const:np#265-270$<i>45","tt/l:Vokal","tt/p:NN","mate/l:vokal","mate/p:FM","mate/m:case:acc","mate/m:number:sg","mate/m:gender:masc",">:mate/d:PNC$<i>45","xip/p:NOUN","xip/l:Vokal","<>:xip/const:NPA#265-270$<i>45<b>2","<>:xip/const:NOUN#265-270$<i>45","<:xip/d:DETERM$<i>43"],["s:o","i:o","_45#271-272","opennlp/p:ADV","cnx/l:o","cnx/p:N","cnx/syn:@NH","<>:cnx/const:np#271-272$<i>46","tt/l:o","tt/p:NE","tt/l:o","tt/p:FM","tt/l:o","tt/p:XY","mate/l:O","mate/p:FM","<:mate/d:NK$<i>43","<:mate/d:PNC$<i>44",">:mate/d:SB$<i>47","xip/p:SYMBOL","xip/l:o","<>:xip/const:NP#271-272$<i>46<b>1","<>:xip/const:NPA#271-272$<i>46<b>2","<>:xip/const:NOUN#271-272$<i>46<b>3","<>:xip/const:SYMBOL#271-272$<i>46","xip/d:THEMA"],["s:wie","i:wie","_46#274-277","opennlp/p:PWAV","cnx/l:wie","cnx/p:ADV","cnx/syn:@PREMOD","tt/l:wie","tt/p:KOKOM","tt/l:wie","tt/p:KOUS","mate/l:wie","mate/p:PWAV",">:mate/d:MO$<i>47","xip/p:CONJ","xip/l:wie","<>:xip/const:INS#273-306$<i>50<b>1","<>:xip/const:CONJ#274-277$<i>47"],["s:langes/kurzes","i:langes/kurzes","_47#278-291","opennlp/p:ADJA","cnx/l:lang","cnx/l:/","cnx/l:kurz","cnx/p:A","cnx/syn:@PREMOD","<>:cnx/const:np#278-305$<i>50","mate/l:langes/kurz","mate/p:ADJA","mate/m:case:acc","mate/m:number:sg","mate/m:gender:neut","mate/m:degree:pos","<:mate/d:SB$<i>45","<:mate/d:MO$<i>46","<:mate/d:MO$<i>50"],["s:deutsches","i:deutsches","_48#292-301","opennlp/p:ADJA","corenlp/ne_dewac_175m_600:I-MISC","corenlp/ne_hgc_175m_600:I-MISC","cnx/l:deutsch","cnx/p:A","cnx/syn:@PREMOD","tt/l:deutsch","tt/p:ADJA","mate/l:deutsch","mate/p:ADJA","mate/m:case:acc","mate/m:number:sg","mate/m:gender:neut","mate/m:degree:pos","xip/p:ADJ","xip/l:deutsch","<>:xip/const:ADJ#292-301$<i>49"],["s:\"o\"","i:\"o\"","_49#302-305","opennlp/p:NN","cnx/l:o","cnx/p:N","cnx/syn:@NH"],["s:im","i:im","_50#307-309","opennlp/p:APPRART","tt/l:im","tt/p:APPRART","mate/l:in","mate/p:APPRART","mate/m:case:dat","mate/m:number:sg","mate/m:gender:neut",">:mate/d:MO$<i>47","<:mate/d:NK$<i>51","xip/p:PREP","xip/l:in","<>:xip/const:PP#307-322$<i>52<b>1","<>:xip/const:PREP#307-309$<i>51"],["s:Schwedischen","i:schwedischen","_51#310-322","opennlp/p:NN","corenlp/ne_dewac_175m_600:I-MISC","corenlp/ne_hgc_175m_600:I-MISC","cnx/l:Schwedisch","cnx/p:N","cnx/syn:@NH","<>:cnx/const:np#310-322$<i>52","tt/l:Schwedische","tt/p:NN","mate/l:schwedischen","mate/p:NN","mate/m:case:dat","mate/m:number:sg","mate/m:gender:neut",">:mate/d:NK$<i>50","xip/p:NOUN","xip/l:schwedisch","<>:xip/const:NP#310-322$<i>52<b>2","<>:xip/const:NPA#310-322$<i>52<b>3","<>:xip/const:NOUN#310-322$<i>52"],["s:die","i:die","_52#324-327","<>:s#324-455$<i>70","<>:p#324-360$<i>57","opennlp/p:ART","cnx/l:die","cnx/p:DET","cnx/syn:@PREMOD","tt/l:die","tt/p:ART","mate/l:der","mate/p:ART","mate/m:case:nom","mate/m:number:sg","mate/m:gender:fem",">:mate/d:NK$<i>53","xip/p:DET","xip/l:die","<>:xip/const:DET#324-327$<i>53","<>:xip/const:TOP#324-455$<i>70","<>:xip/const:MC#324-402$<i>64<b>1","<>:xip/const:NP#324-337$<i>54<b>2",">:xip/d:DETERM$<i>53"],["s:Abkürzung","i:abkürzung","_53#328-337","opennlp/p:NN","cnx/l:abkürzung","cnx/p:N","cnx/syn:@NH","<>:cnx/const:np#328-350$<i>56","tt/l:Abkürzung","tt/p:NN","mate/l:abkürzung","mate/p:NN","mate/m:case:nom","mate/m:number:sg","mate/m:gender:fem","<:mate/d:NK$<i>52","<:mate/d:MNR$<i>54","xip/p:NOUN","xip/l:Abkürzung","<>:xip/const:NOUN#328-337$<i>54","<>:xip/const:NPA#328-337$<i>54<b>3","<:xip/d:DETERM$<i>52",">:xip/d:SUBJ$<i>63"],["s:für","i:für","_54#338-341","opennlp/p:ADJA","cnx/l:für","cnx/p:PREP","cnx/syn:@POSTMOD","tt/l:für","tt/p:APPR","mate/l:für","mate/p:APPR",">:mate/d:MNR$<i>53","<:mate/d:NK$<i>55","xip/p:PREP","xip/l:für","<>:xip/const:PP#338-350$<i>56<b>2","<>:xip/const:PREP#338-341$<i>55"],["s:Ångström","i:ångström","_55#342-350","opennlp/p:NN","cnx/l:Ångström","cnx/p:N","cnx/m:Prop","cnx/syn:@NH","tt/p:NE","tt/p:NN","mate/l:ångström","mate/p:NE","mate/m:case:acc","mate/m:number:sg","mate/m:gender:*",">:mate/d:NK$<i>54","<:mate/d:PAR$<i>56","xip/p:NOUN","xip/l:Ångström","<>:xip/const:NP#342-350$<i>56<b>3","<>:xip/const:NPA#342-350$<i>56<b>4","<>:xip/const:NOUN#342-350$<i>56"],["s:Einheit","i:einheit","_56#352-359","opennlp/p:NN","cnx/l:einheit","cnx/p:N","cnx/syn:@NH","<>:cnx/const:np#352-359$<i>57","tt/l:Einheit","tt/p:NN","mate/l:einheit","mate/p:NN","mate/m:case:nom","mate/m:number:sg","mate/m:gender:fem",">:mate/d:PAR$<i>55","xip/p:NOUN","xip/l:Einheit","<>:xip/const:NOUN#352-359$<i>57","<>:xip/const:INS#351-360$<i>57<b>2","<>:xip/const:NP#352-359$<i>57<b>3","<>:xip/const:NPA#352-359$<i>57<b>4"],["s:das","i:das","_57#361-364","<>:p#361-391$<i>62","opennlp/p:ART","cnx/l:das","cnx/p:PRON","cnx/syn:@NH","tt/l:die","tt/p:ART","mate/l:der","mate/p:ART","mate/m:case:nom","mate/m:number:sg","mate/m:gender:neut",">:mate/d:NK$<i>58","xip/p:DET","xip/l:das","<>:xip/const:DET#361-364$<i>58","<>:xip/const:NP#361-371$<i>59<b>2",">:xip/d:DETERM$<i>58"],["s:Suffix","i:suffix","_58#365-371","opennlp/p:NN","cnx/l:suffix","cnx/p:N","cnx/syn:@NH","<>:cnx/const:np#365-371$<i>59","tt/l:Suffix","tt/p:NN","mate/l:suffix","mate/p:NE","mate/m:case:nom","mate/m:number:sg","mate/m:gender:neut","<:mate/d:NK$<i>57","<:mate/d:APP$<i>60","xip/p:NOUN","xip/l:Suffix","<>:xip/const:NOUN#365-371$<i>59","<>:xip/const:NPA#365-371$<i>59<b>3","<:xip/d:DETERM$<i>57",">:xip/d:OBJ$<i>63"],["s:-aa","i:-aa","_59#372-375","opennlp/p:NN","tt/p:NN","tt/p:NE","xip/p:SYMBOL","xip/l:-aa","<>:xip/const:SYMBOL#372-375$<i>60","<>:xip/const:NP#372-375$<i>60<b>2","<>:xip/const:NPA#372-375$<i>60<b>3","<>:xip/const:NOUN#372-375$<i>60<b>4",">:xip/d:OBJ$<i>63"],["s:im","i:im","_60#376-378","opennlp/p:APPRART","tt/l:im","tt/p:APPRART","mate/l:in","mate/p:APPRART","mate/m:case:dat","mate/m:number:sg","mate/m:gender:neut",">:mate/d:APP$<i>58","<:mate/d:NK$<i>61","xip/p:PREP","xip/l:in","<>:xip/const:PREP#376-378$<i>61","<>:xip/const:PP#376-391$<i>62<b>2"],["s:Schwedischen","i:schwedischen","_61#379-391","opennlp/p:ADJA","corenlp/ne_dewac_175m_600:I-MISC","corenlp/ne_hgc_175m_600:I-MISC","cnx/l:schwedisch","cnx/p:A","cnx/syn:@PREMOD","tt/l:Schwedische","tt/p:NN","mate/l:schwedisch","mate/p:NN","mate/m:case:dat","mate/m:number:sg","mate/m:gender:neut",">:mate/d:NK$<i>60","xip/p:NOUN","xip/l:schwedisch","<>:xip/const:NOUN#379-391$<i>62","<>:xip/const:NP#379-391$<i>62<b>3","<>:xip/const:NPA#379-391$<i>62<b>4"],["s:Å","i:å","_62#392-393","<>:p#392-576$<i>87","opennlp/p:NN","cnx/l:Å","cnx/p:N","cnx/syn:@NH","tt/p:NE","tt/p:NN","tt/p:ADJD","tt/p:VVFIN","mate/l:å","mate/p:XY","mate/m:case:nom","mate/m:number:sg","mate/m:gender:*","xip/p:ADV","xip/l:å","<>:xip/const:ADV#392-393$<i>63",">:xip/d:VMOD$<i>63"],["s:bedeutet","i:bedeutet","_63#394-402","opennlp/p:VVFIN","cnx/l:bedeuten","cnx/p:V","cnx/m:IND","cnx/m:PRES","cnx/syn:@MAIN","tt/l:bedeuten","tt/p:VVFIN","mate/l:bedeuten","mate/p:VVFIN","mate/m:number:sg","mate/m:person:3","mate/m:tense:pres","mate/m:mood:ind","<:mate/d:MO$<i>64","xip/p:VERB","xip/l:bedeuten","<>:xip/const:VERB#394-402$<i>64","<:xip/d:SUBJ$<i>53","<:xip/d:OBJ$<i>58","<:xip/d:OBJ$<i>59","<:xip/d:VMOD$<i>62","xip/d:VMAIN"],["s:auf","i:auf","_64#403-406","opennlp/p:APPR","cnx/l:auf","cnx/p:PREP","cnx/syn:@PREMARK","tt/l:auf","tt/p:APPR","mate/l:auf","mate/p:APPR",">:mate/d:MO$<i>63","xip/p:PREP","xip/l:auf","<>:xip/const:PREP#403-406$<i>65"],["s:schwedisch","i:schwedisch","_65#407-417","opennlp/p:ADJD","cnx/l:schwedisch","cnx/p:A","cnx/syn:@NH","tt/l:schwedisch","tt/p:ADJD","mate/l:schwedisch","mate/p:ADJD","mate/m:degree:pos","<:mate/d:CJ$<i>66","xip/p:ADJ","xip/l:schwedisch","<>:xip/const:ADJ#407-417$<i>66","<>:xip/const:AP#407-417$<i>66<b>1"],["s:norwegisch","i:norwegisch","_66#419-429","opennlp/p:ADJD","cnx/l:norwegisch","cnx/p:A","cnx/syn:@NH","tt/l:norwegisch","tt/p:ADJD","mate/l:norwegisch","mate/p:ADJD","mate/m:degree:pos",">:mate/d:CJ$<i>65","<:mate/d:CD$<i>67","xip/p:ADJ","xip/l:norwegisch","<>:xip/const:ADJ#419-429$<i>67","<>:xip/const:AP#419-429$<i>67<b>1","<:xip/d:COORD$<i>67"],["s:und","i:und","_67#430-433","opennlp/p:KON","cnx/l:und","cnx/p:CC","cnx/syn:@CC","tt/l:und","tt/p:KON","mate/l:und","mate/p:KON",">:mate/d:CD$<i>66","<:mate/d:CJ$<i>68","xip/p:CONJ","xip/l:und","<>:xip/const:CONJ#430-433$<i>68",">:xip/d:COORD$<i>66",">:xip/d:COORD$<i>68"],["s:dänisch","i:dänisch","_68#434-441","opennlp/p:ADJD","cnx/l:dänisch","cnx/p:A","cnx/syn:@PREMOD","tt/l:dänisch","tt/p:ADJD","mate/l:dänisch","mate/p:ADJD","mate/m:degree:pos",">:mate/d:CJ$<i>67","xip/p:ADJ","xip/l:dänisch","<>:xip/const:ADJ#434-441$<i>69","<>:xip/const:AP#434-441$<i>69<b>1","<:xip/d:COORD$<i>67"],["s:\"Bach/Fluss\"","i:\"bach/fluss\"","_69#442-454","opennlp/p:NN"],["s:Das","i:das","_70#456-459","<>:s#456-576$<i>87","opennlp/p:ART","cnx/l:das","cnx/p:DET","cnx/syn:@PREMOD","tt/l:die","tt/p:ART","mate/l:der","mate/p:ART","mate/m:case:nom","mate/m:number:sg","mate/m:gender:neut",">:mate/d:NK$<i>72","xip/p:DET","xip/l:das","<>:xip/const:DET#456-459$<i>71","<>:xip/const:TOP#456-576$<i>87","<>:xip/const:NP#456-477$<i>73<b>1",">:xip/d:DETERM$<i>72"],["s:altnordische","i:altnordische","_71#460-472","opennlp/p:ADJA","cnx/l:altnordisch","cnx/p:A","cnx/syn:@PREMOD","<>:cnx/const:np#460-477$<i>73","tt/l:altnordisch","tt/p:ADJA","mate/l:altnordisch","mate/p:ADJA","mate/m:case:nom","mate/m:number:sg","mate/m:gender:neut","mate/m:degree:pos",">:mate/d:NK$<i>72","xip/p:ADJ","xip/l:alt","xip/l:nordisch","xip/l:altnordisch","<>:xip/const:ADJ#460-472$<i>72","<>:xip/const:NPA#460-477$<i>73<b>2","<>:xip/const:AP#460-472$<i>72<b>3",">:xip/d:NMOD$<i>72"],["s:Wort","i:wort","_72#473-477","opennlp/p:NN","cnx/l:wort","cnx/p:N","cnx/syn:@NH","tt/l:Wort","tt/p:NN","mate/l:wort","mate/p:NN","mate/m:case:nom","mate/m:number:sg","mate/m:gender:neut","<:mate/d:NK$<i>70","<:mate/d:NK$<i>71",">:mate/d:SB$<i>80","<:mate/d:--$<i>73","<:mate/d:OC$<i>75","xip/p:NOUN","xip/l:Wort","<>:xip/const:NOUN#473-477$<i>73","<:xip/d:DETERM$<i>70","<:xip/d:NMOD$<i>71","xip/d:THEMA"],["s:á","i:á","_73#478-479","opennlp/p:VVFIN","cnx/l:á","cnx/p:N","cnx/syn:@NH","<>:cnx/const:np#478-479$<i>74","tt/l:á","tt/p:XY","mate/l:á","mate/p:$.",">:mate/d:--$<i>72","xip/p:PUNCT","xip/l:¡","<>:xip/const:PUNCT#478-479$<i>74"],["s:Wasser","i:wasser","_74#482-488","opennlp/p:NN","cnx/l:wasser","cnx/p:N","cnx/m:PL","cnx/syn:@NH","<>:cnx/const:np#482-488$<i>75","tt/l:Wasser","tt/p:NN","mate/l:wasser","mate/p:NN","mate/m:case:nom","mate/m:number:sg","mate/m:gender:neut",">:mate/d:SB$<i>75","xip/p:NOUN","xip/l:Wasser","<>:xip/const:MC#480-523$<i>80<b>1","<>:xip/const:NP#482-488$<i>75<b>2","<>:xip/const:NPA#482-488$<i>75<b>3","<>:xip/const:NOUN#482-488$<i>75",">:xip/d:SUBJ$<i>75"],["s:ist","i:ist","_75#489-492","opennlp/p:VAFIN","cnx/l:sein","cnx/p:V","cnx/m:IND","cnx/m:PRES","cnx/syn:@MAIN","tt/l:sein","tt/p:VAFIN","mate/l:sein","mate/p:VAFIN","mate/m:number:sg","mate/m:person:3","mate/m:tense:pres","mate/m:mood:ind","<:mate/d:SB$<i>74",">:mate/d:OC$<i>72","<:mate/d:PD$<i>76","xip/p:VERB","xip/l:sein","<>:xip/const:VERB#489-492$<i>76","<:xip/d:SUBJ$<i>74","xip/d:VMAIN","<:xip/d:PRED$<i>76"],["s:urverwandt","i:urverwandt","_76#493-503","opennlp/p:ADJD","cnx/l:ur","cnx/l:verwandt","cnx/p:A","cnx/syn:@NH","tt/p:ADJD","tt/p:ADV","mate/l:urverwandt","mate/p:ADJD","mate/m:degree:pos",">:mate/d:PD$<i>75","<:mate/d:MO$<i>77","xip/p:ADJ","xip/l:ur","xip/l:verwandt","xip/l:urverwandt","<>:xip/const:ADJ#493-503$<i>77","<>:xip/const:AP#493-503$<i>77<b>2",">:xip/d:PRED$<i>75"],["s:mit","i:mit","_77#504-507","opennlp/p:APPR","cnx/l:mit","cnx/p:PREP","cnx/syn:@PREMARK","tt/l:mit","tt/p:APPR","mate/l:mit","mate/p:APPR",">:mate/d:MO$<i>76","<:mate/d:NK$<i>78","xip/p:PREP","xip/l:mit","<>:xip/const:PREP#504-507$<i>78","<>:xip/const:PP#504-523$<i>80<b>2"],["s:lateinisch","i:lateinisch","_78#508-518","opennlp/p:ADJD","cnx/l:lateinisch","cnx/p:A","cnx/syn:@PREMOD","<>:cnx/const:np#508-523$<i>80","tt/l:lateinisch","tt/p:ADJD","mate/l:lateinisch","mate/p:ADJD","mate/m:degree:pos",">:mate/d:NK$<i>77","<:mate/d:UC$<i>79","xip/p:ADJ","xip/l:lateinisch","<>:xip/const:NP#508-523$<i>80<b>3","<>:xip/const:AP#508-523$<i>80<b>4","<>:xip/const:AP#508-518$<i>79<b>5","<>:xip/const:ADJ#508-518$<i>79"],["s:aqua","i:aqua","_79#519-523","opennlp/p:NE","cnx/l:aqua","cnx/p:N","cnx/syn:@NH","tt/p:VVINF","tt/p:NN","tt/p:NE","tt/p:ADJD","tt/p:VVFIN","tt/p:VVPP","mate/l:aqua","mate/p:FM",">:mate/d:UC$<i>78","xip/p:ADJ","xip/l:aqua","<>:xip/const:ADJ#519-523$<i>80"],["s:erhalten","i:erhalten","_80#525-533","opennlp/p:VVFIN","cnx/l:erhalten","cnx/p:V","cnx/m:IND","cnx/m:PRES","cnx/syn:@MAIN","tt/l:erhalten","tt/p:VVFIN","mate/l:erhalten","mate/p:VVFIN","mate/m:number:pl","mate/m:person:3","mate/m:tense:pres","mate/m:mood:ind","<:mate/d:SB$<i>72","<:mate/d:MO$<i>81","<:mate/d:CJ$<i>84","xip/p:VERB","xip/l:erhalten","<>:xip/const:MC#525-552$<i>84<b>1","<>:xip/const:VERB#525-533$<i>81","xip/d:VMAIN"],["s:im","i:im","_81#534-536","opennlp/p:APPRART","tt/l:im","tt/p:APPRART","mate/l:in","mate/p:APPRART","mate/m:case:dat","mate/m:number:sg","mate/m:gender:masc",">:mate/d:MO$<i>80","<:mate/d:NK$<i>82","xip/p:PREP","xip/l:in","<>:xip/const:PREP#534-536$<i>82","<>:xip/const:PP#534-546$<i>83<b>2"],["s:Ortsnamen","i:ortsnamen","_82#537-546","opennlp/p:NN","cnx/l:ort","cnx/l:name","cnx/p:N","cnx/syn:@PREMOD","<>:cnx/const:np#537-552$<i>84","tt/l:Ortsname","tt/p:NN","mate/l:ortsnam","mate/p:NN","mate/m:case:dat","mate/m:number:sg","mate/m:gender:masc",">:mate/d:NK$<i>81","<:mate/d:NK$<i>83","xip/p:NOUN","xip/l:Ort","xip/l:Name","xip/l:Ortsname","<>:xip/const:NOUN#537-546$<i>83","<>:xip/const:NP#537-546$<i>83<b>3","<>:xip/const:NPA#537-546$<i>83<b>4","<:xip/d:NMOD$<i>83"],["s:Århus","i:århus","_83#547-552","opennlp/p:NE","cnx/l:Århus","cnx/p:N","cnx/m:Prop","cnx/syn:@NH","tt/p:NE","tt/p:VVINF","tt/p:NN","tt/p:VVFIN","tt/p:ADJD","tt/p:VVPP","mate/l:århus","mate/p:NE","mate/m:case:nom","mate/m:number:sg","mate/m:gender:masc",">:mate/d:NK$<i>82","xip/p:NOUN","xip/l:Århus","<>:xip/const:NOUN#547-552$<i>84","<>:xip/const:NP#547-552$<i>84<b>2","<>:xip/const:NPA#547-552$<i>84<b>3",">:xip/d:NMOD$<i>82"],["s:vergleiche","i:vergleiche","_84#554-564","opennlp/p:ADJA","cnx/l:vergleichen","cnx/p:V","cnx/m:SUB","cnx/m:PRES","cnx/syn:@MAIN","tt/l:vergleichen","tt/p:VVFIN","mate/l:vergleichen","mate/p:VVFIN","mate/m:number:sg","mate/m:person:3","mate/m:tense:pres","mate/m:mood:subj",">:mate/d:CJ$<i>80","<:mate/d:MO$<i>85","<:mate/d:OA$<i>86","xip/p:VERB","xip/l:vergleichen","<>:xip/const:MC#554-575$<i>87<b>1","<>:xip/const:VERB#554-564$<i>85","xip/d:VMAIN","<:xip/d:VMOD$<i>85","<:xip/d:SUBJ$<i>86"],["s:deutsch","i:deutsch","_85#565-572","opennlp/p:ADJD","corenlp/ne_dewac_175m_600:I-MISC","corenlp/ne_hgc_175m_600:I-MISC","cnx/l:deutsch","cnx/p:A","cnx/syn:@PREMOD","<>:cnx/const:np#565-575$<i>87","tt/l:deutsch","tt/p:ADJD","mate/l:deutsch","mate/p:ADJD","mate/m:degree:pos",">:mate/d:MO$<i>84","xip/p:ADJ","xip/l:deutsch","<>:xip/const:AP#565-572$<i>86<b>2","<>:xip/const:ADJ#565-572$<i>86",">:xip/d:VMOD$<i>84"],["s:Au","i:au","_86#573-575","opennlp/p:NN","cnx/l:Au","cnx/p:N","cnx/m:Prop","cnx/syn:@NH","tt/l:Au","tt/p:NE","mate/l:au","mate/p:NN","mate/m:case:nom","mate/m:number:sg","mate/m:gender:fem",">:mate/d:OA$<i>84","xip/p:NOUN","xip/l:Au","<>:xip/const:NP#573-575$<i>87<b>2","<>:xip/const:NPA#573-575$<i>87<b>3","<>:xip/const:NOUN#573-575$<i>87","xip/d:PERSON",">:xip/d:SUBJ$<i>84"],["s:den","i:den","_87#577-580","<>:s#577-668$<i>100","<>:p#577-668$<i>100","opennlp/p:ART","cnx/l:der","cnx/p:DET","cnx/syn:@PREMOD","tt/l:die","tt/p:ART","mate/l:der","mate/p:ART","mate/m:case:acc","mate/m:number:sg","mate/m:gender:masc",">:mate/d:NK$<i>89","xip/p:DET","xip/l:der","<>:xip/const:DET#577-580$<i>88","<>:xip/const:TOP#577-668$<i>100","<>:xip/const:NP#577-605$<i>90<b>1",">:xip/d:DETERM$<i>89"],["s:altnordischen","i:altnordischen","_88#581-594","opennlp/p:ADJA","cnx/l:altnordisch","cnx/p:A","cnx/syn:@PREMOD","<>:cnx/const:np#581-605$<i>90","tt/l:altnordisch","tt/p:ADJA","mate/l:altnordisch","mate/p:ADJA","mate/m:case:acc","mate/m:number:sg","mate/m:gender:masc","mate/m:degree:pos",">:mate/d:NK$<i>89","xip/p:ADJ","xip/l:alt","xip/l:nordisch","xip/l:altnordisch","<>:xip/const:ADJ#581-594$<i>89","<>:xip/const:NPA#581-605$<i>90<b>2","<>:xip/const:AP#581-594$<i>89<b>3",">:xip/d:NMOD$<i>89"],["s:Buchstaben","i:buchstaben","_89#595-605","opennlp/p:NN","cnx/l:buchstabe","cnx/p:N","cnx/syn:@NH","tt/l:Buchstabe","tt/p:NN","mate/l:buchstabe","mate/p:NN","mate/m:case:acc","mate/m:number:sg","mate/m:gender:masc","<:mate/d:NK$<i>87","<:mate/d:NK$<i>88","<:mate/d:NK$<i>90","<:mate/d:MNR$<i>99","xip/p:NOUN","xip/l:Buchstabe","<>:xip/const:NOUN#595-605$<i>90","<:xip/d:DETERM$<i>87","<:xip/d:NMOD$<i>88"],["s:á","i:á","_90#606-607","opennlp/p:VVPP","cnx/l:á","cnx/p:N","cnx/syn:@NH","<>:cnx/const:np#606-607$<i>91","tt/l:á","tt/p:XY","mate/l:á","mate/p:NE","mate/m:case:nom","mate/m:number:sg","mate/m:gender:masc",">:mate/d:NK$<i>89","xip/p:PUNCT","xip/l:¡","<>:xip/const:PUNCT#606-607$<i>91","<>:xip/const:INS#606-668$<i>100<b>1"],["s:wie","i:wie","_91#609-612","opennlp/p:PWAV","cnx/l:wie","cnx/p:CS","cnx/syn:@PREMARK","tt/l:wie","tt/p:KOUS","tt/l:wie","tt/p:KOKOM","mate/l:wie","mate/p:PWAV",">:mate/d:MO$<i>98","xip/p:ADV","xip/l:wie","<>:xip/const:ADV#609-612$<i>92","<>:xip/const:SC#609-667$<i>100<b>2",">:xip/d:CONNECT$<i>98"],["s:er","i:er","_92#613-615","opennlp/p:PPER","cnx/l:er","cnx/p:PRON","cnx/syn:@NH","tt/l:er","tt/p:PPER","mate/l:er","mate/p:PPER","mate/m:case:nom","mate/m:number:sg","mate/m:gender:masc","mate/m:person:3",">:mate/d:SB$<i>99","xip/p:PRON","xip/l:er","<>:xip/const:PRON#613-615$<i>93","<>:xip/const:NP#613-615$<i>93<b>3",">:xip/d:SUBJ$<i>98"],["s:heute","i:heute","_93#616-621","opennlp/p:ADV","cnx/l:heute","cnx/p:ADV","cnx/syn:@ADVL","tt/l:heute","tt/p:ADV","mate/l:heute","mate/p:ADV",">:mate/d:MO$<i>98","xip/p:ADV","xip/l:heute","<>:xip/const:ADV#616-621$<i>94",">:xip/d:VMOD$<i>98"],["s:im","i:im","_94#622-624","opennlp/p:APPRART","tt/l:im","tt/p:APPRART","mate/l:in","mate/p:APPRART","mate/m:case:dat","mate/m:number:sg","mate/m:gender:masc",">:mate/d:MO$<i>98","<:mate/d:NK$<i>95","xip/p:PREP","xip/l:in","<>:xip/const:PREP#622-624$<i>95","<>:xip/const:PP#622-635$<i>96<b>3"],["s:Färöischen","i:färöischen","_95#625-635","opennlp/p:NN","cnx/l:färöischen","cnx/p:N","cnx/syn:@NH","<>:cnx/const:np#625-635$<i>96","tt/l:Färöische","tt/p:NN","mate/l:färöisch","mate/p:NN","mate/m:case:dat","mate/m:number:sg","mate/m:gender:masc",">:mate/d:NK$<i>94","<:mate/d:CD$<i>96","xip/p:NOUN","xip/l:färöisch","<>:xip/const:NOUN#625-635$<i>96","<>:xip/const:NP#625-635$<i>96<b>4","<>:xip/const:NPA#625-635$<i>96<b>5","<:xip/d:COORD$<i>96"],["s:und","i:und","_96#636-639","opennlp/p:KON","cnx/l:und","cnx/p:CC","cnx/syn:@CC","tt/l:und","tt/p:KON","mate/l:und","mate/p:KON",">:mate/d:CD$<i>95","<:mate/d:CJ$<i>97","xip/p:CONJ","xip/l:und","<>:xip/const:CONJ#636-639$<i>97",">:xip/d:COORD$<i>95",">:xip/d:COORD$<i>97"],["s:Isländischen","i:isländischen","_97#640-652","opennlp/p:NN","cnx/l:Isländisch","cnx/p:N","cnx/syn:@NH","<>:cnx/const:np#640-652$<i>98","tt/l:Isländische","tt/p:NN","mate/l:isländisch","mate/p:NN","mate/m:case:dat","mate/m:number:pl","mate/m:gender:masc",">:mate/d:CJ$<i>96","xip/p:NOUN","xip/l:isländisch","<>:xip/const:NOUN#640-652$<i>98","<>:xip/const:NP#640-652$<i>98<b>3","<>:xip/const:NPA#640-652$<i>98<b>4","<:xip/d:COORD$<i>96",">:xip/d:VMOD$<i>98"],["s:verwendet","i:verwendet","_98#653-662","opennlp/p:VVPP","cnx/l:verwenden","cnx/p:V","cnx/m:PCP","cnx/m:PERF","cnx/syn:@MAIN","tt/l:verwenden","tt/p:VVPP","mate/l:verwenden","mate/p:VVPP","<:mate/d:MO$<i>91","<:mate/d:MO$<i>93","<:mate/d:MO$<i>94",">:mate/d:OC$<i>99","xip/p:VERB","xip/l:verwenden","<>:xip/const:VERB#653-662$<i>99","<:xip/d:CONNECT$<i>91","<:xip/d:SUBJ$<i>92","<:xip/d:VMOD$<i>93","<:xip/d:VMOD$<i>97",">:xip/d:AUXIL$<i>99","xip/d:VMAIN"],["s:wird","i:wird","_99#663-667","opennlp/p:VAFIN","cnx/l:werden","cnx/p:V","cnx/m:IND","cnx/m:PRES","cnx/syn:@AUX","tt/l:werden","tt/p:VAFIN","mate/l:werden","mate/p:VAFIN","mate/m:number:sg","mate/m:person:3","mate/m:tense:pres","mate/m:mood:ind","<:mate/d:SB$<i>92","<:mate/d:OC$<i>98",">:mate/d:MNR$<i>89","xip/p:VERB","xip/l:werden","<>:xip/const:VERB#663-667$<i>100","<:xip/d:AUXIL$<i>98"],["s:in","i:in","_100#669-671","<>:s#669-897$<i>136","<>:p#669-755$<i>113","opennlp/p:APPR","cnx/l:in","cnx/p:PREP","cnx/syn:@PREMARK","tt/l:in","tt/p:APPR","mate/l:in","mate/p:APPR",">:mate/d:MO$<i>108","<:mate/d:NK$<i>103","xip/p:PREP","xip/l:in","<>:xip/const:PREP#669-671$<i>101","<>:xip/const:TOP#669-746$<i>111","<>:xip/const:INS#669-722$<i>108<b>1","<>:xip/const:PP#669-693$<i>104<b>2"],["s:der","i:der","_101#672-675","opennlp/p:ART","cnx/l:die","cnx/p:DET","cnx/syn:@PREMOD","tt/l:die","tt/p:ART","mate/l:der","mate/p:ART","mate/m:case:dat","mate/m:number:sg","mate/m:gender:fem",">:mate/d:NK$<i>103","xip/p:DET","xip/l:der","<>:xip/const:DET#672-675$<i>102","<>:xip/const:NP#672-693$<i>104<b>3",">:xip/d:DETERM$<i>103"],["s:dänischen","i:dänischen","_102#676-685","opennlp/p:ADJA","cnx/l:dänisch","cnx/p:A","cnx/syn:@PREMOD","<>:cnx/const:np#676-693$<i>104","tt/l:dänisch","tt/p:ADJA","mate/l:dänisch","mate/p:ADJA","mate/m:case:dat","mate/m:number:sg","mate/m:gender:fem","mate/m:degree:pos",">:mate/d:NK$<i>103","xip/p:ADJ","xip/l:dänisch","<>:xip/const:NPA#676-693$<i>104<b>4","<>:xip/const:AP#676-685$<i>103<b>5","<>:xip/const:ADJ#676-685$<i>103",">:xip/d:NMOD$<i>103"],["s:Sprache","i:sprache","_103#686-693","opennlp/p:NN","cnx/l:sprache","cnx/p:N","cnx/syn:@NH","tt/l:Sprache","tt/p:NN","mate/l:sprache","mate/p:NN","mate/m:case:dat","mate/m:number:sg","mate/m:gender:fem","<:mate/d:NK$<i>101","<:mate/d:NK$<i>102",">:mate/d:NK$<i>100","xip/p:NOUN","xip/l:Sprache","<>:xip/const:NOUN#686-693$<i>104","<:xip/d:DETERM$<i>101","<:xip/d:NMOD$<i>102"],["s:ein","i:ein","_104#694-697","opennlp/p:ART","cnx/l:ein","cnx/p:DET","cnx/syn:@PREMOD","tt/l:eine","tt/p:ART","mate/l:ein","mate/p:ART","mate/m:case:nom","mate/m:number:sg","mate/m:gender:masc",">:mate/d:NK$<i>105","xip/p:DET","xip/l:ein","<>:xip/const:NP#694-706$<i>106<b>2","<>:xip/const:DET#694-697$<i>105",">:xip/d:DETERM$<i>105"],["s:Ausdruck","i:ausdruck","_105#698-706","opennlp/p:NN","cnx/l:ausdruck","cnx/p:N","cnx/syn:@NH","<>:cnx/const:np#698-706$<i>106","tt/l:Ausdruck","tt/p:NN","mate/l:ausdruck","mate/p:NN","mate/m:case:nom","mate/m:number:sg","mate/m:gender:masc","<:mate/d:NK$<i>104",">:mate/d:SB$<i>108","<:mate/d:AG$<i>107","xip/p:NOUN","xip/l:Ausdruck","<>:xip/const:NPA#698-706$<i>106<b>3","<>:xip/const:NOUN#698-706$<i>106","<:xip/d:DETERM$<i>104","<:xip/d:NMOD$<i>107"],["s:des","i:des","_106#707-710","opennlp/p:ART","cnx/l:das","cnx/p:DET","cnx/syn:@PREMOD","tt/l:die","tt/p:ART","mate/l:der","mate/p:ART","mate/m:case:gen","mate/m:number:sg","mate/m:gender:masc",">:mate/d:NK$<i>107","xip/p:DET","xip/l:der","<>:xip/const:DET#707-710$<i>107","<>:xip/const:NP#707-721$<i>108<b>2",">:xip/d:DETERM$<i>107"],["s:Erstaunens","i:erstaunens","_107#711-721","opennlp/p:NN","cnx/l:erstaunen","cnx/p:N","cnx/syn:@NH","<>:cnx/const:np#711-721$<i>108","tt/l:Erstaunen","tt/p:NN","mate/l:erstaunen","mate/p:NN","mate/m:case:gen","mate/m:number:sg","mate/m:gender:masc","<:mate/d:NK$<i>106",">:mate/d:AG$<i>105","xip/p:NOUN","xip/l:erstaunen","<>:xip/const:NPA#711-721$<i>108<b>3","<>:xip/const:NOUN#711-721$<i>108","<:xip/d:DETERM$<i>106",">:xip/d:NMOD$<i>105"],["s:vergleiche","i:vergleiche","_108#723-733","opennlp/p:ADJA","cnx/l:vergleichen","cnx/p:V","cnx/m:SUB","cnx/m:PRES","cnx/syn:@MAIN","tt/l:vergleichen","tt/p:VVFIN","mate/l:vergleichen","mate/p:VVFIN","mate/m:number:sg","mate/m:person:3","mate/m:tense:pres","mate/m:mood:subj","<:mate/d:MO$<i>100","<:mate/d:SB$<i>105","<:mate/d:MO$<i>109","<:mate/d:SVP$<i>110","<:mate/d:CD$<i>111","xip/p:VERB","xip/l:vergleichen","<>:xip/const:MC#723-741$<i>110<b>1","<>:xip/const:VERB#723-733$<i>109","xip/d:VMAIN","<:xip/d:VMOD$<i>109"],["s:deutsch","i:deutsch","_109#734-741","opennlp/p:ADJD","corenlp/ne_dewac_175m_600:I-MISC","corenlp/ne_hgc_175m_600:I-MISC","cnx/l:deutsch","cnx/p:A","cnx/syn:@NH","tt/l:deutsch","tt/p:ADJD","mate/l:deutsch","mate/p:ADJD","mate/m:degree:pos",">:mate/d:MO$<i>108","xip/p:ADJ","xip/l:deutsch","<>:xip/const:ADJ#734-741$<i>110","<>:xip/const:AP#734-741$<i>110<b>2",">:xip/d:VMOD$<i>108"],["s:ach","i:ach","_110#742-745","opennlp/p:ADJD","cnx/l:ach","cnx/p:INTERJ","cnx/syn:@ADVL","tt/l:ach","tt/p:ITJ","mate/l:ach","mate/p:PTKVZ",">:mate/d:SVP$<i>108","xip/p:ITJ","xip/l:ach","<>:xip/const:ITJ#742-745$<i>111"],["s:oder","i:oder","_111#747-751","opennlp/p:KON","cnx/l:oder","cnx/p:CC","cnx/syn:@CC","tt/l:oder","tt/p:KON","mate/l:oder","mate/p:KON",">:mate/d:CD$<i>108","<:mate/d:CJ$<i>112","xip/p:CONJ","xip/l:oder","<>:xip/const:CONJ#747-751$<i>112","<>:xip/const:TOP#747-755$<i>113"],["s:oh","i:oh","_112#752-754","opennlp/p:ADJD","cnx/l:oh","cnx/p:INTERJ","cnx/syn:@ADVL","tt/l:oh","tt/p:ITJ","mate/l:oh","mate/p:FM",">:mate/d:CJ$<i>111","xip/p:ITJ","xip/l:oh","<>:xip/const:ITJ#752-754$<i>113"],["s:Å","i:å","_113#756-757","<>:p#756-1019$<i>160","opennlp/p:VVFIN","cnx/l:Å","cnx/p:N","cnx/syn:@NH","<>:cnx/const:np#756-757$<i>114","tt/p:NE","tt/p:NN","tt/p:ADJD","mate/l:å","mate/p:XY","xip/p:ADV","xip/l:å","<>:xip/const:ADV#756-757$<i>114","<>:xip/const:TOP#756-897$<i>136","<>:xip/const:MC#756-851$<i>130<b>1","xip/d:VMAIN",">:xip/d:VMOD$<i>119","<:xip/d:OBJ$<i>117","<:xip/d:OBJ$<i>121"],["s:bzw.","i:bzw.","_114#758-762","opennlp/p:KON","cnx/l:bzw.","cnx/p:CC","cnx/syn:@CC","tt/l:bzw.","tt/p:KOKOM","xip/p:CONJ","xip/l:beziehungsweise","<>:xip/const:CONJ#758-762$<i>115"],["s:vollständig","i:vollständig","_115#763-774","opennlp/p:ADJD","cnx/l:vollständig","cnx/p:ADV","cnx/syn:@PREMOD","tt/l:vollständig","tt/p:ADJD","mate/l:vollständig","mate/p:ADJD","mate/m:degree:pos",">:mate/d:PD$<i>119","<:mate/d:NK$<i>116","xip/p:ADJ","xip/l:vollständig","<>:xip/const:ADJ#763-774$<i>116","<>:xip/const:NP#763-778$<i>118<b>2","<>:xip/const:NPA#763-778$<i>118<b>3","<>:xip/const:AP#763-776$<i>117<b>4","<>:xip/const:AP#763-774$<i>116<b>5"],["s:Å","i:å","_116#775-776","opennlp/p:ADJD","cnx/l:Å","cnx/p:N","cnx/syn:@PREMOD","<>:cnx/const:np#775-786$<i>119","tt/p:NE","tt/p:NN","tt/p:VVFIN","mate/l:å","mate/p:XY",">:mate/d:NK$<i>115","<:mate/d:AG$<i>118","xip/p:ADJ","xip/l:å","<>:xip/const:ADJ#775-776$<i>117",">:xip/d:NMOD$<i>117"],["s:i","i:i","_117#777-778","opennlp/p:VAFIN","cnx/l:i","cnx/p:N","cnx/syn:@PREMOD","tt/l:i","tt/p:NE","mate/l:I","mate/p:CARD",">:mate/d:NK$<i>118","xip/p:SYMBOL","xip/l:i","<>:xip/const:NOUN#777-778$<i>118<b>4","<>:xip/const:SYMBOL#777-778$<i>118","<:xip/d:NMOD$<i>116",">:xip/d:OBJ$<i>113",">:xip/d:SUBJ$<i>119","<:xip/d:NMOD$<i>118"],["s:Lofoten","i:lofoten","_118#779-786","opennlp/p:NN","cnx/l:Lofoten","cnx/p:N","cnx/m:Prop","cnx/syn:@NH","tt/p:NE","mate/l:lofote","mate/p:NN","mate/m:case:dat","mate/m:number:pl","mate/m:gender:neut","<:mate/d:NK$<i>117",">:mate/d:AG$<i>116","xip/p:NOUN","xip/l:Lofoten","<>:xip/const:NOUN#779-786$<i>119","<>:xip/const:NP#779-786$<i>119<b>2","<>:xip/const:NPA#779-786$<i>119<b>3",">:xip/d:NMOD$<i>117"],["s:ist","i:ist","_119#787-790","opennlp/p:VAFIN","cnx/l:sein","cnx/p:V","cnx/m:IND","cnx/m:PRES","cnx/syn:@MAIN","tt/l:sein","tt/p:VAFIN","mate/l:sein","mate/p:VAFIN","mate/m:number:sg","mate/m:person:3","mate/m:tense:pres","mate/m:mood:ind","<:mate/d:PD$<i>115","<:mate/d:SB$<i>121","<:mate/d:PD$<i>123","xip/p:VERB","xip/l:sein","<>:xip/const:VERB#787-790$<i>120","<:xip/d:VMOD$<i>113","<:xip/d:SUBJ$<i>117","xip/d:VMAIN","<:xip/d:PRED$<i>121"],["s:der","i:der","_120#791-794","opennlp/p:ART","cnx/l:der","cnx/p:DET","cnx/syn:@PREMOD","tt/l:die","tt/p:ART","mate/l:der","mate/p:ART","mate/m:case:nom","mate/m:number:sg","mate/m:gender:masc",">:mate/d:NK$<i>121","xip/p:DET","xip/l:der","<>:xip/const:DET#791-794$<i>121","<>:xip/const:NP#791-799$<i>122<b>2",">:xip/d:DETERM$<i>121"],["s:Name","i:name","_121#795-799","opennlp/p:NN","cnx/l:name","cnx/p:N","cnx/syn:@NH","<>:cnx/const:np#795-799$<i>122","tt/l:Name","tt/p:NN","mate/l:name","mate/p:NN","mate/m:case:nom","mate/m:number:sg","mate/m:gender:masc","<:mate/d:NK$<i>120",">:mate/d:SB$<i>119","xip/p:NOUN","xip/l:Name","<>:xip/const:NOUN#795-799$<i>122","<>:xip/const:NPA#795-799$<i>122<b>3","<:xip/d:DETERM$<i>120",">:xip/d:OBJ$<i>113",">:xip/d:PRED$<i>119","<:xip/d:NMOD$<i>123"],["s:eines","i:eines","_122#800-805","opennlp/p:ART","cnx/l:ein","cnx/p:DET","cnx/syn:@PREMOD","tt/l:eine","tt/p:ART","mate/l:ein","mate/p:ART","mate/m:case:gen","mate/m:number:sg","mate/m:gender:neut",">:mate/d:NK$<i>123","xip/p:DET","xip/l:ein","<>:xip/const:DET#800-805$<i>123","<>:xip/const:NP#800-811$<i>124<b>2",">:xip/d:DETERM$<i>123"],["s:Ortes","i:ortes","_123#806-811","opennlp/p:NN","cnx/l:ort","cnx/p:N","cnx/syn:@NH","<>:cnx/const:np#806-839$<i>128","tt/l:Ort","tt/p:NN","mate/l:ort","mate/p:NN","mate/m:case:gen","mate/m:number:sg","mate/m:gender:neut","<:mate/d:NK$<i>122",">:mate/d:PD$<i>119","<:mate/d:MNR$<i>124","xip/p:NOUN","xip/l:Ort","<>:xip/const:NOUN#806-811$<i>124","<>:xip/const:NPA#806-811$<i>124<b>3","<:xip/d:DETERM$<i>122",">:xip/d:NMOD$<i>121"],["s:auf","i:auf","_124#812-815","opennlp/p:APPR","cnx/l:auf","cnx/p:PREP","cnx/syn:@POSTMOD","tt/l:auf","tt/p:APPR","mate/l:auf","mate/p:APPR",">:mate/d:MNR$<i>123","<:mate/d:NK$<i>126","xip/p:PREP","xip/l:auf","<>:xip/const:PREP#812-815$<i>125","<>:xip/const:PP#812-831$<i>127<b>2"],["s:der","i:der","_125#816-819","opennlp/p:ART","cnx/l:die","cnx/p:DET","cnx/syn:@PREMOD","tt/l:die","tt/p:ART","mate/l:der","mate/p:ART","mate/m:case:dat","mate/m:number:sg","mate/m:gender:fem",">:mate/d:NK$<i>126","xip/p:DET","xip/l:der","<>:xip/const:DET#816-819$<i>126","<>:xip/const:NP#816-831$<i>127<b>3",">:xip/d:DETERM$<i>126"],["s:Inselgruppe","i:inselgruppe","_126#820-831","opennlp/p:NN","cnx/l:insel","cnx/l:gruppe","cnx/p:N","cnx/syn:@PREMOD","tt/l:Inselgruppe","tt/p:NN","mate/l:inselgruppe","mate/p:NN","mate/m:case:dat","mate/m:number:sg","mate/m:gender:fem","<:mate/d:NK$<i>125",">:mate/d:NK$<i>124","<:mate/d:NK$<i>127","<:mate/d:MNR$<i>128","<:mate/d:PAR$<i>132","xip/p:NOUN","xip/l:Insel","xip/l:Gruppe","xip/l:Inselgruppe","<>:xip/const:NOUN#820-831$<i>127","<>:xip/const:NPA#820-831$<i>127<b>4","<:xip/d:DETERM$<i>125","<:xip/d:NMOD$<i>127"],["s:Lofoten","i:lofoten","_127#832-839","opennlp/p:NN","corenlp/ne_hgc_175m_600:I-LOC","cnx/l:Lofoten","cnx/p:N","cnx/m:Prop","cnx/syn:@NH","tt/p:NE","tt/p:NN","mate/l:lofote","mate/p:NN","mate/m:case:acc","mate/m:number:pl","mate/m:gender:fem",">:mate/d:NK$<i>126","xip/p:NOUN","xip/l:Lofoten","<>:xip/const:NOUN#832-839$<i>128","<>:xip/const:NP#832-839$<i>128<b>2","<>:xip/const:NPA#832-839$<i>128<b>3",">:xip/d:NMOD$<i>126"],["s:in","i:in","_128#840-842","opennlp/p:APPR","cnx/l:in","cnx/p:PREP","cnx/syn:@PREMARK","tt/l:in","tt/p:APPR","mate/l:in","mate/p:APPR",">:mate/d:MNR$<i>126","<:mate/d:NK$<i>129","xip/p:PREP","xip/l:in","<>:xip/const:PREP#840-842$<i>129","<>:xip/const:PP#840-851$<i>130<b>2"],["s:Norwegen","i:norwegen","_129#843-851","opennlp/p:NE","corenlp/ne_dewac_175m_600:I-LOC","corenlp/ne_hgc_175m_600:I-LOC","cnx/l:Norwegen","cnx/p:N","cnx/m:Prop","cnx/syn:@NH","<>:cnx/const:np#843-851$<i>130","tt/l:Norwegen","tt/p:NE","mate/l:norwegen","mate/p:NE","mate/m:case:dat","mate/m:number:sg","mate/m:gender:neut",">:mate/d:NK$<i>128","xip/p:NOUN","xip/l:Norwegen","<>:xip/const:NOUN#843-851$<i>130","<>:xip/const:NP#843-851$<i>130<b>3","<>:xip/const:NPA#843-851$<i>130<b>4","xip/d:LOC"],["s:unter","i:unter","_130#853-858","opennlp/p:APPR","cnx/l:unter","cnx/p:ADV","cnx/syn:@ADVL","tt/l:unter","tt/p:APPR","mate/l:unter","mate/p:APPR",">:mate/d:MO$<i>132","<:mate/d:NK$<i>131","xip/p:PREP","xip/l:unter","<>:xip/const:PP#853-875$<i>133","<>:xip/const:PREP#853-858$<i>131"],["s:anderem","i:anderem","_131#859-866","opennlp/p:PIS","cnx/l:andere","cnx/p:PRON","cnx/syn:@PREMOD","tt/l:andere","tt/p:PIS","mate/l:anderer","mate/p:PIS","mate/m:case:dat","mate/m:number:sg","mate/m:gender:neut",">:mate/d:NK$<i>130","xip/p:ADJ","xip/l:andere","<>:xip/const:NP#859-875$<i>133<b>1","<>:xip/const:NPA#859-875$<i>133<b>2","<>:xip/const:AP#859-866$<i>132<b>3","<>:xip/const:ADJ#859-866$<i>132",">:xip/d:NMOD$<i>132"],["s:Endpunkt","i:endpunkt","_132#867-875","opennlp/p:NN","cnx/l:ende","cnx/l:punkt","cnx/p:N","cnx/syn:@NH","<>:cnx/const:np#867-875$<i>133","tt/l:Endpunkt","tt/p:NN","mate/l:endpunkt","mate/p:NN","mate/m:case:nom","mate/m:number:sg","mate/m:gender:masc","<:mate/d:MO$<i>130",">:mate/d:PAR$<i>126","xip/p:NOUN","xip/l:enden","xip/l:Punkt","xip/l:Endenpunkt","<>:xip/const:NOUN#867-875$<i>133","<:xip/d:NMOD$<i>131","<:xip/d:NMOD$<i>134"],["s:der","i:der","_133#876-879","opennlp/p:ART","cnx/l:der","cnx/p:DET","cnx/syn:@PREMOD","tt/l:die","tt/p:ART","mate/l:der","mate/p:ART","mate/m:case:gen","mate/m:number:sg","mate/m:gender:fem","xip/p:DET","xip/l:der","<>:xip/const:DET#876-879$<i>134","<>:xip/const:NP#876-892$<i>135",">:xip/d:DETERM$<i>134"],["s:Europastraße","i:europastraße","_134#880-892","opennlp/p:NN","cnx/l:europastraße","cnx/p:N","cnx/syn:@NH","tt/l:Europastraße","tt/p:NN","mate/l:europastraße","mate/p:NE","mate/m:case:gen","mate/m:number:sg","mate/m:gender:fem","xip/p:NOUN","xip/l:Europa","xip/l:Straße","xip/l:Europastraße","<>:xip/const:NPA#880-892$<i>135<b>1","<>:xip/const:NOUN#880-892$<i>135","<:xip/d:DETERM$<i>133",">:xip/d:NMOD$<i>132"],["s:E10.","i:e10.","_135#893-897","opennlp/p:NE"],["s:Außer","i:außer","_136#898-903","<>:s#898-967$<i>150","opennlp/p:NN","cnx/l:ausser","cnx/p:CS","cnx/syn:@PREMARK","tt/l:außer","tt/p:APPR","mate/l:außer","mate/p:APPR",">:mate/d:MO$<i>140","<:mate/d:NK$<i>139","xip/p:PREP","xip/l:außer","<>:xip/const:TOP#898-967$<i>150","<>:xip/const:PREP#898-903$<i>137"],["s:Å","i:å","_137#904-905","opennlp/p:VVFIN","cnx/l:Å","cnx/p:N","cnx/syn:@PREMOD","<>:cnx/const:np#904-915$<i>140","tt/p:NE","mate/l:å","mate/p:XY","mate/m:number:pl","mate/m:person:2","mate/m:tense:pres","mate/m:mood:ind",">:mate/d:PNC$<i>138","xip/p:ADV","xip/l:å","<>:xip/const:MC#904-952$<i>147<b>1","<>:xip/const:ADV#904-905$<i>138",">:xip/d:VMOD$<i>140"],["s:i","i:i","_138#906-907","opennlp/p:APPR","cnx/l:i","cnx/p:N","cnx/syn:@PREMOD","tt/l:i","tt/p:NE","mate/l:I","mate/p:XY","<:mate/d:PNC$<i>137",">:mate/d:NK$<i>139","xip/p:SYMBOL","xip/l:i","<>:xip/const:NP#906-907$<i>139<b>2","<>:xip/const:NPA#906-907$<i>139<b>3","<>:xip/const:NOUN#906-907$<i>139<b>4","<>:xip/const:SYMBOL#906-907$<i>139",">:xip/d:OBJ$<i>140",">:xip/d:SUBJ$<i>140","<:xip/d:NMOD$<i>139"],["s:Lofoten","i:lofoten","_139#908-915","opennlp/p:NN","cnx/l:Lofoten","cnx/p:N","cnx/m:Prop","cnx/syn:@NH","tt/p:NE","mate/l:lofote","mate/p:NN","mate/m:case:acc","mate/m:number:pl","mate/m:gender:fem","<:mate/d:NK$<i>138",">:mate/d:NK$<i>136","xip/p:NOUN","xip/l:Lofoten","<>:xip/const:NOUN#908-915$<i>140","<>:xip/const:NP#908-915$<i>140<b>2","<>:xip/const:NPA#908-915$<i>140<b>3",">:xip/d:NMOD$<i>138"],["s:gibt","i:gibt","_140#916-920","opennlp/p:VVFIN","cnx/l:geben","cnx/p:V","cnx/m:IND","cnx/m:PRES","cnx/syn:@MAIN","tt/l:geben","tt/p:VVFIN","mate/l:geben","mate/p:VVFIN","mate/m:number:sg","mate/m:person:3","mate/m:tense:pres","mate/m:mood:ind","<:mate/d:MO$<i>136","<:mate/d:EP$<i>141","<:mate/d:MO$<i>142","<:mate/d:MO$<i>144","<:mate/d:OA$<i>146","xip/p:VERB","xip/l:geben","<>:xip/const:VERB#916-920$<i>141","<:xip/d:VMOD$<i>137","<:xip/d:OBJ$<i>138","<:xip/d:SUBJ$<i>138","xip/d:VMAIN","<:xip/d:SUBJ$<i>141","<:xip/d:VMOD$<i>144","<:xip/d:OBJ$<i>146"],["s:es","i:es","_141#921-923","opennlp/p:PPER","cnx/l:es","cnx/p:PRON","cnx/syn:@NH","tt/l:es","tt/p:PPER","mate/l:es","mate/p:PPER","mate/m:case:nom","mate/m:number:sg","mate/m:gender:neut","mate/m:person:3",">:mate/d:EP$<i>140","xip/p:PRON","xip/l:es","<>:xip/const:NP#921-923$<i>142<b>2","<>:xip/const:PRON#921-923$<i>142",">:xip/d:SUBJ$<i>140"],["s:in","i:in","_142#924-926","opennlp/p:APPR","cnx/l:in","cnx/p:PREP","cnx/syn:@PREMARK","tt/l:in","tt/p:APPR","mate/l:in","mate/p:APPR",">:mate/d:MO$<i>140","<:mate/d:NK$<i>143","xip/p:PREP","xip/l:in","<>:xip/const:PP#924-935$<i>144<b>2","<>:xip/const:PREP#924-926$<i>143"],["s:Norwegen","i:norwegen","_143#927-935","opennlp/p:NE","corenlp/ne_dewac_175m_600:I-LOC","corenlp/ne_hgc_175m_600:I-LOC","cnx/l:Norwegen","cnx/p:N","cnx/m:Prop","cnx/syn:@NH","<>:cnx/const:np#927-935$<i>144","tt/l:Norwegen","tt/p:NE","mate/l:norwegen","mate/p:NE","mate/m:case:dat","mate/m:number:sg","mate/m:gender:neut",">:mate/d:NK$<i>142","xip/p:NOUN","xip/l:Norwegen","<>:xip/const:NOUN#927-935$<i>144","<>:xip/const:NP#927-935$<i>144<b>3","<>:xip/const:NPA#927-935$<i>144<b>4","xip/d:LOC"],["s:noch","i:noch","_144#936-940","opennlp/p:ADV","cnx/l:noch","cnx/p:ADV","cnx/syn:@ADVL","tt/l:noch","tt/p:ADV","tt/l:noch","tt/p:KON","mate/l:noch","mate/p:ADV",">:mate/d:MO$<i>140","xip/p:ADV","xip/l:noch","<>:xip/const:ADV#936-940$<i>145",">:xip/d:VMOD$<i>140"],["s:andere","i:andere","_145#941-947","opennlp/p:ADJA","cnx/l:andere","cnx/p:PRON","cnx/syn:@PREMOD","tt/l:ander","tt/p:ADJA","mate/l:anderer","mate/p:ADJA","mate/m:case:nom","mate/m:number:pl","mate/m:gender:*","mate/m:degree:pos",">:mate/d:NK$<i>146","xip/p:ADJ","xip/l:andere","<>:xip/const:NP#941-952$<i>147<b>2","<>:xip/const:NPA#941-952$<i>147<b>3","<>:xip/const:AP#941-947$<i>146<b>4","<>:xip/const:ADJ#941-947$<i>146",">:xip/d:NMOD$<i>146"],["s:Orte","i:orte","_146#948-952","opennlp/p:NN","cnx/l:ort","cnx/p:N","cnx/m:PL","cnx/syn:@NH","<>:cnx/const:np#948-952$<i>147","tt/l:Ort","tt/p:NN","mate/l:ort","mate/p:NN","mate/m:case:nom","mate/m:number:pl","mate/m:gender:*","<:mate/d:NK$<i>145",">:mate/d:OA$<i>140","<:mate/d:RC$<i>149","xip/p:NOUN","xip/l:Ort","<>:xip/const:NOUN#948-952$<i>147","<:xip/d:NMOD$<i>145",">:xip/d:OBJ$<i>140"],["s:die","i:die","_147#954-957","opennlp/p:ART","cnx/l:die","cnx/p:PRON","cnx/syn:@NH","tt/l:die","tt/p:ART","tt/l:die","tt/p:PRELS","mate/l:der","mate/p:PRELS","mate/m:case:nom","mate/m:number:pl","mate/m:gender:*",">:mate/d:SB$<i>149","xip/p:DET","xip/l:die","<>:xip/const:DET#954-957$<i>148","<>:xip/const:NP#954-966$<i>150",">:xip/d:DETERM$<i>149"],["s:Å","i:å","_148#958-959","opennlp/p:NN","cnx/l:Å","cnx/p:N","cnx/syn:@NH","<>:cnx/const:np#958-959$<i>149","tt/p:NN","tt/p:NE","mate/l:å","mate/p:PPER","mate/m:case:nom","mate/m:number:pl","mate/m:gender:*",">:mate/d:MO$<i>149","xip/p:ADV","xip/l:å","<>:xip/const:AP#958-966$<i>150<b>1","<>:xip/const:ADV#958-959$<i>149",">:xip/d:ADJMOD$<i>149"],["s:heißen","i:heißen","_149#960-966","opennlp/p:VVFIN","cnx/l:heissen","cnx/p:V","cnx/m:IND","cnx/m:PRES","cnx/syn:@MAIN","tt/l:heißen","tt/p:VVINF","tt/l:heißen","tt/p:VVFIN","mate/l:heißen","mate/p:VVFIN","mate/m:number:pl","mate/m:person:3","mate/m:tense:pres","mate/m:mood:ind","<:mate/d:SB$<i>147","<:mate/d:MO$<i>148",">:mate/d:RC$<i>146","xip/p:ADJ","xip/l:heiß","<>:xip/const:ADJ#960-966$<i>150","<:xip/d:DETERM$<i>147","<:xip/d:ADJMOD$<i>148"],["s:Auch","i:auch","_150#968-972","<>:s#968-1129$<i>176","opennlp/p:ADV","cnx/l:auch","cnx/p:ADV","cnx/syn:@ADVL","tt/l:auch","tt/p:ADV","mate/l:auch","mate/p:ADV",">:mate/d:MO$<i>151","xip/p:ADV","xip/l:auch","<>:xip/const:ADV#968-972$<i>151","<>:xip/const:TOP#968-1129$<i>176","<>:xip/const:MC#968-1005$<i>157<b>1",">:xip/d:VMOD$<i>153"],["s:in","i:in","_151#973-975","opennlp/p:APPR","cnx/l:in","cnx/p:PREP","cnx/syn:@PREMARK","tt/l:in","tt/p:APPR","mate/l:in","mate/p:APPR","<:mate/d:MO$<i>150",">:mate/d:MO$<i>153","<:mate/d:NK$<i>152","xip/p:PREP","xip/l:in","<>:xip/const:PREP#973-975$<i>152","<>:xip/const:PP#973-984$<i>153<b>2"],["s:Schweden","i:schweden","_152#976-984","opennlp/p:NE","corenlp/ne_dewac_175m_600:I-LOC","corenlp/ne_hgc_175m_600:I-LOC","cnx/l:Schweden","cnx/p:N","cnx/m:Prop","cnx/syn:@NH","<>:cnx/const:np#976-984$<i>153","tt/l:Schweden","tt/p:NE","tt/l:Schwede","tt/p:NN","mate/l:schweden","mate/p:NE","mate/m:case:dat","mate/m:number:sg","mate/m:gender:neut",">:mate/d:NK$<i>151","xip/p:NOUN","xip/l:Schweden","<>:xip/const:NOUN#976-984$<i>153","<>:xip/const:NP#976-984$<i>153<b>3","<>:xip/const:NPA#976-984$<i>153<b>4","xip/d:LOC"],["s:gibt","i:gibt","_153#985-989","opennlp/p:VVFIN","cnx/l:geben","cnx/p:V","cnx/m:IND","cnx/m:PRES","cnx/syn:@MAIN","tt/l:geben","tt/p:VVFIN","mate/l:geben","mate/p:VVFIN","mate/m:number:sg","mate/m:person:3","mate/m:tense:pres","mate/m:mood:ind","<:mate/d:MO$<i>151","<:mate/d:EP$<i>154","<:mate/d:OA$<i>156","xip/p:VERB","xip/l:geben","<>:xip/const:VERB#985-989$<i>154","<:xip/d:VMOD$<i>150","xip/d:VMAIN","<:xip/d:SUBJ$<i>154","<:xip/d:OBJ$<i>156"],["s:es","i:es","_154#990-992","opennlp/p:PPER","cnx/l:es","cnx/p:PRON","cnx/syn:@NH","tt/l:es","tt/p:PPER","mate/l:es","mate/p:PPER","mate/m:case:nom","mate/m:number:sg","mate/m:gender:neut","mate/m:person:3",">:mate/d:EP$<i>153","xip/p:PRON","xip/l:es","<>:xip/const:NP#990-992$<i>155<b>2","<>:xip/const:PRON#990-992$<i>155",">:xip/d:SUBJ$<i>153"],["s:mehrere","i:mehrere","_155#993-1000","opennlp/p:PIAT","cnx/l:mehrere","cnx/p:PRON","cnx/syn:@PREMOD","tt/l:mehrere","tt/p:PIAT","mate/l:mehrere","mate/p:PIAT","mate/m:case:acc","mate/m:number:pl","mate/m:gender:masc",">:mate/d:NK$<i>156","xip/p:ADJ","xip/l:mehrere","<>:xip/const:ADJ#993-1000$<i>156","<>:xip/const:NP#993-1005$<i>157<b>2","<>:xip/const:NPA#993-1005$<i>157<b>3","<>:xip/const:AP#993-1000$<i>156<b>4",">:xip/d:NMOD$<i>156"],["s:Orte","i:orte","_156#1001-1005","opennlp/p:NN","cnx/l:ort","cnx/p:N","cnx/m:PL","cnx/syn:@NH","<>:cnx/const:np#1001-1005$<i>157","tt/l:Ort","tt/p:NN","mate/l:ort","mate/p:NN","mate/m:case:acc","mate/m:number:pl","mate/m:gender:masc","<:mate/d:NK$<i>155",">:mate/d:OA$<i>153","<:mate/d:RC$<i>159","xip/p:NOUN","xip/l:Ort","<>:xip/const:NOUN#1001-1005$<i>157","<:xip/d:NMOD$<i>155",">:xip/d:OBJ$<i>153"],["s:die","i:die","_157#1007-1010","opennlp/p:ART","cnx/l:die","cnx/p:PRON","cnx/syn:@NH","tt/l:die","tt/p:ART","tt/l:die","tt/p:PRELS","mate/l:der","mate/p:PRELS","mate/m:case:nom","mate/m:number:pl","mate/m:gender:masc",">:mate/d:SB$<i>159","xip/p:PRON","xip/l:die","<>:xip/const:MC#1007-1025$<i>162<b>1","<>:xip/const:NP#1007-1010$<i>158<b>2","<>:xip/const:PRON#1007-1010$<i>158",">:xip/d:SUBJ$<i>159"],["s:Å","i:å","_158#1011-1012","opennlp/p:ADJA","cnx/l:Å","cnx/p:N","cnx/syn:@NH","<>:cnx/const:np#1011-1012$<i>159","tt/p:NN","tt/p:NE","mate/l:å","mate/p:PPER","mate/m:case:nom","mate/m:number:pl","mate/m:gender:masc",">:mate/d:MO$<i>159","xip/p:ADV","xip/l:å","<>:xip/const:ADV#1011-1012$<i>159",">:xip/d:VMOD$<i>159"],["s:heißen","i:heißen","_159#1013-1019","opennlp/p:ADJA","cnx/l:heissen","cnx/p:V","cnx/m:IND","cnx/m:PRES","cnx/syn:@MAIN","tt/l:heißen","tt/p:VVFIN","mate/l:heißen","mate/p:VVFIN","mate/m:number:pl","mate/m:person:3","mate/m:tense:pres","mate/m:mood:ind","<:mate/d:SB$<i>157","<:mate/d:MO$<i>158",">:mate/d:RC$<i>156","xip/p:VERB","xip/l:heißen","<>:xip/const:VERB#1013-1019$<i>160","<:xip/d:SUBJ$<i>157","<:xip/d:VMOD$<i>158","xip/d:VMAIN","<:xip/d:OBJ$<i>160","<:xip/d:VMOD$<i>161"],["s:Das","i:das","_160#1020-1023","<>:p#1020-1129$<i>176","opennlp/p:ART","cnx/l:das","cnx/p:PRON","cnx/syn:@NH","tt/l:die","tt/p:ART","tt/l:die","tt/p:PDS","mate/l:der","mate/p:ART","mate/m:case:nom","mate/m:number:sg","mate/m:gender:neut",">:mate/d:NK$<i>161","xip/p:PRON","xip/l:das","<>:xip/const:PRON#1020-1023$<i>161","<>:xip/const:NP#1020-1023$<i>161<b>2",">:xip/d:OBJ$<i>159"],["s:Å","i:å","_161#1024-1025","opennlp/p:NN","cnx/l:Å","cnx/p:N","cnx/syn:@NH","<>:cnx/const:np#1024-1025$<i>162","tt/p:NN","tt/p:NE","mate/l:å","mate/p:NN","mate/m:case:nom","mate/m:number:sg","mate/m:gender:neut","<:mate/d:NK$<i>160",">:mate/d:SB$<i>162","xip/p:ADV","xip/l:å","<>:xip/const:ADV#1024-1025$<i>162",">:xip/d:VMOD$<i>159"],["s:besteht","i:besteht","_162#1026-1033","opennlp/p:VVFIN","cnx/l:bestehen","cnx/p:V","cnx/m:IND","cnx/m:PRES","cnx/syn:@MAIN","tt/l:bestehen","tt/p:VVFIN","mate/l:bestehen","mate/p:VVFIN","mate/m:number:sg","mate/m:person:3","mate/m:tense:pres","mate/m:mood:ind","<:mate/d:SB$<i>161","<:mate/d:OP$<i>163","xip/p:VERB","xip/l:bestehen","<>:xip/const:VERB#1026-1033$<i>163","<>:xip/const:MC#1026-1129$<i>176<b>1","xip/d:VMAIN","<:xip/d:OBJ$<i>165","<:xip/d:SUBJ$<i>166","<:xip/d:OBJ$<i>171"],["s:aus","i:aus","_163#1034-1037","opennlp/p:APPR","cnx/l:aus","cnx/p:PREP","cnx/syn:@PREMARK","tt/l:aus","tt/p:APPR","mate/l:aus","mate/p:APPR",">:mate/d:OP$<i>162","<:mate/d:NK$<i>165","xip/p:PREP","xip/l:aus","<>:xip/const:PREP#1034-1037$<i>164","<>:xip/const:PP#1034-1052$<i>166<b>2","<:xip/d:PLINK$<i>165"],["s:dem","i:dem","_164#1038-1041","opennlp/p:ART","cnx/l:der","cnx/p:DET","cnx/syn:@PREMOD","tt/l:die","tt/p:ART","mate/l:der","mate/p:ART","mate/m:case:dat","mate/m:number:sg","mate/m:gender:neut",">:mate/d:NK$<i>165","xip/p:DET","xip/l:der","<>:xip/const:DET#1038-1041$<i>165","<>:xip/const:NP#1038-1052$<i>166<b>3",">:xip/d:DETERM$<i>165"],["s:Buchstaben","i:buchstaben","_165#1042-1052","opennlp/p:NN","cnx/l:buchstabe","cnx/p:N","cnx/syn:@NH","<>:cnx/const:np#1042-1052$<i>166","tt/l:Buchstabe","tt/p:NN","mate/l:buchstabe","mate/p:NN","mate/m:case:dat","mate/m:number:sg","mate/m:gender:neut","<:mate/d:NK$<i>164",">:mate/d:NK$<i>163","<:mate/d:NK$<i>166","xip/p:NOUN","xip/l:Buchstabe","<>:xip/const:NPA#1042-1052$<i>166<b>4","<>:xip/const:NOUN#1042-1052$<i>166","<:xip/d:DETERM$<i>164",">:xip/d:OBJ$<i>162",">:xip/d:PLINK$<i>163"],["s:A","i:a","_166#1053-1054","opennlp/p:NE","cnx/l:A","cnx/p:N","cnx/syn:@NH","<>:cnx/const:np#1053-1054$<i>167","tt/l:A","tt/p:NN","mate/p:NE","mate/m:case:nom","mate/m:number:sg","mate/m:gender:*",">:mate/d:NK$<i>165","<:mate/d:CD$<i>167","xip/p:SYMBOL","xip/l:A","<>:xip/const:SYMBOL#1053-1054$<i>167","<>:xip/const:NP#1053-1054$<i>167<b>2","<>:xip/const:NPA#1053-1054$<i>167<b>3","<>:xip/const:NOUN#1053-1054$<i>167<b>4",">:xip/d:SUBJ$<i>162","<:xip/d:COORD$<i>167"],["s:und","i:und","_167#1055-1058","opennlp/p:KON","cnx/l:und","cnx/p:CC","cnx/syn:@CC","tt/l:und","tt/p:KON","mate/l:und","mate/p:KON",">:mate/d:CD$<i>166","<:mate/d:CJ$<i>171","xip/p:CONJ","xip/l:und","<>:xip/const:CONJ#1055-1058$<i>168",">:xip/d:COORD$<i>166",">:xip/d:COORD$<i>171"],["s:einem","i:einem","_168#1059-1064","opennlp/p:ART","cnx/l:ein","cnx/p:DET","cnx/syn:@PREMOD","tt/l:eine","tt/p:ART","mate/l:ein","mate/p:ART","mate/m:case:dat","mate/m:number:sg","mate/m:gender:neut",">:mate/d:NK$<i>171","xip/p:DET","xip/l:ein","<>:xip/const:DET#1059-1064$<i>169","<>:xip/const:NP#1059-1092$<i>172<b>2",">:xip/d:DETERM$<i>171"],["s:kleinen","i:kleinen","_169#1065-1072","opennlp/p:ADJA","cnx/l:klein","cnx/p:A","cnx/syn:@PREMOD","<>:cnx/const:np#1065-1092$<i>172","tt/l:klein","tt/p:ADJA","mate/l:klein","mate/p:ADJA","mate/m:case:dat","mate/m:number:sg","mate/m:gender:neut","mate/m:degree:pos",">:mate/d:MO$<i>170","xip/p:ADJ","xip/l:klein","<>:xip/const:NPA#1065-1092$<i>172<b>3","<>:xip/const:AP#1065-1072$<i>170<b>4","<>:xip/const:ADJ#1065-1072$<i>170",">:xip/d:NMOD$<i>171"],["s:übergeschriebenen","i:übergeschriebenen","_170#1073-1090","opennlp/p:NN","cnx/l:über","cnx/l:geschrieben","cnx/p:A","cnx/syn:@PREMOD","tt/p:ADJA","mate/l:übergeschrieben","mate/p:ADJA","mate/m:case:dat","mate/m:number:sg","mate/m:gender:neut","mate/m:degree:pos","<:mate/d:MO$<i>169",">:mate/d:NK$<i>171","xip/p:ADJ","xip/l:über","xip/l:schreiben","xip/l:überschreiben","<>:xip/const:AP#1073-1090$<i>171<b>4","<>:xip/const:ADJ#1073-1090$<i>171",">:xip/d:NMOD$<i>171"],["s:O","i:o","_171#1091-1092","opennlp/p:NE","cnx/l:O","cnx/p:N","cnx/syn:@NH","tt/l:O","tt/p:NN","mate/l:O","mate/p:NN","mate/m:case:dat","mate/m:number:sg","mate/m:gender:neut","<:mate/d:NK$<i>168","<:mate/d:NK$<i>170",">:mate/d:CJ$<i>167","<:mate/d:RC$<i>175","xip/p:SYMBOL","xip/l:O","<>:xip/const:SYMBOL#1091-1092$<i>172","<>:xip/const:NOUN#1091-1092$<i>172<b>4","<:xip/d:COORD$<i>167","<:xip/d:DETERM$<i>168","<:xip/d:NMOD$<i>169","<:xip/d:NMOD$<i>170",">:xip/d:OBJ$<i>162"],["s:welches","i:welches","_172#1094-1101","opennlp/p:PRELS","cnx/l:welcher","cnx/p:PRON","cnx/syn:@NH","tt/l:welche","tt/p:PWAT","mate/l:welcher","mate/p:PRELS","mate/m:case:nom","mate/m:number:sg","mate/m:gender:neut",">:mate/d:SB$<i>175","xip/p:PRON","xip/l:welch","<>:xip/const:SC#1094-1128$<i>176","<>:xip/const:NP#1094-1101$<i>173<b>1","<>:xip/const:PRON#1094-1101$<i>173",">:xip/d:SUBJ$<i>175"],["s:die","i:die","_173#1102-1105","opennlp/p:ART","cnx/l:die","cnx/p:DET","cnx/syn:@PREMOD","tt/l:die","tt/p:ART","mate/l:der","mate/p:ART","mate/m:case:acc","mate/m:number:sg","mate/m:gender:fem",">:mate/d:NK$<i>174","xip/p:DET","xip/l:die","<>:xip/const:NP#1102-1119$<i>175<b>1","<>:xip/const:DET#1102-1105$<i>174",">:xip/d:DETERM$<i>174"],["s:Vokalqualität","i:vokalqualität","_174#1106-1119","opennlp/p:NN","cnx/l:vokal","cnx/l:qualität","cnx/p:N","cnx/syn:@NH","<>:cnx/const:np#1106-1119$<i>175","tt/p:NN","mate/l:vokalqualität","mate/p:NN","mate/m:case:acc","mate/m:number:sg","mate/m:gender:fem","<:mate/d:NK$<i>173",">:mate/d:OA$<i>175","xip/p:NOUN","xip/l:Vokal","xip/l:Qualität","xip/l:Vokalqualität","<>:xip/const:NPA#1106-1119$<i>175<b>2","<>:xip/const:NOUN#1106-1119$<i>175","<:xip/d:DETERM$<i>173",">:xip/d:OBJ$<i>175"],["s:andeutet","i:andeutet","_175#1120-1128","opennlp/p:VVPP","cnx/l:andeuten","cnx/p:V","cnx/m:IND","cnx/m:PRES","cnx/syn:@MAIN","tt/l:andeuten","tt/p:VVFIN","mate/l:andeuten","mate/p:VVFIN","mate/m:number:sg","mate/m:person:3","mate/m:tense:pres","mate/m:mood:ind","<:mate/d:SB$<i>172","<:mate/d:OA$<i>174",">:mate/d:RC$<i>171","xip/p:VERB","xip/l:andeuten","<>:xip/const:VERB#1120-1128$<i>176","<:xip/d:SUBJ$<i>172","<:xip/d:OBJ$<i>174","xip/d:VMAIN"],["s:Im","i:im","_176#1130-1132","<>:s#1130-1260$<i>199","<>:p#1130-1260$<i>199","opennlp/p:APPRART","tt/l:im","tt/p:APPRART","mate/l:in","mate/p:APPRART","mate/m:case:dat","mate/m:number:sg","mate/m:gender:masc",">:mate/d:MO$<i>178","<:mate/d:NK$<i>177","xip/p:PREP","xip/l:in","<>:xip/const:PREP#1130-1132$<i>177","<>:xip/const:TOP#1130-1260$<i>199","<>:xip/const:MC#1130-1202$<i>190<b>1","<>:xip/const:PP#1130-1145$<i>178<b>2"],["s:Schwedischen","i:schwedischen","_177#1133-1145","opennlp/p:NN","corenlp/ne_dewac_175m_600:I-MISC","corenlp/ne_hgc_175m_600:I-MISC","cnx/l:Schwedisch","cnx/p:N","cnx/syn:@NH","<>:cnx/const:np#1133-1145$<i>178","tt/l:Schwedische","tt/p:NN","mate/l:schwedisch","mate/p:NN","mate/m:case:dat","mate/m:number:sg","mate/m:gender:masc",">:mate/d:NK$<i>176","xip/p:NOUN","xip/l:schwedisch","<>:xip/const:NOUN#1133-1145$<i>178","<>:xip/const:NP#1133-1145$<i>178<b>3","<>:xip/const:NPA#1133-1145$<i>178<b>4"],["s:steht","i:steht","_178#1146-1151","opennlp/p:VVFIN","cnx/l:stehen","cnx/p:V","cnx/m:IND","cnx/m:PRES","cnx/syn:@MAIN","tt/l:stehen","tt/p:VVFIN","mate/l:stehen","mate/p:VVFIN","mate/m:number:sg","mate/m:person:3","mate/m:tense:pres","mate/m:mood:ind","<:mate/d:MO$<i>176","<:mate/d:SB$<i>180","<:mate/d:MO$<i>181","<:mate/d:PAR$<i>192","xip/p:VERB","xip/l:stehen","<>:xip/const:VERB#1146-1151$<i>179","xip/d:VMAIN","<:xip/d:SUBJ$<i>180"],["s:der","i:der","_179#1152-1155","opennlp/p:ART","cnx/l:die","cnx/p:PRON","cnx/syn:@NH","tt/l:die","tt/p:ART","mate/l:der","mate/p:ART","mate/m:case:nom","mate/m:number:sg","mate/m:gender:masc",">:mate/d:NK$<i>180","xip/p:DET","xip/l:der","<>:xip/const:DET#1152-1155$<i>180","<>:xip/const:NP#1152-1165$<i>181<b>2",">:xip/d:DETERM$<i>180"],["s:Buchstabe","i:buchstabe","_180#1156-1165","opennlp/p:NN","cnx/l:buchstabe","cnx/p:N","cnx/syn:@NH","<>:cnx/const:np#1156-1165$<i>181","tt/l:Buchstabe","tt/p:NN","mate/l:buchstabe","mate/p:NN","mate/m:case:nom","mate/m:number:sg","mate/m:gender:masc","<:mate/d:NK$<i>179",">:mate/d:SB$<i>178","xip/p:NOUN","xip/l:Buchstabe","<>:xip/const:NOUN#1156-1165$<i>181","<>:xip/const:NPA#1156-1165$<i>181<b>3","<:xip/d:DETERM$<i>179",">:xip/d:SUBJ$<i>178"],["s:nach","i:nach","_181#1166-1170","opennlp/p:APPR","cnx/l:nach","cnx/p:PREP","cnx/syn:@PREMARK","tt/l:nach","tt/p:APPR","mate/l:nach","mate/p:APPR",">:mate/d:MO$<i>178","<:mate/d:NK$<i>183","<:mate/d:CD$<i>184","xip/p:PREP","xip/l:nach","<>:xip/const:PREP#1166-1170$<i>182","<>:xip/const:PP#1166-1176$<i>184<b>2"],["s:dem","i:dem","_182#1171-1174","opennlp/p:ART","cnx/l:der","cnx/p:DET","cnx/syn:@PREMOD","tt/l:die","tt/p:ART","mate/l:der","mate/p:ART","mate/m:case:dat","mate/m:number:sg","mate/m:gender:masc",">:mate/d:NK$<i>183","xip/p:DET","xip/l:der","<>:xip/const:NP#1171-1176$<i>184<b>3","<>:xip/const:DET#1171-1174$<i>183",">:xip/d:DETERM$<i>183"],["s:z","i:z","_183#1175-1176","opennlp/p:ADV","cnx/l:z","cnx/p:N","cnx/syn:@NH","<>:cnx/const:np#1175-1176$<i>184","tt/l:z","tt/p:NE","mate/l:z","mate/p:TRUNC","<:mate/d:NK$<i>182",">:mate/d:NK$<i>181","xip/p:SYMBOL","xip/l:z","<>:xip/const:NPA#1175-1176$<i>184<b>4","<>:xip/const:NOUN#1175-1176$<i>184<b>5","<>:xip/const:SYMBOL#1175-1176$<i>184","<:xip/d:DETERM$<i>182"],["s:und","i:und","_184#1177-1180","opennlp/p:KON","cnx/l:und","cnx/p:CC","cnx/syn:@CC","tt/l:und","tt/p:KON","mate/l:und","mate/p:KON",">:mate/d:CD$<i>181","<:mate/d:CJ$<i>185","xip/p:CONJ","xip/l:und","<>:xip/const:CONJ#1177-1180$<i>185"],["s:vor","i:vor","_185#1181-1184","opennlp/p:APPR","cnx/l:vor","cnx/p:ADV","cnx/syn:@ADVL","tt/l:vor","tt/p:APPR","mate/l:vor","mate/p:APPR",">:mate/d:CJ$<i>184","<:mate/d:NK$<i>187","xip/p:PREP","xip/l:vor","<>:xip/const:PREP#1181-1184$<i>186","<>:xip/const:PP#1181-1190$<i>188<b>2"],["s:dem","i:dem","_186#1185-1188","opennlp/p:ART","cnx/l:der","cnx/p:DET","cnx/syn:@PREMOD","tt/l:die","tt/p:ART","mate/l:der","mate/p:ART","mate/m:case:dat","mate/m:number:sg","mate/m:gender:neut",">:mate/d:NK$<i>187","xip/p:DET","xip/l:der","<>:xip/const:DET#1185-1188$<i>187","<>:xip/const:NP#1185-1190$<i>188<b>3",">:xip/d:DETERM$<i>187"],["s:ä","i:ä","_187#1189-1190","opennlp/p:NN","cnx/l:ä","cnx/p:N","cnx/syn:@NH","<>:cnx/const:np#1189-1190$<i>188","tt/l:ä","tt/p:XY","mate/p:NN","mate/m:case:dat","mate/m:number:sg","mate/m:gender:neut","<:mate/d:NK$<i>186",">:mate/d:NK$<i>185","<:mate/d:MNR$<i>188","xip/p:SYMBOL","xip/l:ä","<>:xip/const:SYMBOL#1189-1190$<i>188","<>:xip/const:NPA#1189-1190$<i>188<b>4","<>:xip/const:NOUN#1189-1190$<i>188<b>5","<:xip/d:DETERM$<i>186"],["s:im","i:im","_188#1191-1193","opennlp/p:APPRART","tt/l:im","tt/p:APPRART","mate/l:in","mate/p:APPRART","mate/m:case:dat","mate/m:number:sg","mate/m:gender:neut",">:mate/d:MNR$<i>187","<:mate/d:NK$<i>189","xip/p:PREP","xip/l:in","<>:xip/const:PREP#1191-1193$<i>189","<>:xip/const:PP#1191-1202$<i>190<b>2"],["s:Alphabet","i:alphabet","_189#1194-1202","opennlp/p:NN","cnx/l:alphabet","cnx/p:N","cnx/syn:@NH","<>:cnx/const:np#1194-1202$<i>190","tt/l:Alphabet","tt/p:NN","mate/l:alphabet","mate/p:NE","mate/m:case:dat","mate/m:number:sg","mate/m:gender:neut",">:mate/d:NK$<i>188","xip/p:NOUN","xip/l:Alphabet","<>:xip/const:NOUN#1194-1202$<i>190","<>:xip/const:NP#1194-1202$<i>190<b>3","<>:xip/const:NPA#1194-1202$<i>190<b>4"],["s:im","i:im","_190#1204-1206","opennlp/p:APPRART","tt/l:im","tt/p:APPRART","mate/l:in","mate/p:APPRART","mate/m:case:dat","mate/m:number:sg","mate/m:gender:neut",">:mate/d:MO$<i>192","<:mate/d:NK$<i>191","xip/p:PREP","xip/l:in","<>:xip/const:PREP#1204-1206$<i>191","<>:xip/const:MC#1204-1259$<i>199<b>1","<>:xip/const:PP#1204-1216$<i>192<b>2"],["s:Dänischen","i:dänischen","_191#1207-1216","opennlp/p:NN","cnx/l:Dänisch","cnx/p:N","cnx/syn:@NH","<>:cnx/const:np#1207-1216$<i>192","tt/l:Dänische","tt/p:NN","mate/l:dänisch","mate/p:NN","mate/m:case:dat","mate/m:number:sg","mate/m:gender:neut",">:mate/d:NK$<i>190","xip/p:NOUN","xip/l:dänisch","<>:xip/const:NOUN#1207-1216$<i>192","<>:xip/const:NP#1207-1216$<i>192<b>3","<>:xip/const:NPA#1207-1216$<i>192<b>4"],["s:ist","i:ist","_192#1217-1220","opennlp/p:VAFIN","cnx/l:sein","cnx/p:V","cnx/m:IND","cnx/m:PRES","cnx/syn:@MAIN","tt/l:sein","tt/p:VAFIN","mate/l:sein","mate/p:VAFIN","mate/m:number:sg","mate/m:person:3","mate/m:tense:pres","mate/m:mood:ind","<:mate/d:MO$<i>190",">:mate/d:PAR$<i>178","<:mate/d:SB$<i>193","<:mate/d:PD$<i>196","xip/p:VERB","xip/l:sein","<>:xip/const:VERB#1217-1220$<i>193","xip/d:VMAIN","<:xip/d:PRED$<i>193","<:xip/d:SUBJ$<i>196"],["s:es","i:es","_193#1221-1223","opennlp/p:PPER","cnx/l:es","cnx/p:PRON","cnx/syn:@NH","tt/l:es","tt/p:PPER","mate/l:es","mate/p:PPER","mate/m:case:nom","mate/m:number:sg","mate/m:gender:neut","mate/m:person:3",">:mate/d:SB$<i>192","xip/p:PRON","xip/l:es","<>:xip/const:NP#1221-1223$<i>194<b>2","<>:xip/const:PRON#1221-1223$<i>194",">:xip/d:PRED$<i>192"],["s:der","i:der","_194#1224-1227","opennlp/p:ART","cnx/l:der","cnx/p:DET","cnx/syn:@PREMOD","tt/l:die","tt/p:ART","mate/l:der","mate/p:ART","mate/m:case:nom","mate/m:number:sg","mate/m:gender:masc",">:mate/d:NK$<i>196","xip/p:DET","xip/l:der","<>:xip/const:DET#1224-1227$<i>195","<>:xip/const:NP#1224-1244$<i>197<b>2",">:xip/d:DETERM$<i>196"],["s:letzte","i:letzte","_195#1228-1234","opennlp/p:ADJA","cnx/l:letzt","cnx/p:A","cnx/syn:@PREMOD","<>:cnx/const:np#1228-1244$<i>197","tt/l:letzt","tt/p:ADJA","mate/l:letzter","mate/p:ADJA","mate/m:case:nom","mate/m:number:sg","mate/m:gender:masc","mate/m:degree:pos",">:mate/d:NK$<i>196","xip/p:ADJ","xip/l:letzt","<>:xip/const:NPA#1228-1244$<i>197<b>3","<>:xip/const:AP#1228-1234$<i>196<b>4","<>:xip/const:ADJ#1228-1234$<i>196",">:xip/d:NMOD$<i>196"],["s:Buchstabe","i:buchstabe","_196#1235-1244","opennlp/p:NN","cnx/l:buchstabe","cnx/p:N","cnx/syn:@NH","tt/l:Buchstabe","tt/p:NN","mate/l:buchstabe","mate/p:NN","mate/m:case:nom","mate/m:number:sg","mate/m:gender:masc","<:mate/d:NK$<i>194","<:mate/d:NK$<i>195",">:mate/d:PD$<i>192","<:mate/d:AG$<i>198","xip/p:NOUN","xip/l:Buchstabe","<>:xip/const:NOUN#1235-1244$<i>197","<:xip/d:DETERM$<i>194","<:xip/d:NMOD$<i>195",">:xip/d:SUBJ$<i>192","<:xip/d:NMOD$<i>198"],["s:des","i:des","_197#1245-1248","opennlp/p:ART","cnx/l:der","cnx/p:DET","cnx/syn:@PREMOD","tt/l:die","tt/p:ART","mate/l:der","mate/p:ART","mate/m:case:gen","mate/m:number:sg","mate/m:gender:masc",">:mate/d:NK$<i>198","xip/p:DET","xip/l:der","<>:xip/const:NP#1245-1259$<i>199<b>2","<>:xip/const:DET#1245-1248$<i>198",">:xip/d:DETERM$<i>198"],["s:Alphabetes","i:alphabetes","_198#1249-1259","opennlp/p:NN","cnx/l:alphabetes","cnx/p:N","cnx/syn:@NH","<>:cnx/const:np#1249-1259$<i>199","tt/l:Alphabet","tt/p:NN","mate/l:alphabet","mate/p:NN","mate/m:case:gen","mate/m:number:sg","mate/m:gender:masc","<:mate/d:NK$<i>197",">:mate/d:AG$<i>196","xip/p:NOUN","xip/l:Alphabet","<>:xip/const:NOUN#1249-1259$<i>199","<>:xip/const:NPA#1249-1259$<i>199<b>3","<:xip/d:DETERM$<i>197",">:xip/d:NMOD$<i>196"],["s:In","i:in","_199#1261-1263","<>:s#1261-1399$<i>222","<>:p#1261-1552$<i>245","opennlp/p:APPR","cnx/l:in","cnx/p:PREP","cnx/syn:@PREMARK","tt/l:in","tt/p:APPR","mate/l:in","mate/p:APPR",">:mate/d:MO$<i>208","<:mate/d:NK$<i>200","xip/p:PREP","xip/l:in","<>:xip/const:TOP#1261-1399$<i>222","<>:xip/const:MC#1261-1296$<i>206<b>1","<>:xip/const:PP#1261-1272$<i>201<b>2","<>:xip/const:PREP#1261-1263$<i>200"],["s:Dänemark","i:dänemark","_200#1264-1272","opennlp/p:NE","cnx/l:Dänemark","cnx/p:N","cnx/m:Prop","cnx/syn:@NH","<>:cnx/const:np#1264-1272$<i>201","tt/l:Dänemark","tt/p:NE","mate/l:dänemark","mate/p:NE","mate/m:case:dat","mate/m:number:sg","mate/m:gender:neut",">:mate/d:NK$<i>199","xip/p:NOUN","xip/l:Dänemark","<>:xip/const:NP#1264-1272$<i>201<b>3","<>:xip/const:NPA#1264-1272$<i>201<b>4","<>:xip/const:NOUN#1264-1272$<i>201","xip/d:LOC"],["s:ist","i:ist","_201#1273-1276","opennlp/p:VAFIN","cnx/l:sein","cnx/p:V","cnx/m:IND","cnx/m:PRES","cnx/syn:@AUX","tt/l:sein","tt/p:VAFIN","mate/l:sein","mate/p:VAFIN","mate/m:number:sg","mate/m:person:3","mate/m:tense:pres","mate/m:mood:ind","<:mate/d:SB$<i>204","<:mate/d:OC$<i>209","<:mate/d:CJ$<i>214","xip/p:VERB","xip/l:sein","<>:xip/const:VERB#1273-1276$<i>202","xip/d:VMAIN"],["s:der","i:der","_202#1277-1280","opennlp/p:ART","cnx/l:der","cnx/p:DET","cnx/syn:@PREMOD","tt/l:die","tt/p:ART","mate/l:der","mate/p:ART","mate/m:case:nom","mate/m:number:sg","mate/m:gender:masc",">:mate/d:NK$<i>204","xip/p:DET","xip/l:der","<>:xip/const:NP#1277-1296$<i>206<b>2","<>:xip/const:DET#1277-1280$<i>203"],["s:alte","i:alte","_203#1281-1285","opennlp/p:ADJA","cnx/l:alt","cnx/p:A","cnx/syn:@PREMOD","<>:cnx/const:np#1281-1296$<i>206","tt/l:alt","tt/p:ADJA","mate/l:alt","mate/p:ADJA","mate/m:case:nom","mate/m:number:sg","mate/m:gender:masc","mate/m:degree:pos",">:mate/d:NK$<i>204","xip/p:ADJ","xip/l:alt","<>:xip/const:NPA#1281-1296$<i>206<b>3","<>:xip/const:AP#1281-1285$<i>204<b>4","<>:xip/const:ADJ#1281-1285$<i>204"],["s:Digraph","i:digraph","_204#1286-1293","opennlp/p:NN","cnx/l:digraph","cnx/p:N","cnx/syn:@PREMOD","tt/l:Digraph","tt/p:NN","mate/l:digraph","mate/p:NN","mate/m:case:nom","mate/m:number:sg","mate/m:gender:masc","<:mate/d:NK$<i>202","<:mate/d:NK$<i>203",">:mate/d:SB$<i>201","<:mate/d:NK$<i>205","xip/p:NOUN","xip/l:Digraph","<>:xip/const:NOUN#1286-1296$<i>206<b>4","<>:xip/const:NOUN#1286-1293$<i>205"],["s:Aa","i:aa","_205#1294-1296","opennlp/p:NE","cnx/l:aa","cnx/p:N","cnx/syn:@NH","tt/p:NE","tt/p:NN","mate/l:aa","mate/p:NE","mate/m:case:nom","mate/m:number:sg","mate/m:gender:masc",">:mate/d:NK$<i>204","xip/p:NOUN","xip/l:Aa","<>:xip/const:NOUN#1294-1296$<i>206"],["s:durch","i:durch","_206#1297-1302","opennlp/p:APPR","cnx/l:durch","cnx/p:ADV","cnx/syn:@ADVL","tt/l:durch","tt/p:APPR","mate/l:durch","mate/p:APPR",">:mate/d:MO$<i>208","<:mate/d:NK$<i>207","xip/p:PREP","xip/l:durch","<>:xip/const:PREP#1297-1302$<i>207"],["s:Å","i:å","_207#1303-1304","opennlp/p:NN","cnx/l:Å","cnx/p:N","cnx/syn:@NH","<>:cnx/const:np#1303-1304$<i>208","tt/p:NN","tt/p:NE","mate/l:å","mate/p:NN","mate/m:case:acc","mate/m:number:sg","mate/m:gender:masc",">:mate/d:NK$<i>206","xip/p:ADV","xip/l:å","<>:xip/const:ADV#1303-1304$<i>208"],["s:ersetzt","i:ersetzt","_208#1305-1312","opennlp/p:VVPP","cnx/l:ersetzen","cnx/p:V","cnx/m:PCP","cnx/m:PERF","cnx/syn:@MAIN","tt/l:ersetzen","tt/p:VVPP","mate/l:ersetzen","mate/p:VVPP","<:mate/d:MO$<i>199","<:mate/d:MO$<i>206",">:mate/d:OC$<i>209","xip/p:VERB","xip/l:ersetzen","<>:xip/const:VERB#1305-1312$<i>209"],["s:worden","i:worden","_209#1313-1319","opennlp/p:VAPP","cnx/l:werden","cnx/p:V","cnx/m:PCP","cnx/m:PERF","cnx/syn:@AUX","tt/l:werden","tt/p:VAPP","mate/l:werden","mate/p:VAPP","<:mate/d:OC$<i>208",">:mate/d:OC$<i>201","xip/p:VERB","xip/l:werden","<>:xip/const:VERB#1313-1319$<i>210"],["s:in","i:in","_210#1321-1323","opennlp/p:APPR","cnx/l:in","cnx/p:PREP","cnx/syn:@PREMARK","tt/l:in","tt/p:APPR","mate/l:in","mate/p:APPR",">:mate/d:MO$<i>214","<:mate/d:NK$<i>211","xip/p:PREP","xip/l:in","<>:xip/const:MC#1321-1398$<i>222<b>1","<>:xip/const:PP#1321-1334$<i>212<b>2","<>:xip/const:PREP#1321-1323$<i>211"],["s:Eigennamen","i:eigennamen","_211#1324-1334","opennlp/p:NN","cnx/l:eigen","cnx/l:name","cnx/p:N","cnx/syn:@NH","<>:cnx/const:np#1324-1334$<i>212","tt/l:Eigenname","tt/p:NN","mate/l:eigenname","mate/p:NN","mate/m:case:dat","mate/m:number:pl","mate/m:gender:masc",">:mate/d:NK$<i>210","<:mate/d:CD$<i>212","xip/p:NOUN","xip/l:eignen","xip/l:Name","xip/l:Eignenname","<>:xip/const:NP#1324-1334$<i>212<b>3","<>:xip/const:NPA#1324-1334$<i>212<b>4","<>:xip/const:NOUN#1324-1334$<i>212","<:xip/d:COORD$<i>212"],["s:und","i:und","_212#1335-1338","opennlp/p:KON","cnx/l:und","cnx/p:CC","cnx/syn:@CC","tt/l:und","tt/p:KON","mate/l:und","mate/p:KON",">:mate/d:CD$<i>211","<:mate/d:CJ$<i>213","xip/p:CONJ","xip/l:und","<>:xip/const:CONJ#1335-1338$<i>213",">:xip/d:COORD$<i>211",">:xip/d:COORD$<i>213"],["s:Ortsnamen","i:ortsnamen","_213#1339-1348","opennlp/p:NN","cnx/l:ort","cnx/l:name","cnx/p:N","cnx/syn:@NH","<>:cnx/const:np#1339-1348$<i>214","tt/l:Ortsname","tt/p:NN","mate/l:ortsname","mate/p:NN","mate/m:case:dat","mate/m:number:pl","mate/m:gender:masc",">:mate/d:CJ$<i>212","xip/p:NOUN","xip/l:Ort","xip/l:Name","xip/l:Ortsname","<>:xip/const:NP#1339-1348$<i>214<b>2","<>:xip/const:NPA#1339-1348$<i>214<b>3","<>:xip/const:NOUN#1339-1348$<i>214","<:xip/d:COORD$<i>212",">:xip/d:VMOD$<i>214"],["s:findet","i:findet","_214#1349-1355","opennlp/p:VVFIN","cnx/l:finden","cnx/p:V","cnx/m:IND","cnx/m:PRES","cnx/syn:@MAIN","tt/l:finden","tt/p:VVFIN","mate/l:finden","mate/p:VVFIN","mate/m:number:sg","mate/m:person:3","mate/m:tense:pres","mate/m:mood:ind","<:mate/d:MO$<i>210",">:mate/d:CJ$<i>201","<:mate/d:OA$<i>215","<:mate/d:MO$<i>216","<:mate/d:MO$<i>218","<:mate/d:OG$<i>221","xip/p:VERB","xip/l:finden","<>:xip/const:VERB#1349-1355$<i>215","<:xip/d:VMOD$<i>213","xip/d:VMAIN","<:xip/d:REFLEX$<i>215","<:xip/d:VMOD$<i>217","<:xip/d:VMOD$<i>218","<:xip/d:SUBJ$<i>221"],["s:sich","i:sich","_215#1356-1360","opennlp/p:PRF","cnx/l:sich","cnx/p:PRON","cnx/syn:@NH","tt/l:er|es|sie","tt/p:PRF","mate/l:sich","mate/p:PRF","mate/m:case:acc","mate/m:number:sg","mate/m:person:3",">:mate/d:OA$<i>214","xip/p:PRON","xip/l:sich","<>:xip/const:NP#1356-1360$<i>216<b>2","<>:xip/const:PRON#1356-1360$<i>216",">:xip/d:REFLEX$<i>214"],["s:jedoch","i:jedoch","_216#1361-1367","opennlp/p:ADV","cnx/l:jedoch","cnx/p:ADV","cnx/syn:@ADVL","tt/l:jedoch","tt/p:ADV","mate/l:jedoch","mate/p:ADV",">:mate/d:MO$<i>214","xip/p:CONJ","xip/l:jedoch","<>:xip/const:CONJ#1361-1367$<i>217"],["s:noch","i:noch","_217#1368-1372","opennlp/p:ADV","cnx/l:noch","cnx/p:ADV","cnx/syn:@ADVL","tt/l:noch","tt/p:ADV","mate/l:noch","mate/p:ADV",">:mate/d:MO$<i>218","xip/p:ADV","xip/l:noch","<>:xip/const:ADV#1368-1372$<i>218",">:xip/d:VMOD$<i>214"],["s:häufig","i:häufig","_218#1373-1379","opennlp/p:ADJD","cnx/l:häufig","cnx/p:A","cnx/syn:@NH","tt/l:häufig","tt/p:ADJD","mate/l:häufig","mate/p:ADJD","mate/m:degree:pos","<:mate/d:MO$<i>217",">:mate/d:MO$<i>214","xip/p:ADJ","xip/l:häufig","<>:xip/const:AP#1373-1379$<i>219<b>2","<>:xip/const:ADJ#1373-1379$<i>219",">:xip/d:VMOD$<i>214"],["s:die","i:die","_219#1380-1383","opennlp/p:ART","cnx/l:die","cnx/p:DET","cnx/syn:@PREMOD","tt/l:die","tt/p:ART","mate/l:der","mate/p:ART","mate/m:case:nom","mate/m:number:sg","mate/m:gender:fem",">:mate/d:NK$<i>221","xip/p:DET","xip/l:die","<>:xip/const:NP#1380-1398$<i>222<b>2","<>:xip/const:DET#1380-1383$<i>220",">:xip/d:DETERM$<i>221"],["s:alte","i:alte","_220#1384-1388","opennlp/p:ADJA","cnx/l:alt","cnx/p:A","cnx/syn:@PREMOD","<>:cnx/const:np#1384-1398$<i>222","tt/l:alt","tt/p:ADJA","mate/l:alt","mate/p:ADJA","mate/m:case:nom","mate/m:number:sg","mate/m:gender:fem","mate/m:degree:pos",">:mate/d:NK$<i>221","xip/p:ADJ","xip/l:alt","<>:xip/const:NPA#1384-1398$<i>222<b>3","<>:xip/const:AP#1384-1388$<i>221<b>4","<>:xip/const:ADJ#1384-1388$<i>221",">:xip/d:NMOD$<i>221"],["s:Scheibung","i:scheibung","_221#1389-1398","opennlp/p:NN","cnx/l:scheibung","cnx/p:N","cnx/syn:@NH","tt/p:NN","mate/l:scheibung","mate/p:NN","mate/m:case:nom","mate/m:number:sg","mate/m:gender:fem","<:mate/d:NK$<i>219","<:mate/d:NK$<i>220",">:mate/d:OG$<i>214","xip/p:NOUN","xip/l:Scheibung","<>:xip/const:NOUN#1389-1398$<i>222","<:xip/d:DETERM$<i>219","<:xip/d:NMOD$<i>220",">:xip/d:SUBJ$<i>214"],["s:Ein","i:ein","_222#1400-1403","<>:s#1400-1552$<i>245","opennlp/p:ART","cnx/l:ein","cnx/p:DET","cnx/syn:@PREMOD","tt/l:eine","tt/p:ART","mate/l:ein","mate/p:ART","mate/m:case:nom","mate/m:number:sg","mate/m:gender:neut",">:mate/d:NK$<i>223","xip/p:DET","xip/l:ein","<>:xip/const:DET#1400-1403$<i>223","<>:xip/const:TOP#1400-1532$<i>244","<>:xip/const:MC#1400-1432$<i>228<b>1","<>:xip/const:NP#1400-1412$<i>224<b>2",">:xip/d:DETERM$<i>223"],["s:Kuriosum","i:kuriosum","_223#1404-1412","opennlp/p:NE","cnx/l:kuriosum","cnx/p:N","cnx/syn:@NH","<>:cnx/const:np#1404-1412$<i>224","tt/l:Kuriosum","tt/p:NN","mate/l:kuriosum","mate/p:NN","mate/m:case:nom","mate/m:number:sg","mate/m:gender:neut","<:mate/d:NK$<i>222",">:mate/d:PD$<i>224","xip/p:NOUN","xip/l:Kuriosum","<>:xip/const:NPA#1404-1412$<i>224<b>3","<>:xip/const:NOUN#1404-1412$<i>224","<:xip/d:DETERM$<i>222",">:xip/d:SUBJ$<i>224"],["s:ist","i:ist","_224#1413-1416","opennlp/p:VAFIN","cnx/l:sein","cnx/p:V","cnx/m:IND","cnx/m:PRES","cnx/syn:@MAIN","tt/l:sein","tt/p:VAFIN","mate/l:sein","mate/p:VAFIN","mate/m:number:sg","mate/m:person:3","mate/m:tense:pres","mate/m:mood:ind","<:mate/d:PD$<i>223","<:mate/d:SB$<i>226","xip/p:VERB","xip/l:sein","<>:xip/const:VERB#1413-1416$<i>225","<:xip/d:SUBJ$<i>223","xip/d:VMAIN","<:xip/d:PRED$<i>226"],["s:die","i:die","_225#1417-1420","opennlp/p:ART","cnx/l:die","cnx/p:DET","cnx/syn:@PREMOD","tt/l:die","tt/p:ART","mate/l:der","mate/p:ART","mate/m:case:nom","mate/m:number:sg","mate/m:gender:fem",">:mate/d:NK$<i>226","xip/p:DET","xip/l:die","<>:xip/const:DET#1417-1420$<i>226","<>:xip/const:NP#1417-1426$<i>227<b>2",">:xip/d:DETERM$<i>226"],["s:Stadt","i:stadt","_226#1421-1426","opennlp/p:NN","cnx/l:stadt","cnx/p:N","cnx/syn:@PREMOD","<>:cnx/const:np#1421-1432$<i>228","tt/l:Stadt","tt/p:NN","mate/l:stadt","mate/p:NN","mate/m:case:nom","mate/m:number:sg","mate/m:gender:fem","<:mate/d:NK$<i>225",">:mate/d:SB$<i>224","<:mate/d:NK$<i>227","<:mate/d:RC$<i>232","xip/p:NOUN","xip/l:Stadt","<>:xip/const:NPA#1421-1426$<i>227<b>3","<>:xip/const:NOUN#1421-1426$<i>227","<:xip/d:DETERM$<i>225",">:xip/d:PRED$<i>224","<:xip/d:NMOD$<i>227"],["s:Århus","i:århus","_227#1427-1432","opennlp/p:NE","cnx/l:Århus","cnx/p:N","cnx/m:Prop","cnx/syn:@NH","tt/p:NE","tt/p:VVINF","tt/p:NN","tt/p:VVFIN","tt/p:ADJD","tt/p:VVPP","mate/l:århus","mate/p:NE",">:mate/d:NK$<i>226","xip/p:NOUN","xip/l:Århus","<>:xip/const:NOUN#1427-1432$<i>228","<>:xip/const:NP#1427-1432$<i>228<b>2","<>:xip/const:NPA#1427-1432$<i>228<b>3","xip/d:LOC",">:xip/d:NMOD$<i>226"],["s:die","i:die","_228#1434-1437","opennlp/p:PRELS","cnx/l:die","cnx/p:PRON","cnx/syn:@NH","tt/l:die","tt/p:PRELS","mate/l:der","mate/p:PRELS","mate/m:case:nom","mate/m:number:sg","mate/m:gender:fem",">:mate/d:SB$<i>232","xip/p:PRON","xip/l:die","<>:xip/const:NP#1434-1437$<i>229<b>1","<>:xip/const:PRON#1434-1437$<i>229","xip/d:THEMA"],["s:sich","i:sich","_229#1438-1442","opennlp/p:PRF","cnx/l:sich","cnx/p:PRON","cnx/syn:@NH","tt/l:er|es|sie","tt/p:PRF","mate/l:sich","mate/p:PRF","mate/m:case:acc","mate/m:number:sg","mate/m:person:3",">:mate/d:OA$<i>232","xip/p:PRON","xip/l:sich","<>:xip/const:PRON#1438-1442$<i>230","<>:xip/const:NP#1438-1442$<i>230<b>1"],["s:mit","i:mit","_230#1443-1446","opennlp/p:APPR","cnx/l:mit","cnx/p:ADV","cnx/syn:@ADVL","tt/l:mit","tt/p:APPR","mate/l:mit","mate/p:APPR",">:mate/d:MO$<i>232","<:mate/d:NK$<i>231","xip/p:PREP","xip/l:mit","<>:xip/const:PREP#1443-1446$<i>231"],["s:Å","i:å","_231#1447-1448","opennlp/p:NN","cnx/l:Å","cnx/p:N","cnx/syn:@NH","<>:cnx/const:np#1447-1448$<i>232","tt/p:NE","tt/p:NN","mate/l:å","mate/p:PPER","mate/m:case:dat","mate/m:number:sg","mate/m:gender:*",">:mate/d:NK$<i>230","xip/p:ADV","xip/l:å","<>:xip/const:MC#1447-1457$<i>233<b>1","<>:xip/const:ADV#1447-1448$<i>232",">:xip/d:VMOD$<i>232"],["s:schreibt","i:schreibt","_232#1449-1457","opennlp/p:VVFIN","cnx/l:schreiben","cnx/p:V","cnx/m:IND","cnx/m:PRES","cnx/syn:@MAIN","tt/l:schreiben","tt/p:VVFIN","mate/l:schreiben","mate/p:VVFIN","mate/m:number:sg","mate/m:person:3","mate/m:tense:pres","mate/m:mood:ind","<:mate/d:SB$<i>228","<:mate/d:OA$<i>229","<:mate/d:MO$<i>230",">:mate/d:RC$<i>226","<:mate/d:MO$<i>243","xip/p:VERB","xip/l:schreiben","<>:xip/const:VERB#1449-1457$<i>233","<:xip/d:VMOD$<i>231","xip/d:VMAIN"],["s:während","i:während","_233#1459-1466","opennlp/p:KOUS","cnx/l:während","cnx/p:CS","cnx/syn:@PREMARK","tt/l:während","tt/p:KOUS","mate/l:während","mate/p:KOUS",">:mate/d:CP$<i>243","xip/p:ADJ","xip/l:währen","<>:xip/const:MC#1459-1531$<i>244<b>1","<>:xip/const:AP#1459-1466$<i>234<b>2","<>:xip/const:ADJ#1459-1466$<i>234",">:xip/d:VMOD$<i>242"],["s:im","i:im","_234#1467-1469","opennlp/p:APPRART","tt/l:im","tt/p:APPRART","mate/l:in","mate/p:APPRART","mate/m:case:dat","mate/m:number:sg","mate/m:gender:masc",">:mate/d:MO$<i>242","<:mate/d:NK$<i>235","xip/p:PREP","xip/l:in","<>:xip/const:PREP#1467-1469$<i>235","<>:xip/const:PP#1467-1475$<i>236<b>2"],["s:Namen","i:namen","_235#1470-1475","opennlp/p:NN","cnx/l:name","cnx/p:N","cnx/syn:@NH","<>:cnx/const:np#1470-1475$<i>236","tt/l:Name","tt/p:NN","mate/l:name","mate/p:NN","mate/m:case:dat","mate/m:number:sg","mate/m:gender:masc",">:mate/d:NK$<i>234","<:mate/d:AG$<i>237","xip/p:NOUN","xip/l:Name","<>:xip/const:NP#1470-1475$<i>236<b>3","<>:xip/const:NPA#1470-1475$<i>236<b>4","<>:xip/const:NOUN#1470-1475$<i>236","<:xip/d:NMOD$<i>237"],["s:der","i:der","_236#1476-1479","opennlp/p:ART","cnx/l:die","cnx/p:DET","cnx/syn:@PREMOD","tt/l:die","tt/p:ART","mate/l:der","mate/p:ART","mate/m:case:gen","mate/m:number:sg","mate/m:gender:fem",">:mate/d:NK$<i>237","xip/p:DET","xip/l:der","<>:xip/const:DET#1476-1479$<i>237","<>:xip/const:NP#1476-1491$<i>238<b>2",">:xip/d:DETERM$<i>237"],["s:Universität","i:universität","_237#1480-1491","opennlp/p:NN","cnx/l:universität","cnx/p:N","cnx/syn:@NH","<>:cnx/const:np#1480-1491$<i>238","tt/l:Universität","tt/p:NN","mate/l:universität","mate/p:NN","mate/m:case:gen","mate/m:number:sg","mate/m:gender:fem","<:mate/d:NK$<i>236",">:mate/d:AG$<i>235","<:mate/d:AG$<i>239","xip/p:NOUN","xip/l:Universität","<>:xip/const:NPA#1480-1491$<i>238<b>3","<>:xip/const:NOUN#1480-1491$<i>238","<:xip/d:DETERM$<i>236",">:xip/d:NMOD$<i>235","<:xip/d:NMOD$<i>239"],["s:der","i:der","_238#1492-1495","opennlp/p:ART","cnx/l:die","cnx/p:DET","cnx/syn:@PREMOD","tt/l:die","tt/p:ART","mate/l:der","mate/p:ART","mate/m:case:gen","mate/m:number:sg","mate/m:gender:fem",">:mate/d:NK$<i>239","xip/p:DET","xip/l:der","<>:xip/const:DET#1492-1495$<i>239","<>:xip/const:NP#1492-1501$<i>240<b>2",">:xip/d:DETERM$<i>239"],["s:Stadt","i:stadt","_239#1496-1501","opennlp/p:NN","cnx/l:stadt","cnx/p:N","cnx/syn:@NH","<>:cnx/const:np#1496-1501$<i>240","tt/l:Stadt","tt/p:NN","mate/l:stadt","mate/p:NN","mate/m:case:gen","mate/m:number:sg","mate/m:gender:fem","<:mate/d:NK$<i>238",">:mate/d:AG$<i>237","xip/p:NOUN","xip/l:Stadt","<>:xip/const:NPA#1496-1501$<i>240<b>3","<>:xip/const:NOUN#1496-1501$<i>240","<:xip/d:DETERM$<i>238",">:xip/d:NMOD$<i>237","<:xip/d:NMOD$<i>241"],["s:der","i:der","_240#1502-1505","opennlp/p:ART","cnx/l:der","cnx/p:DET","cnx/syn:@PREMOD","tt/l:die","tt/p:ART","mate/l:der","mate/p:ART","mate/m:case:gen","mate/m:number:sg","mate/m:gender:fem",">:mate/d:NK$<i>241","xip/p:DET","xip/l:der","<>:xip/const:NP#1502-1513$<i>242<b>2","<>:xip/const:DET#1502-1505$<i>241",">:xip/d:DETERM$<i>241"],["s:Digraph","i:digraph","_241#1506-1513","opennlp/p:NN","cnx/l:digraph","cnx/p:N","cnx/syn:@NH","<>:cnx/const:np#1506-1513$<i>242","tt/l:Digraph","tt/p:NN","mate/l:digraph","mate/p:NN","mate/m:case:gen","mate/m:number:sg","mate/m:gender:fem","<:mate/d:NK$<i>240",">:mate/d:SB$<i>243","xip/p:NOUN","xip/l:Digraph","<>:xip/const:NOUN#1506-1513$<i>242","<>:xip/const:NPA#1506-1513$<i>242<b>3","<:xip/d:DETERM$<i>240",">:xip/d:NMOD$<i>239"],["s:beibehalten","i:beibehalten","_242#1514-1525","opennlp/p:VVPP","cnx/l:beibehalten","cnx/p:V","cnx/m:INF","cnx/syn:@MAIN","tt/l:beibehalten","tt/p:VVPP","mate/l:beibehalten","mate/p:VVPP","<:mate/d:MO$<i>234",">:mate/d:OC$<i>243","<:mate/d:MO$<i>245","xip/p:VERB","xip/l:beibehalten","<>:xip/const:VERB#1514-1525$<i>243","<:xip/d:VMOD$<i>233",">:xip/d:AUXIL$<i>243","xip/d:VMAIN"],["s:wurde","i:wurde","_243#1526-1531","opennlp/p:VAFIN","cnx/l:werden","cnx/p:V","cnx/m:IND","cnx/m:PAST","cnx/syn:@AUX","tt/l:werden","tt/p:VAFIN","mate/l:werden","mate/p:VAFIN","mate/m:number:sg","mate/m:person:3","mate/m:tense:past","mate/m:mood:ind","<:mate/d:CP$<i>233","<:mate/d:SB$<i>241","<:mate/d:OC$<i>242",">:mate/d:MO$<i>232","xip/p:VERB","xip/l:werden","<>:xip/const:VERB#1526-1531$<i>244","<:xip/d:AUXIL$<i>242"],["s:Aarhus","i:aarhus","_244#1533-1539","opennlp/p:NE","corenlp/ne_dewac_175m_600:I-LOC","corenlp/ne_hgc_175m_600:I-LOC","cnx/l:Aarhus","cnx/p:N","cnx/m:Prop","cnx/syn:@PREMOD","<>:cnx/const:np#1533-1551$<i>246","tt/p:NE","mate/l:aarhus","mate/p:NE","mate/m:case:nom","mate/m:number:sg","mate/m:gender:*",">:mate/d:PNC$<i>245","xip/p:NOUN","xip/l:Aarhus","<>:xip/const:NOUN#1533-1539$<i>245","<>:xip/const:TOP#1533-1552$<i>245","<>:xip/const:NP#1533-1551$<i>246<b>1","<>:xip/const:NPA#1533-1551$<i>246<b>2","<>:xip/const:NOUN#1533-1551$<i>246<b>3"],["s:Universitet","i:universitet","_245#1540-1551","opennlp/p:NE","cnx/l:universitet","cnx/p:N","cnx/syn:@NH","tt/p:NE","mate/l:universitet","mate/p:NE","mate/m:case:nom","mate/m:number:sg","mate/m:gender:*","<:mate/d:PNC$<i>244",">:mate/d:MO$<i>242","xip/p:NOUN","xip/l:Universitet","<>:xip/const:NOUN#1540-1551$<i>246"]],"foundries":"xip xip#morpho xip#constituency xip#dependency treetagger treetagger#morpho connexor connexor#morpho connexor#syntax connexor#phrase base base#paragraphs mate mate#morpho mate#dependency corenlp corenlp#namedentities corenlp#namedentities#ne_dewac_175m_600 corenlp#namedentities corenlp#namedentities#ne_hgc_175m_600 opennlp opennlp#sentences opennlp#morpho","name":"tokens","tokenization":"opennlp#tokens"}],"pubDate":"20050328","textClass":"freizeit-unterhaltung,reisen","author":"","title":"Wikipedia","corpusID":"WPD","ID":"WPD_AAA.00002"}
\ No newline at end of file
diff --git a/trunk/src/test/resources/wiki/00002.json.gz b/trunk/src/test/resources/wiki/00002.json.gz
new file mode 100644
index 0000000..e8bc97f
--- /dev/null
+++ b/trunk/src/test/resources/wiki/00002.json.gz
Binary files differ
diff --git a/trunk/src/test/resources/wiki/00003.json b/trunk/src/test/resources/wiki/00003.json
new file mode 100644
index 0000000..1436c91
--- /dev/null
+++ b/trunk/src/test/resources/wiki/00003.json
@@ -0,0 +1 @@
+{"pubDate":"20050328","subTitle":"Die freie Enzyklopädie","author":"","textClass":"kultur,musik","ID":"WPD_AAA.00003","corpusID":"WPD","fields":[{"primaryData":"1. Chartplatzierungen 2. Singles Foghorn UK: 63 - 7. Februar 1998 - 1 Woche Number One UK: 47 - 11. April 1998 - 1 Woche Sing-a-long UK: 57 - 27. Juni 1998 - 1 Woche Summer on the underground UK: 72 - 24. Oktober 1998 - 1 Woche Old folks UK: 54 - 5. Juni 1999 - 1 Woche I love Lake Tahoe D: 70 - 6. März 2000 - 4 WochenUK: 59 - 21. August 1999 - 1 Woche Nothing D: 70 - 1. April 2002 - 5 WochenUK: 9 - 2. März 2002 - 6 Wochen Starbucks UK: 20 - 1. Juni 2002 - 3 Wochen Something's going on UK: 51 - 30. November 2002 - 1 Woche Good time UK: 23 - 8. Juni 2003 - 2 Wochen 3. Alben How ace are buildings UK: Number One UK: A vs. Monkey Kong D: 81 - 6. März 2000 - 3 WochenUK: Hi-Fi serious D: 29 - 15. April 2002 - 4 WochenUK: 19 A ist eine britische Rockband. Sie entstand aus 'Grand Design' welche von den Brüdern Jason, Adam und Giles Perry zusammen mit Mark Chapman und Steven Swindon 1995 in Suffolk gegründet worden war. Zu Anfang verdienten sie ihr Geld mit Jingles, also Wiedererkennungsmelodien. Und erst durch eine Reihe von Konzerten wurden sie 1996 im Londoner Kings Cross Splash Club entdeckt und von Lodon Records unter Vertrag genommen. Unter diesem Label nahmen sie \"How Ace Are Buildings\" auf, dass trotz einer Tour von 217 Konzerten nicht sonderlich erfolgreich war. So verließ 1997 Steve Swindon die Band und Dan P. Carter trat an seine Stelle. Mit neuer Besetzung ging man dann wieder ins Studio und nahm das 2te Album \"A vs. Monkey Kong\" auf (1999). Zwar lief es mit der Single \"I Love Lake Tahoe\" besser, aber 'A' blieben trotzdem ein Insider-Tipp. Die Promotiontour für \"A vs Monkey Kong\" absolvierte die Band größtenteils als Vorband der Bloodhound Gang, mit denen sie seitdem gut befreundet ist. Die Tour endete dann, sie waren gerade in Deutschland unterwegs, als Jason seine Stimme verlor und für einige Monate nicht singen durfte. Erst als das überwunden war gingen die Fünf wieder nach Brüssel wo sie mit Al Clay, der auch schon vorher viel mit ihnen gearbeitet hatte, 'Hi-Fi Serious' aufnahmen. Nach dem Live-Album 'Exit Stage Right' kam das neue Album 2002 auf den Markt und brachte den Erfolg. Die Single Nothing war Europaweit in den Charts und so war es der Band 2003 sogar möglich eine Tour durch Japan zu machen, wo sie ebenfalls viele Fans haben und auch ein zweites Live-Album veröffentlichten. Seit Ende 2003 ist die Band wieder im Studio um das nächste Album aufzunehmen. An ihrer Seite steht Terry Date als Producer, der schon mit den Deftones und Soundgarden zusammen gearbeitet hat. 4. Mitglieder 4.1. Jason Perry Jason Perry (* 29. Dezember 1969 in Suffolk) ist Sänger der Band. Während der Anfänge der Band produzierte er einige der Songs selbst und erstellte Remixe. Mittlerweile ist er verheiratet und Vater. 4.2. Mark Chapman Mark Chapman (* 17. Oktober 1969 in Suffolk) ist Gitarrist der Band. Er macht mit den anderen Mitgliedern der Band schon seit seinem 13. Lebensjahr zusammen Musik. 4.3. Giles Perry Giles Perry (* 15. Mai 1973) steht in der Band am Keyboard. Zu seinen Hobbies zählt unter anderem das drehen von Videos während der Tourneen, welche teilweise als DVDs veröffentlicht wurden. 4.4. Adam Perry Adam Perry (* 29. Dezember 1969 in Suffolk) ist Schlagzeuger der Band und als solcher bekannt unter dem Spitznamen 'The Yin'. Er ist der Zwillingsbruder von Jason Perry. 4.5. Dan P. Carter Dan P. Carter (* 17. November 1972) ersetzte 1997 Steve Swindon als Bassist der Band. Seine zweite Band heißt The Lucky Nine. 5. Ehemalige Mitglieder Steve Swindon (Bassist bis 1997) 6. Diskografie 1997: How ace are buildings 1998: Number one 2000: A vs. Monkey Kong 2002: Hi-Fi serious 7. Weblinks http://www.a-communication.com/ - Offizielle Website der Band (auf englisch) http://amagazin.takethepowerback.de/ - Inoffizielle Website über die Band (auf deutsch) http://www.howacearea.cjb.net/ - Inoffizille Website über die Band (auf englisch)"},{"foundries":"xip xip#morpho xip#constituency xip#dependency treetagger treetagger#morpho mate mate#morpho mate#dependency connexor connexor#morpho connexor#syntax connexor#phrase base base#paragraphs opennlp opennlp#sentences opennlp#morpho corenlp corenlp#namedentities corenlp#namedentities#ne_dewac_175m_600 corenlp#namedentities corenlp#namedentities#ne_hgc_175m_600","tokenization":"opennlp#tokens","data":[["s:1.","i:1.","_0#0-2","-:t$<i>642","<>:s#0-625$<i>119","-:s$<i>37","-:p$<i>28","opennlp/p:ADJA","cnx/l:1.","cnx/p:NUM","cnx/syn:@PREMOD","tt/l:1.","tt/p:ADJA","xip/p:NUM","xip/l:1.","<>:xip/const:TOP#0-44$<i>6","<>:xip/const:NP#0-21$<i>2<b>1","<>:xip/const:NPA#0-21$<i>2<b>2"],["s:Chartplatzierungen","i:chartplatzierungen","_1#3-21","opennlp/p:NN","cnx/l:chart","cnx/l:platzierung","cnx/p:N","cnx/m:PL","cnx/syn:@NH","<>:cnx/const:np#3-21$<i>2","tt/l:Chartplatzierung","tt/p:NN","mate/l:chartplatzierung","mate/p:NN","mate/m:case:nom","mate/m:number:pl","mate/m:gender:fem","xip/p:NOUN","xip/l:Chart","xip/l:Platzierung","xip/l:Chartplatzierung","<>:xip/const:NOUN#3-21$<i>2","xip/d:THEMA"],["s:2.","i:2.","_2#22-24","opennlp/p:ADJA","cnx/l:2.","cnx/p:NUM","cnx/syn:@PREMOD","tt/l:2.","tt/p:ADJA","xip/p:NUM","xip/l:2.","<>:xip/const:NP#22-32$<i>4<b>1","<>:xip/const:NPA#22-32$<i>4<b>2","<>:xip/const:NUM#22-24$<i>3"],["s:Singles","i:singles","_3#25-32","opennlp/p:NE","corenlp/ne_dewac_175m_600:I-ORG","corenlp/ne_hgc_175m_600:I-ORG","cnx/l:single","cnx/p:N","cnx/syn:@PREMOD","<>:cnx/const:np#25-43$<i>6","tt/l:Single","tt/p:NN","mate/l:single","mate/p:NN","mate/m:case:nom","mate/m:number:sg","mate/m:gender:neut","xip/p:NOUN","xip/l:Single","<>:xip/const:NOUN#25-32$<i>4","xip/d:THEMA"],["s:Foghorn","i:foghorn","_4#33-40","opennlp/p:NE","corenlp/ne_dewac_175m_600:I-ORG","corenlp/ne_hgc_175m_600:I-ORG","cnx/l:Foghorn","cnx/p:N","cnx/m:Prop","cnx/syn:@PREMOD","tt/p:NE","tt/p:NN","mate/l:foghorn","mate/p:NE","mate/m:case:nom","mate/m:number:sg","mate/m:gender:neut","xip/p:NOUN","xip/l:Foghorn","<>:xip/const:NOUN#33-40$<i>5","<>:xip/const:NP#33-43$<i>6<b>1","<>:xip/const:NPA#33-43$<i>6<b>2","<>:xip/const:NOUN#33-43$<i>6<b>3"],["s:UK","i:uk","_5#41-43","<>:p#41-75$<i>12","opennlp/p:NE","corenlp/ne_dewac_175m_600:I-ORG","corenlp/ne_hgc_175m_600:I-ORG","cnx/l:UK","cnx/p:N","cnx/m:Prop","cnx/syn:@NH","tt/l:UK","tt/p:NE","mate/l:uk","mate/p:NE","mate/m:case:nom","mate/m:number:sg","mate/m:gender:neut","<:mate/d:NK$<i>6","xip/p:NOUN","xip/l:UK","<>:xip/const:NOUN#41-43$<i>6"],["s:63","i:63","_6#45-47","opennlp/p:CARD","cnx/l:63","cnx/p:NUM","cnx/syn:@NH","tt/l:63","tt/p:CARD","mate/l:63","mate/p:CARD",">:mate/d:NK$<i>5","xip/p:NUM","xip/l:63","<>:xip/const:NUM#45-47$<i>7","<>:xip/const:TOP#45-90$<i>15","<>:xip/const:NP#45-47$<i>7<b>1","<>:xip/const:NPA#45-47$<i>7<b>2","<>:xip/const:NUM#45-47$<i>7<b>3","xip/d:DATE","xip/d:THEMA"],["s:7.","i:7.","_7#50-52","opennlp/p:ADJA","cnx/l:7.","cnx/p:NUM","cnx/m:ORD","cnx/syn:@PREMOD","<>:cnx/const:np#50-60$<i>9","tt/l:7.","tt/p:ADJA","xip/p:NUM","xip/l:7.","<>:xip/const:INS#48-67$<i>10<b>1","<>:xip/const:NP#50-65$<i>10<b>2","<>:xip/const:NPA#50-65$<i>10<b>3","<>:xip/const:NOUN#50-65$<i>10<b>4","<>:xip/const:NUM#50-52$<i>8"],["s:Februar","i:februar","_8#53-60","opennlp/p:NN","cnx/l:februar","cnx/p:N","cnx/syn:@NH","tt/l:Februar","tt/p:NN","mate/l:februar","mate/p:NN","mate/m:case:dat","mate/m:number:sg","mate/m:gender:masc","<:mate/d:NK$<i>9","xip/p:NOUN","xip/l:Februar","<>:xip/const:NOUN#53-60$<i>9"],["s:1998","i:1998","_9#61-65","opennlp/p:CARD","cnx/l:1998","cnx/p:NUM","cnx/syn:@NH","tt/l:1998","tt/p:CARD","mate/l:1998","mate/p:CARD",">:mate/d:NK$<i>8","xip/p:NUM","xip/l:1998","<>:xip/const:NUM#61-65$<i>10"],["s:1","i:1","_10#68-69","opennlp/p:CARD","cnx/l:1","cnx/p:NUM","cnx/syn:@PREMOD","tt/l:1","tt/p:CARD","mate/l:1","mate/p:CARD",">:mate/d:NK$<i>11","xip/p:NUM","xip/l:1","<>:xip/const:NUM#68-69$<i>11","<>:xip/const:NP#68-75$<i>12<b>1","<>:xip/const:NPA#68-75$<i>12<b>2","<>:xip/const:NUM#68-69$<i>11<b>3",">:xip/d:NMOD$<i>11"],["s:Woche","i:woche","_11#70-75","opennlp/p:NN","cnx/l:woche","cnx/p:N","cnx/syn:@PREMOD","<>:cnx/const:np#70-89$<i>15","tt/l:Woche","tt/p:NN","mate/l:woche","mate/p:NN","mate/m:case:acc","mate/m:number:sg","mate/m:gender:fem","<:mate/d:NK$<i>10","xip/p:NOUN","xip/l:Woche","<>:xip/const:NOUN#70-75$<i>12","<:xip/d:NMOD$<i>10","xip/d:THEMA"],["s:Number","i:number","_12#76-82","opennlp/p:NN","corenlp/ne_dewac_175m_600:I-ORG","corenlp/ne_hgc_175m_600:I-ORG","cnx/l:Number","cnx/p:N","cnx/m:Prop","cnx/syn:@PREMOD","tt/p:NE","mate/l:number","mate/p:NE","mate/m:case:nom","mate/m:number:sg","mate/m:gender:masc",">:mate/d:PNC$<i>13","xip/p:NOUN","xip/l:Number","<>:xip/const:NOUN#76-82$<i>13","<>:xip/const:NP#76-89$<i>15<b>1","<>:xip/const:NPA#76-89$<i>15<b>2","<>:xip/const:NOUN#76-89$<i>15<b>3"],["s:One","i:one","_13#83-86","opennlp/p:NE","corenlp/ne_dewac_175m_600:I-ORG","corenlp/ne_hgc_175m_600:I-ORG","cnx/l:One","cnx/p:N","cnx/m:Prop","cnx/syn:@PREMOD","tt/l:One","tt/p:FM","mate/l:one","mate/p:NE","mate/m:case:nom","mate/m:number:sg","mate/m:gender:masc","<:mate/d:PNC$<i>12","xip/p:NOUN","xip/l:One","<>:xip/const:NOUN#83-86$<i>14"],["s:UK","i:uk","_14#87-89","<>:p#87-120$<i>21","opennlp/p:NE","corenlp/ne_dewac_175m_600:I-ORG","corenlp/ne_hgc_175m_600:I-ORG","cnx/l:UK","cnx/p:N","cnx/m:Prop","cnx/syn:@NH","tt/l:UK","tt/p:NE","mate/l:uk","mate/p:NE","mate/m:case:nom","mate/m:number:sg","mate/m:gender:neut","<:mate/d:NK$<i>15","xip/p:NOUN","xip/l:UK","<>:xip/const:NOUN#87-89$<i>15"],["s:47","i:47","_15#91-93","opennlp/p:CARD","cnx/l:47","cnx/p:NUM","cnx/syn:@NH","tt/l:47","tt/p:CARD","mate/l:47","mate/p:CARD",">:mate/d:NK$<i>14","xip/p:NUM","xip/l:47","<>:xip/const:TOP#91-136$<i>23","<>:xip/const:NP#91-93$<i>16<b>1","<>:xip/const:NPA#91-93$<i>16<b>2","<>:xip/const:NUM#91-93$<i>16<b>3","<>:xip/const:NUM#91-93$<i>16","xip/d:DATE","xip/d:THEMA","xip/d:TIME"],["s:11.","i:11.","_16#96-99","opennlp/p:ADJA","cnx/l:11.","cnx/p:NUM","cnx/m:ORD","cnx/syn:@PREMOD","<>:cnx/const:np#96-105$<i>18","tt/l:11.","tt/p:ADJA","xip/p:NUM","xip/l:11.","<>:xip/const:INS#94-112$<i>19<b>1","<>:xip/const:NP#96-110$<i>19<b>2","<>:xip/const:NPA#96-110$<i>19<b>3","<>:xip/const:NOUN#96-110$<i>19<b>4","<>:xip/const:NUM#96-99$<i>17"],["s:April","i:april","_17#100-105","opennlp/p:NN","cnx/l:april","cnx/p:N","cnx/syn:@NH","tt/l:April","tt/p:NN","mate/l:april","mate/p:NN","mate/m:case:nom","mate/m:number:sg","mate/m:gender:masc","<:mate/d:NK$<i>18","xip/p:NOUN","xip/l:April","<>:xip/const:NOUN#100-105$<i>18"],["s:1998","i:1998","_18#106-110","opennlp/p:CARD","cnx/l:1998","cnx/p:NUM","cnx/syn:@NH","tt/l:1998","tt/p:CARD","mate/l:1998","mate/p:CARD",">:mate/d:NK$<i>17","xip/p:NUM","xip/l:1998","<>:xip/const:NUM#106-110$<i>19"],["s:1","i:1","_19#113-114","opennlp/p:CARD","cnx/l:1","cnx/p:NUM","cnx/syn:@PREMOD","tt/l:1","tt/p:CARD","mate/l:1","mate/p:CARD",">:mate/d:NK$<i>20","xip/p:NUM","xip/l:1","<>:xip/const:NUM#113-114$<i>20","<>:xip/const:NP#113-120$<i>21<b>1","<>:xip/const:NPA#113-120$<i>21<b>2","<>:xip/const:NUM#113-114$<i>20<b>3",">:xip/d:NMOD$<i>20"],["s:Woche","i:woche","_20#115-120","opennlp/p:NN","cnx/l:woche","cnx/p:N","cnx/syn:@PREMOD","<>:cnx/const:np#115-135$<i>23","tt/l:Woche","tt/p:NN","mate/l:woche","mate/p:NN","mate/m:case:acc","mate/m:number:sg","mate/m:gender:fem","<:mate/d:NK$<i>19","xip/p:NOUN","xip/l:Woche","<>:xip/const:NOUN#115-120$<i>21","<:xip/d:NMOD$<i>19","xip/d:THEMA","<:xip/d:NMOD$<i>22"],["s:Sing-a-long","i:sing-a-long","_21#121-132","opennlp/p:NE","corenlp/ne_dewac_175m_600:I-ORG","corenlp/ne_hgc_175m_600:I-ORG","cnx/l:Sing-a-long","cnx/p:N","cnx/m:Prop","cnx/syn:@PREMOD","tt/p:NE","tt/p:NN","mate/l:sing-a-long","mate/p:NE","mate/m:case:nom","mate/m:number:sg","mate/m:gender:neut","xip/p:ADJ","xip/l:Sing-a-long","<>:xip/const:NP#121-135$<i>23<b>1","<>:xip/const:NPA#121-135$<i>23<b>2","<>:xip/const:AP#121-132$<i>22<b>3","<>:xip/const:ADJ#121-132$<i>22",">:xip/d:NMOD$<i>22"],["s:UK","i:uk","_22#133-135","<>:p#133-165$<i>29","opennlp/p:NE","corenlp/ne_dewac_175m_600:I-ORG","corenlp/ne_hgc_175m_600:I-ORG","cnx/l:UK","cnx/p:N","cnx/m:Prop","cnx/syn:@NH","tt/l:UK","tt/p:NE","mate/l:uk","mate/p:NE","mate/m:case:nom","mate/m:number:sg","mate/m:gender:neut","<:mate/d:NK$<i>23","xip/p:NOUN","xip/l:UK","<>:xip/const:NOUN#133-135$<i>23","<:xip/d:NMOD$<i>21",">:xip/d:NMOD$<i>20","xip/d:PERSON"],["s:57","i:57","_23#137-139","opennlp/p:CARD","cnx/l:57","cnx/p:NUM","cnx/syn:@NH","tt/l:@card@","tt/p:CARD","mate/l:57","mate/p:CARD",">:mate/d:NK$<i>22","xip/p:NUM","xip/l:57","<>:xip/const:NUM#137-139$<i>24","<>:xip/const:TOP#137-195$<i>34","<>:xip/const:NP#137-139$<i>24<b>1","<>:xip/const:NPA#137-139$<i>24<b>2","<>:xip/const:NUM#137-139$<i>24<b>3","xip/d:DATE","xip/d:THEMA","xip/d:TIME"],["s:27.","i:27.","_24#142-145","opennlp/p:ADJA","cnx/l:27.","cnx/p:NUM","cnx/m:ORD","cnx/syn:@PREMOD","<>:cnx/const:np#142-150$<i>26","tt/l:27.","tt/p:ADJA","xip/p:NUM","xip/l:27.","<>:xip/const:NUM#142-145$<i>25","<>:xip/const:INS#140-157$<i>27<b>1","<>:xip/const:NP#142-155$<i>27<b>2","<>:xip/const:NPA#142-155$<i>27<b>3","<>:xip/const:NOUN#142-155$<i>27<b>4"],["s:Juni","i:juni","_25#146-150","opennlp/p:NN","cnx/l:juni","cnx/p:N","cnx/syn:@NH","tt/l:Juni","tt/p:NN","mate/l:juni","mate/p:NN","mate/m:case:*","mate/m:number:sg","mate/m:gender:masc","<:mate/d:NK$<i>26","xip/p:NOUN","xip/l:Juni","<>:xip/const:NOUN#146-150$<i>26"],["s:1998","i:1998","_26#151-155","opennlp/p:CARD","cnx/l:1998","cnx/p:NUM","cnx/syn:@NH","tt/l:1998","tt/p:CARD","mate/l:1998","mate/p:CARD",">:mate/d:NK$<i>25","xip/p:NUM","xip/l:1998","<>:xip/const:NUM#151-155$<i>27"],["s:1","i:1","_27#158-159","opennlp/p:CARD","cnx/l:1","cnx/p:NUM","cnx/syn:@PREMOD","tt/l:1","tt/p:CARD","mate/l:1","mate/p:CARD",">:mate/d:NK$<i>28","xip/p:NUM","xip/l:1","<>:xip/const:NP#158-165$<i>29<b>1","<>:xip/const:NPA#158-165$<i>29<b>2","<>:xip/const:NUM#158-159$<i>28<b>3","<>:xip/const:NUM#158-159$<i>28",">:xip/d:NMOD$<i>28"],["s:Woche","i:woche","_28#160-165","opennlp/p:NN","cnx/l:woche","cnx/p:N","cnx/syn:@PREMOD","<>:cnx/const:np#160-172$<i>30","tt/l:Woche","tt/p:NN","mate/l:woche","mate/p:NN","mate/m:case:acc","mate/m:number:sg","mate/m:gender:fem","<:mate/d:NK$<i>27","xip/p:NOUN","xip/l:Woche","<>:xip/const:NOUN#160-165$<i>29","<:xip/d:NMOD$<i>27","xip/d:THEMA","<:xip/d:NMOD$<i>29"],["s:Summer","i:summer","_29#166-172","opennlp/p:NE","corenlp/ne_dewac_175m_600:I-ORG","cnx/l:Summer","cnx/p:N","cnx/m:Prop","cnx/syn:@NH","tt/l:Summer","tt/p:NN","mate/l:summer","mate/p:FM",">:mate/d:SB$<i>30","xip/p:NOUN","xip/l:Summer","<>:xip/const:NP#166-172$<i>30<b>1","<>:xip/const:NPA#166-172$<i>30<b>2","<>:xip/const:NOUN#166-172$<i>30",">:xip/d:NMOD$<i>28"],["s:on","i:on","_30#173-175","opennlp/p:NE","corenlp/ne_dewac_175m_600:I-ORG","cnx/l:on","cnx/p:ADV","cnx/syn:@ADVL","tt/l:on","tt/p:FM","mate/l:on","mate/p:FM","<:mate/d:SB$<i>29","<:mate/d:UC$<i>31","<:mate/d:OA$<i>32","xip/p:ADV","xip/l:on","<>:xip/const:ADV#173-175$<i>31"],["s:the","i:the","_31#176-179","opennlp/p:NE","corenlp/ne_dewac_175m_600:I-ORG","cnx/l:the","cnx/p:N","cnx/syn:@PREMOD","<>:cnx/const:np#176-194$<i>34","tt/l:the","tt/p:FM","mate/l:The","mate/p:FM",">:mate/d:UC$<i>30","xip/p:NOUN","xip/l:the","<>:xip/const:NOUN#176-179$<i>32","<>:xip/const:NP#176-179$<i>32<b>1","<>:xip/const:NPA#176-179$<i>32<b>2"],["s:underground","i:underground","_32#180-191","opennlp/p:NE","corenlp/ne_dewac_175m_600:I-ORG","cnx/l:underground","cnx/p:N","cnx/syn:@NH","tt/p:NE","tt/l:Underground","tt/p:NN","mate/l:underground","mate/p:FM",">:mate/d:OA$<i>30","xip/p:ADV","xip/l:underground","<>:xip/const:ADV#180-191$<i>33"],["s:UK","i:uk","_33#192-194","<>:p#192-227$<i>40","opennlp/p:NE","corenlp/ne_dewac_175m_600:I-ORG","cnx/l:UK","cnx/p:N","cnx/m:Prop","cnx/syn:@NH","tt/l:UK","tt/p:NE","mate/l:uk","mate/p:NE","mate/m:case:nom","mate/m:number:sg","mate/m:gender:neut","<:mate/d:NK$<i>34","xip/p:NOUN","xip/l:UK","<>:xip/const:NOUN#192-194$<i>34","<>:xip/const:NP#192-194$<i>34<b>1","<>:xip/const:NPA#192-194$<i>34<b>2","xip/d:PERSON","xip/d:THEMA"],["s:72","i:72","_34#196-198","opennlp/p:CARD","cnx/l:72","cnx/p:NUM","cnx/syn:@NH","tt/l:72","tt/p:CARD","mate/l:72","mate/p:CARD",">:mate/d:NK$<i>33","xip/p:NUM","xip/l:72","<>:xip/const:TOP#196-241$<i>43","<>:xip/const:NP#196-198$<i>35<b>1","<>:xip/const:NPA#196-198$<i>35<b>2","<>:xip/const:NUM#196-198$<i>35<b>3","<>:xip/const:NUM#196-198$<i>35","xip/d:DATE","xip/d:THEMA"],["s:24.","i:24.","_35#201-204","opennlp/p:ADJA","cnx/l:24.","cnx/p:NUM","cnx/m:ORD","cnx/syn:@PREMOD","<>:cnx/const:np#201-212$<i>37","tt/l:24.","tt/p:ADJA","xip/p:NUM","xip/l:24.","<>:xip/const:NUM#201-204$<i>36","<>:xip/const:INS#199-219$<i>38<b>1","<>:xip/const:NP#201-217$<i>38<b>2","<>:xip/const:NPA#201-217$<i>38<b>3","<>:xip/const:NOUN#201-217$<i>38<b>4"],["s:Oktober","i:oktober","_36#205-212","opennlp/p:NN","cnx/l:oktober","cnx/p:N","cnx/syn:@NH","tt/l:Oktober","tt/p:NN","mate/l:oktober","mate/p:NN","mate/m:case:*","mate/m:number:sg","mate/m:gender:masc","<:mate/d:NK$<i>37","xip/p:NOUN","xip/l:Oktober","<>:xip/const:NOUN#205-212$<i>37"],["s:1998","i:1998","_37#213-217","opennlp/p:CARD","cnx/l:1998","cnx/p:NUM","cnx/syn:@NH","tt/l:1998","tt/p:CARD","mate/l:1998","mate/p:CARD",">:mate/d:NK$<i>36","xip/p:NUM","xip/l:1998","<>:xip/const:NUM#213-217$<i>38"],["s:1","i:1","_38#220-221","opennlp/p:CARD","cnx/l:1","cnx/p:NUM","cnx/syn:@PREMOD","tt/l:1","tt/p:CARD","mate/l:1","mate/p:CARD",">:mate/d:NK$<i>39","xip/p:NUM","xip/l:1","<>:xip/const:NUM#220-221$<i>39","<>:xip/const:NP#220-227$<i>40<b>1","<>:xip/const:NPA#220-227$<i>40<b>2","<>:xip/const:NUM#220-221$<i>39<b>3",">:xip/d:NMOD$<i>39"],["s:Woche","i:woche","_39#222-227","opennlp/p:NN","cnx/l:woche","cnx/p:N","cnx/syn:@PREMOD","<>:cnx/const:np#222-231$<i>41","tt/l:Woche","tt/p:NN","mate/l:woche","mate/p:NN","mate/m:case:acc","mate/m:number:sg","mate/m:gender:fem","<:mate/d:NK$<i>38","xip/p:NOUN","xip/l:Woche","<>:xip/const:NOUN#222-227$<i>40","<:xip/d:NMOD$<i>38","xip/d:THEMA","<:xip/d:NMOD$<i>40"],["s:Old","i:old","_40#228-231","opennlp/p:NE","corenlp/ne_dewac_175m_600:I-ORG","corenlp/ne_hgc_175m_600:I-ORG","cnx/l:Old","cnx/p:N","cnx/m:Prop","cnx/syn:@NH","tt/p:NE","mate/l:old","mate/p:XY","mate/m:case:*","mate/m:number:*","mate/m:gender:*","xip/p:NOUN","xip/l:Old","<>:xip/const:NP#228-231$<i>41<b>1","<>:xip/const:NPA#228-231$<i>41<b>2","<>:xip/const:NOUN#228-231$<i>41",">:xip/d:NMOD$<i>39"],["s:folks","i:folks","_41#232-237","opennlp/p:NE","corenlp/ne_dewac_175m_600:I-ORG","corenlp/ne_hgc_175m_600:I-ORG","cnx/l:folk","cnx/p:N","cnx/syn:@PREMOD","<>:cnx/const:np#232-240$<i>43","tt/p:NE","tt/l:Folk","tt/p:NN","mate/l:folk","mate/p:XY","mate/m:case:nom","mate/m:number:sg","mate/m:gender:*","xip/p:ADV","xip/l:folks","<>:xip/const:ADV#232-237$<i>42"],["s:UK","i:uk","_42#238-240","<>:p#238-269$<i>49","opennlp/p:NE","corenlp/ne_dewac_175m_600:I-ORG","corenlp/ne_hgc_175m_600:I-ORG","cnx/l:UK","cnx/p:N","cnx/m:Prop","cnx/syn:@NH","tt/l:UK","tt/p:NE","mate/l:uk","mate/p:NE","mate/m:case:nom","mate/m:number:sg","mate/m:gender:neut","<:mate/d:NK$<i>43","xip/p:NOUN","xip/l:UK","<>:xip/const:NP#238-240$<i>43<b>1","<>:xip/const:NPA#238-240$<i>43<b>2","<>:xip/const:NOUN#238-240$<i>43","xip/d:PERSON","xip/d:THEMA"],["s:54","i:54","_43#242-244","opennlp/p:CARD","cnx/l:54","cnx/p:NUM","cnx/syn:@NH","tt/l:54","tt/p:CARD","mate/l:54","mate/p:CARD",">:mate/d:NK$<i>42","xip/p:NUM","xip/l:54","<>:xip/const:NUM#242-244$<i>44","<>:xip/const:TOP#242-290$<i>54","<>:xip/const:NP#242-244$<i>44<b>1","<>:xip/const:NPA#242-244$<i>44<b>2","<>:xip/const:NUM#242-244$<i>44<b>3","xip/d:DATE","xip/d:THEMA","xip/d:TIME"],["s:5.","i:5.","_44#247-249","opennlp/p:ADJA","cnx/l:5.","cnx/p:NUM","cnx/m:ORD","cnx/syn:@PREMOD","<>:cnx/const:np#247-254$<i>46","tt/l:5.","tt/p:ADJA","xip/p:NUM","xip/l:5.","<>:xip/const:NUM#247-249$<i>45","<>:xip/const:INS#245-261$<i>47<b>1","<>:xip/const:NP#247-259$<i>47<b>2","<>:xip/const:NPA#247-259$<i>47<b>3","<>:xip/const:NOUN#247-259$<i>47<b>4"],["s:Juni","i:juni","_45#250-254","opennlp/p:NN","cnx/l:juni","cnx/p:N","cnx/syn:@NH","tt/l:Juni","tt/p:NN","mate/l:juni","mate/p:NN","<:mate/d:NK$<i>46","xip/p:NOUN","xip/l:Juni","<>:xip/const:NOUN#250-254$<i>46"],["s:1999","i:1999","_46#255-259","opennlp/p:CARD","cnx/l:1999","cnx/p:NUM","cnx/syn:@NH","tt/l:1999","tt/p:CARD","mate/l:1999","mate/p:CARD",">:mate/d:NK$<i>45","xip/p:NUM","xip/l:1999","<>:xip/const:NUM#255-259$<i>47"],["s:1","i:1","_47#262-263","opennlp/p:CARD","cnx/l:1","cnx/p:NUM","cnx/syn:@PREMOD","tt/l:1","tt/p:CARD","mate/l:1","mate/p:CARD",">:mate/d:NK$<i>48","xip/p:NUM","xip/l:1","<>:xip/const:NUM#262-263$<i>48","<>:xip/const:NP#262-269$<i>49<b>1","<>:xip/const:NPA#262-269$<i>49<b>2","<>:xip/const:NUM#262-263$<i>48<b>3",">:xip/d:NMOD$<i>48"],["s:Woche","i:woche","_48#264-269","opennlp/p:NN","cnx/l:woche","cnx/p:N","cnx/syn:@NH","<>:cnx/const:np#264-269$<i>49","tt/l:Woche","tt/p:NN","mate/l:woche","mate/p:NN","mate/m:case:acc","mate/m:number:sg","mate/m:gender:fem","<:mate/d:NK$<i>47","xip/p:NOUN","xip/l:Woche","<>:xip/const:NOUN#264-269$<i>49","<:xip/d:NMOD$<i>47","xip/d:THEMA","<:xip/d:NMOD$<i>49"],["s:I","i:i","_49#270-271","opennlp/p:CARD","cnx/l:I","cnx/p:N","cnx/syn:@PREMOD","<>:cnx/const:np#270-289$<i>54","tt/l:I","tt/p:FM","mate/l:I","mate/p:FM","<:mate/d:UC$<i>50","<:mate/d:UC$<i>51","<:mate/d:UC$<i>52","xip/p:SYMBOL","xip/l:I","<>:xip/const:SYMBOL#270-271$<i>50","<>:xip/const:NP#270-271$<i>50<b>1","<>:xip/const:NPA#270-271$<i>50<b>2","<>:xip/const:NOUN#270-271$<i>50<b>3",">:xip/d:NMOD$<i>48"],["s:love","i:love","_50#272-276","opennlp/p:ADJA","cnx/l:love","cnx/p:N","cnx/syn:@PREMOD","tt/l:love","tt/p:FM","mate/p:FM",">:mate/d:UC$<i>49","xip/p:ADV","xip/l:love","<>:xip/const:ADV#272-276$<i>51"],["s:Lake","i:lake","_51#277-281","opennlp/p:NN","corenlp/ne_dewac_175m_600:I-ORG","cnx/l:Lake","cnx/p:N","cnx/m:Prop","cnx/syn:@PREMOD","tt/l:Lake","tt/p:NN","mate/l:lake","mate/p:FM",">:mate/d:UC$<i>49","xip/p:NOUN","xip/l:Lake","<>:xip/const:NP#277-281$<i>52<b>1","<>:xip/const:NPA#277-281$<i>52<b>2","<>:xip/const:NOUN#277-281$<i>52"],["s:Tahoe","i:tahoe","_52#282-287","opennlp/p:NE","corenlp/ne_dewac_175m_600:I-ORG","cnx/l:Tahoe","cnx/p:N","cnx/m:Prop","cnx/syn:@PREMOD","tt/p:NE","mate/l:tahoe","mate/p:FM",">:mate/d:UC$<i>49","xip/p:NOUN","xip/l:Tahoe","<>:xip/const:NOUN#282-287$<i>53","<>:xip/const:NP#282-289$<i>54<b>1","<>:xip/const:NPA#282-289$<i>54<b>2","<>:xip/const:NOUN#282-289$<i>54<b>3"],["s:D","i:d","_53#288-289","<>:p#288-353$<i>66","opennlp/p:NE","corenlp/ne_dewac_175m_600:I-ORG","cnx/l:D","cnx/p:N","cnx/syn:@NH","tt/l:D","tt/p:NN","mate/l:D","mate/p:XY","xip/p:NUM","xip/l:D","<>:xip/const:NUM#288-289$<i>54"],["s:70","i:70","_54#291-293","opennlp/p:CARD","cnx/l:70","cnx/p:NUM","cnx/syn:@NH","tt/l:70","tt/p:CARD","mate/l:70","mate/p:CARD","xip/p:NUM","xip/l:70","<>:xip/const:NUM#291-293$<i>55","<>:xip/const:TOP#291-322$<i>60","<>:xip/const:NP#291-293$<i>55<b>1","<>:xip/const:NPA#291-293$<i>55<b>2","<>:xip/const:NUM#291-293$<i>55<b>3","xip/d:DATE","xip/d:THEMA"],["s:6.","i:6.","_55#296-298","opennlp/p:ADJA","cnx/l:6.","cnx/p:NUM","cnx/m:ORD","cnx/syn:@PREMOD","<>:cnx/const:np#296-303$<i>57","tt/l:6.","tt/p:ADJA","xip/p:NUM","xip/l:6.","<>:xip/const:NUM#296-298$<i>56","<>:xip/const:INS#294-310$<i>58<b>1","<>:xip/const:NP#296-308$<i>58<b>2","<>:xip/const:NPA#296-308$<i>58<b>3","<>:xip/const:NOUN#296-308$<i>58<b>4"],["s:März","i:märz","_56#299-303","opennlp/p:NN","cnx/l:märz","cnx/p:N","cnx/syn:@NH","tt/l:März","tt/p:NN","mate/l:märz","mate/p:NN","xip/p:NOUN","xip/l:März","<>:xip/const:NOUN#299-303$<i>57"],["s:2000","i:2000","_57#304-308","opennlp/p:CARD","cnx/l:2000","cnx/p:NUM","cnx/syn:@NH","tt/l:2000","tt/p:CARD","mate/l:2000","mate/p:CARD","xip/p:NUM","xip/l:2000","<>:xip/const:NUM#304-308$<i>58"],["s:4","i:4","_58#311-312","opennlp/p:CARD","cnx/l:4","cnx/p:NUM","cnx/syn:@PREMOD","tt/l:4","tt/p:CARD","mate/l:4","mate/p:CARD","xip/p:NUM","xip/l:4","<>:xip/const:NP#311-321$<i>60<b>1","<>:xip/const:NPA#311-321$<i>60<b>2","<>:xip/const:NUM#311-312$<i>59<b>3","<>:xip/const:NUM#311-312$<i>59",">:xip/d:NMOD$<i>59"],["s:WochenUK","i:wochenuk","_59#313-321","opennlp/p:NN","cnx/l:Wochenuk","cnx/p:N","cnx/m:Prop","cnx/syn:@NH","<>:cnx/const:np#313-321$<i>60","tt/p:NN","mate/l:wochenuk","mate/p:NN","mate/m:case:nom","mate/m:number:sg","mate/m:gender:neut","xip/p:NOUN","xip/l:WochenUK","<>:xip/const:NOUN#313-321$<i>60","<:xip/d:NMOD$<i>58","xip/d:THEMA"],["s:59","i:59","_60#323-325","opennlp/p:CARD","cnx/l:59","cnx/p:NUM","cnx/syn:@NH","tt/l:59","tt/p:CARD","mate/l:59","mate/p:CARD","xip/p:NUM","xip/l:59","<>:xip/const:NUM#323-325$<i>61","<>:xip/const:TOP#323-364$<i>68","<>:xip/const:NP#323-325$<i>61<b>1","<>:xip/const:NPA#323-325$<i>61<b>2","<>:xip/const:NUM#323-325$<i>61<b>3","xip/d:DATE","xip/d:THEMA","xip/d:TIME"],["s:21.","i:21.","_61#328-331","opennlp/p:ADJA","cnx/l:21.","cnx/p:NUM","cnx/m:ORD","cnx/syn:@PREMOD","<>:cnx/const:np#328-338$<i>63","tt/l:21.","tt/p:ADJA","xip/p:NUM","xip/l:21.","<>:xip/const:INS#326-345$<i>64<b>1","<>:xip/const:NP#328-343$<i>64<b>2","<>:xip/const:NPA#328-343$<i>64<b>3","<>:xip/const:NOUN#328-343$<i>64<b>4","<>:xip/const:NUM#328-331$<i>62"],["s:August","i:august","_62#332-338","opennlp/p:NN","cnx/l:august","cnx/p:N","cnx/syn:@NH","tt/l:August","tt/p:NN","mate/l:august","mate/p:NN","mate/m:case:nom","mate/m:number:sg","mate/m:gender:masc","xip/p:NOUN","xip/l:August","<>:xip/const:NOUN#332-338$<i>63"],["s:1999","i:1999","_63#339-343","opennlp/p:CARD","cnx/l:1999","cnx/p:NUM","cnx/syn:@NH","tt/l:1999","tt/p:CARD","mate/l:1999","mate/p:CARD","xip/p:NUM","xip/l:1999","<>:xip/const:NUM#339-343$<i>64"],["s:1","i:1","_64#346-347","opennlp/p:CARD","cnx/l:1","cnx/p:NUM","cnx/syn:@PREMOD","tt/l:1","tt/p:CARD","mate/l:1","mate/p:CARD","xip/p:NUM","xip/l:1","<>:xip/const:NUM#346-347$<i>65","<>:xip/const:NP#346-353$<i>66<b>1","<>:xip/const:NPA#346-353$<i>66<b>2","<>:xip/const:NUM#346-347$<i>65<b>3",">:xip/d:NMOD$<i>65"],["s:Woche","i:woche","_65#348-353","opennlp/p:NN","cnx/l:woche","cnx/p:N","cnx/syn:@NH","<>:cnx/const:np#348-353$<i>66","tt/l:Woche","tt/p:NN","mate/l:woche","mate/p:NN","mate/m:case:acc","mate/m:number:sg","mate/m:gender:fem","xip/p:NOUN","xip/l:Woche","<>:xip/const:NOUN#348-353$<i>66","<:xip/d:NMOD$<i>64","xip/d:THEMA","<:xip/d:NMOD$<i>66"],["s:Nothing","i:nothing","_66#354-361","opennlp/p:NN","cnx/l:not","cnx/l:hängen","cnx/p:V","cnx/m:IND","cnx/m:PAST","cnx/syn:@MAIN","tt/l:nothängen","tt/p:VVFIN","mate/p:NE","mate/m:case:nom","mate/m:number:sg","mate/m:gender:*","xip/p:NOUN","xip/l:Nothing","<>:xip/const:NP#354-361$<i>67<b>1","<>:xip/const:NPA#354-361$<i>67<b>2","<>:xip/const:NOUN#354-361$<i>67","xip/d:LOC",">:xip/d:NMOD$<i>65"],["s:D","i:d","_67#362-363","<>:p#362-425$<i>80","opennlp/p:NN","cnx/l:D","cnx/p:N","cnx/syn:@NH","<>:cnx/const:np#362-363$<i>68","tt/l:D","tt/p:NN","mate/l:D","mate/p:XY","xip/p:SYMBOL","xip/l:D","<>:xip/const:NP#362-363$<i>68<b>1","<>:xip/const:NPA#362-363$<i>68<b>2","<>:xip/const:NOUN#362-363$<i>68<b>3","<>:xip/const:SYMBOL#362-363$<i>68","xip/d:THEMA"],["s:70","i:70","_68#365-367","opennlp/p:CARD","cnx/l:70","cnx/p:NUM","cnx/syn:@NH","tt/l:70","tt/p:CARD","mate/l:70","mate/p:CARD","xip/p:NUM","xip/l:70","<>:xip/const:NUM#365-367$<i>69","<>:xip/const:TOP#365-397$<i>74","<>:xip/const:NP#365-367$<i>69<b>1","<>:xip/const:NPA#365-367$<i>69<b>2","<>:xip/const:NUM#365-367$<i>69<b>3","xip/d:DATE","xip/d:THEMA"],["s:1.","i:1.","_69#370-372","opennlp/p:ADJA","cnx/l:1.","cnx/p:NUM","cnx/m:ORD","cnx/syn:@PREMOD","<>:cnx/const:np#370-378$<i>71","tt/l:1.","tt/p:ADJA","xip/p:NUM","xip/l:1.","<>:xip/const:NUM#370-372$<i>70","<>:xip/const:INS#368-385$<i>72<b>1","<>:xip/const:NP#370-383$<i>72<b>2","<>:xip/const:NPA#370-383$<i>72<b>3","<>:xip/const:NOUN#370-383$<i>72<b>4"],["s:April","i:april","_70#373-378","opennlp/p:NN","cnx/l:april","cnx/p:N","cnx/syn:@NH","tt/l:April","tt/p:NN","mate/l:april","mate/p:NN","mate/m:case:nom","mate/m:number:sg","mate/m:gender:masc","xip/p:NOUN","xip/l:April","<>:xip/const:NOUN#373-378$<i>71"],["s:2002","i:2002","_71#379-383","opennlp/p:CARD","cnx/l:2002","cnx/p:NUM","cnx/syn:@NH","tt/l:@card@","tt/p:CARD","mate/l:2002","mate/p:CARD","xip/p:NUM","xip/l:2002","<>:xip/const:NUM#379-383$<i>72"],["s:5","i:5","_72#386-387","opennlp/p:CARD","cnx/l:5","cnx/p:NUM","cnx/syn:@PREMOD","tt/l:5","tt/p:CARD","mate/l:5","mate/p:CARD","xip/p:NUM","xip/l:5","<>:xip/const:NUM#386-387$<i>73","<>:xip/const:NP#386-396$<i>74<b>1","<>:xip/const:NPA#386-396$<i>74<b>2","<>:xip/const:NUM#386-387$<i>73<b>3",">:xip/d:NMOD$<i>73"],["s:WochenUK","i:wochenuk","_73#388-396","opennlp/p:NN","cnx/l:Wochenuk","cnx/p:N","cnx/m:Prop","cnx/syn:@NH","<>:cnx/const:np#388-396$<i>74","tt/p:NN","mate/l:wochenuk","mate/p:NN","mate/m:case:nom","mate/m:number:pl","mate/m:gender:fem","xip/p:NOUN","xip/l:WochenUK","<>:xip/const:NOUN#388-396$<i>74","<:xip/d:NMOD$<i>72","xip/d:THEMA"],["s:9","i:9","_74#398-399","opennlp/p:CARD","cnx/l:9","cnx/p:NUM","cnx/syn:@NH","tt/l:9","tt/p:CARD","mate/l:9","mate/p:CARD","xip/p:NUM","xip/l:9","<>:xip/const:NUM#398-399$<i>75","<>:xip/const:TOP#398-439$<i>82","<>:xip/const:NP#398-399$<i>75<b>1","<>:xip/const:NPA#398-399$<i>75<b>2","<>:xip/const:NUM#398-399$<i>75<b>3","xip/d:THEMA","xip/d:TIME"],["s:2.","i:2.","_75#402-404","opennlp/p:ADV","cnx/l:2.","cnx/p:NUM","cnx/m:ORD","cnx/syn:@PREMOD","<>:cnx/const:np#402-409$<i>77","tt/l:2.","tt/p:ADJA","xip/p:NUM","xip/l:2.","<>:xip/const:NUM#402-404$<i>76","<>:xip/const:INS#400-416$<i>78<b>1","<>:xip/const:NP#402-414$<i>78<b>2","<>:xip/const:NPA#402-414$<i>78<b>3","<>:xip/const:NOUN#402-414$<i>78<b>4"],["s:März","i:märz","_76#405-409","opennlp/p:NN","cnx/l:märz","cnx/p:N","cnx/syn:@NH","tt/l:März","tt/p:NN","mate/l:märz","mate/p:NN","xip/p:NOUN","xip/l:März","<>:xip/const:NOUN#405-409$<i>77"],["s:2002","i:2002","_77#410-414","opennlp/p:CARD","cnx/l:2002","cnx/p:NUM","cnx/syn:@NH","tt/l:@card@","tt/p:CARD","mate/l:2002","mate/p:CARD","xip/p:NUM","xip/l:2002","<>:xip/const:NUM#410-414$<i>78"],["s:6","i:6","_78#417-418","opennlp/p:CARD","cnx/l:6","cnx/p:NUM","cnx/syn:@PREMOD","tt/l:6","tt/p:CARD","mate/l:6","mate/p:CARD","xip/p:NUM","xip/l:6","<>:xip/const:NUM#417-418$<i>79","<>:xip/const:NP#417-425$<i>80<b>1","<>:xip/const:NPA#417-425$<i>80<b>2","<>:xip/const:NUM#417-418$<i>79<b>3",">:xip/d:NMOD$<i>79"],["s:Wochen","i:wochen","_79#419-425","opennlp/p:NN","cnx/l:woche","cnx/p:N","cnx/m:PL","cnx/syn:@PREMOD","<>:cnx/const:np#419-438$<i>82","tt/l:Woche","tt/p:NN","mate/l:woche","mate/p:NN","mate/m:case:dat","mate/m:number:pl","mate/m:gender:fem","xip/p:NOUN","xip/l:Woche","<>:xip/const:NOUN#419-425$<i>80","<:xip/d:NMOD$<i>78","xip/d:THEMA"],["s:Starbucks","i:starbucks","_80#426-435","opennlp/p:NE","corenlp/ne_dewac_175m_600:I-ORG","corenlp/ne_hgc_175m_600:I-ORG","cnx/l:Starbucks","cnx/p:N","cnx/m:Prop","cnx/syn:@PREMOD","tt/p:NE","mate/l:starbuck","mate/p:NE","mate/m:case:gen","mate/m:number:sg","mate/m:gender:*","xip/p:NOUN","xip/l:Starbucks","<>:xip/const:NOUN#426-435$<i>81","<>:xip/const:NP#426-438$<i>82<b>1","<>:xip/const:NPA#426-438$<i>82<b>2","<>:xip/const:NOUN#426-438$<i>82<b>3"],["s:UK","i:uk","_81#436-438","<>:p#436-468$<i>88","opennlp/p:NE","corenlp/ne_dewac_175m_600:I-ORG","corenlp/ne_hgc_175m_600:I-ORG","cnx/l:UK","cnx/p:N","cnx/m:Prop","cnx/syn:@NH","tt/l:UK","tt/p:NE","mate/l:uk","mate/p:NE","mate/m:case:nom","mate/m:number:sg","mate/m:gender:neut","xip/p:NOUN","xip/l:UK","<>:xip/const:NOUN#436-438$<i>82"],["s:20","i:20","_82#440-442","opennlp/p:CARD","cnx/l:20","cnx/p:NUM","cnx/syn:@NH","tt/l:20","tt/p:CARD","mate/l:20","mate/p:CARD","xip/p:NUM","xip/l:20","<>:xip/const:NUM#440-442$<i>83","<>:xip/const:TOP#440-493$<i>92","<>:xip/const:NP#440-442$<i>83<b>1","<>:xip/const:NPA#440-442$<i>83<b>2","<>:xip/const:NUM#440-442$<i>83<b>3","xip/d:DATE","xip/d:THEMA","xip/d:TIME"],["s:1.","i:1.","_83#445-447","opennlp/p:ADJA","cnx/l:1.","cnx/p:NUM","cnx/m:ORD","cnx/syn:@PREMOD","<>:cnx/const:np#445-452$<i>85","tt/l:1.","tt/p:ADJA","xip/p:NUM","xip/l:1.","<>:xip/const:NUM#445-447$<i>84","<>:xip/const:INS#443-459$<i>86<b>1","<>:xip/const:NP#445-457$<i>86<b>2","<>:xip/const:NPA#445-457$<i>86<b>3","<>:xip/const:NOUN#445-457$<i>86<b>4"],["s:Juni","i:juni","_84#448-452","opennlp/p:NN","cnx/l:juni","cnx/p:N","cnx/syn:@NH","tt/l:Juni","tt/p:NN","mate/l:juni","mate/p:NN","mate/m:case:acc","mate/m:number:sg","mate/m:gender:masc","<:mate/d:NK$<i>85","xip/p:NOUN","xip/l:Juni","<>:xip/const:NOUN#448-452$<i>85"],["s:2002","i:2002","_85#453-457","opennlp/p:CARD","cnx/l:2002","cnx/p:NUM","cnx/syn:@NH","tt/l:@card@","tt/p:CARD","mate/l:2002","mate/p:CARD",">:mate/d:NK$<i>84","xip/p:NUM","xip/l:2002","<>:xip/const:NUM#453-457$<i>86"],["s:3","i:3","_86#460-461","opennlp/p:CARD","cnx/l:3","cnx/p:NUM","cnx/syn:@PREMOD","tt/l:3","tt/p:CARD","mate/l:3","mate/p:CARD",">:mate/d:NK$<i>87","xip/p:NUM","xip/l:3","<>:xip/const:NUM#460-461$<i>87","<>:xip/const:NP#460-468$<i>88<b>1","<>:xip/const:NPA#460-468$<i>88<b>2","<>:xip/const:NUM#460-461$<i>87<b>3",">:xip/d:NMOD$<i>87"],["s:Wochen","i:wochen","_87#462-468","opennlp/p:NN","cnx/l:woche","cnx/p:N","cnx/m:PL","cnx/syn:@PREMOD","<>:cnx/const:np#462-480$<i>89","tt/l:Woche","tt/p:NN","mate/l:woche","mate/p:NN","mate/m:case:dat","mate/m:number:pl","mate/m:gender:fem","<:mate/d:NK$<i>86","xip/p:NOUN","xip/l:Woche","<>:xip/const:NOUN#462-468$<i>88","<:xip/d:NMOD$<i>86","xip/d:THEMA"],["s:Something's","i:something's","_88#469-480","opennlp/p:NE","cnx/l:Something's","cnx/p:N","cnx/m:Prop","cnx/syn:@NH","tt/p:NE","tt/p:VVFIN","mate/l:something's","mate/p:NE","mate/m:case:nom","mate/m:number:sg","mate/m:gender:*",">:mate/d:SB$<i>89"],["s:going","i:going","_89#481-486","opennlp/p:NE","corenlp/ne_dewac_175m_600:I-ORG","corenlp/ne_hgc_175m_600:I-ORG","cnx/l:going","cnx/p:N","cnx/syn:@NH","<>:cnx/const:np#481-486$<i>90","tt/p:NE","mate/p:VVFIN","mate/m:number:sg","mate/m:person:3","mate/m:tense:past","mate/m:mood:ind","<:mate/d:SB$<i>88","<:mate/d:MO$<i>90","xip/p:ADV","xip/l:going","<>:xip/const:ADV#481-486$<i>90"],["s:on","i:on","_90#487-489","opennlp/p:NE","corenlp/ne_dewac_175m_600:I-ORG","corenlp/ne_hgc_175m_600:I-ORG","cnx/l:on","cnx/p:ADV","cnx/syn:@ADVL","tt/l:on","tt/p:NE","mate/l:on","mate/p:FM",">:mate/d:MO$<i>89","xip/p:ADV","xip/l:on","<>:xip/const:ADV#487-489$<i>91"],["s:UK","i:uk","_91#490-492","<>:p#490-526$<i>98","opennlp/p:NE","corenlp/ne_dewac_175m_600:I-ORG","corenlp/ne_hgc_175m_600:I-ORG","cnx/l:UK","cnx/p:N","cnx/m:Prop","cnx/syn:@NH","<>:cnx/const:np#490-492$<i>92","tt/l:UK","tt/p:NE","mate/l:uk","mate/p:NE","mate/m:case:nom","mate/m:number:sg","mate/m:gender:neut","<:mate/d:NK$<i>92","xip/p:NOUN","xip/l:UK","<>:xip/const:NOUN#490-492$<i>92","xip/d:PERSON","xip/d:THEMA"],["s:51","i:51","_92#494-496","opennlp/p:CARD","cnx/l:51","cnx/p:NUM","cnx/syn:@NH","tt/l:@card@","tt/p:CARD","mate/l:51","mate/p:CARD",">:mate/d:NK$<i>91","xip/p:NUM","xip/l:51","<>:xip/const:NUM#494-496$<i>93","<>:xip/const:TOP#494-540$<i>101","<>:xip/const:MC#494-539$<i>101<b>1","<>:xip/const:NP#494-496$<i>93<b>2","<>:xip/const:NPA#494-496$<i>93<b>3","<>:xip/const:NUM#494-496$<i>93<b>4","xip/d:DATE",">:xip/d:SUBJ$<i>99","xip/d:TIME"],["s:30.","i:30.","_93#499-502","opennlp/p:ADJA","cnx/l:30.","cnx/p:NUM","cnx/m:ORD","cnx/syn:@PREMOD","<>:cnx/const:np#499-511$<i>95","tt/l:30.","tt/p:ADJA","xip/p:NUM","xip/l:30.","<>:xip/const:NUM#499-502$<i>94","<>:xip/const:INS#497-518$<i>96<b>2","<>:xip/const:NP#499-516$<i>96<b>3","<>:xip/const:NPA#499-516$<i>96<b>4","<>:xip/const:NOUN#499-516$<i>96<b>5"],["s:November","i:november","_94#503-511","opennlp/p:NN","cnx/l:november","cnx/p:N","cnx/syn:@NH","tt/l:November","tt/p:NN","mate/l:november","mate/p:NN","<:mate/d:NK$<i>95","xip/p:NOUN","xip/l:November","<>:xip/const:NOUN#503-511$<i>95"],["s:2002","i:2002","_95#512-516","opennlp/p:CARD","cnx/l:2002","cnx/p:NUM","cnx/syn:@NH","tt/l:@card@","tt/p:CARD","mate/l:2002","mate/p:CARD",">:mate/d:NK$<i>94","xip/p:NUM","xip/l:2002","<>:xip/const:NUM#512-516$<i>96"],["s:1","i:1","_96#519-520","opennlp/p:CARD","corenlp/ne_dewac_175m_600:I-ORG","cnx/l:1","cnx/p:NUM","cnx/syn:@PREMOD","tt/l:1","tt/p:CARD","mate/l:1","mate/p:CARD",">:mate/d:NK$<i>97","xip/p:NUM","xip/l:1","<>:xip/const:NP#519-526$<i>98<b>2","<>:xip/const:NPA#519-526$<i>98<b>3","<>:xip/const:NUM#519-520$<i>97<b>4","<>:xip/const:NUM#519-520$<i>97",">:xip/d:NMOD$<i>97"],["s:Woche","i:woche","_97#521-526","opennlp/p:NN","corenlp/ne_dewac_175m_600:I-ORG","cnx/l:woche","cnx/p:N","cnx/syn:@PREMOD","<>:cnx/const:np#521-531$<i>99","tt/l:Woche","tt/p:NN","mate/l:woche","mate/p:NN","mate/m:case:acc","mate/m:number:sg","mate/m:gender:fem","<:mate/d:NK$<i>96","xip/p:NOUN","xip/l:Woche","<>:xip/const:NOUN#521-526$<i>98","<:xip/d:NMOD$<i>96",">:xip/d:OBJ$<i>99","<:xip/d:NMOD$<i>98"],["s:Good","i:good","_98#527-531","opennlp/p:NE","corenlp/ne_dewac_175m_600:I-ORG","corenlp/ne_hgc_175m_600:I-ORG","cnx/l:Good","cnx/p:N","cnx/m:Prop","cnx/syn:@NH","tt/p:NE","mate/p:NE","<:mate/d:UC$<i>99","xip/p:NOUN","xip/l:Good","<>:xip/const:NP#527-531$<i>99<b>2","<>:xip/const:NPA#527-531$<i>99<b>3","<>:xip/const:NOUN#527-531$<i>99",">:xip/d:NMOD$<i>97"],["s:time","i:time","_99#532-536","opennlp/p:ADJA","corenlp/ne_dewac_175m_600:I-ORG","corenlp/ne_hgc_175m_600:I-ORG","cnx/l:time","cnx/p:N","cnx/syn:@PREMOD","<>:cnx/const:np#532-539$<i>101","tt/l:timen","tt/p:VVFIN","mate/p:NE",">:mate/d:UC$<i>98","xip/p:VERB","xip/l:timen","<>:xip/const:VERB#532-536$<i>100","<:xip/d:SUBJ$<i>92","<:xip/d:OBJ$<i>97","xip/d:VMAIN","<:xip/d:OBJ$<i>100"],["s:UK","i:uk","_100#537-539","<>:p#537-569$<i>107","opennlp/p:NN","corenlp/ne_dewac_175m_600:I-ORG","corenlp/ne_hgc_175m_600:I-ORG","cnx/l:UK","cnx/p:N","cnx/m:Prop","cnx/syn:@NH","tt/l:UK","tt/p:NE","mate/l:uk","mate/p:NE","mate/m:case:nom","mate/m:number:sg","mate/m:gender:neut","xip/p:NOUN","xip/l:UK","<>:xip/const:NOUN#537-539$<i>101","<>:xip/const:NP#537-539$<i>101<b>2","<>:xip/const:NPA#537-539$<i>101<b>3",">:xip/d:OBJ$<i>99","xip/d:PERSON"],["s:23","i:23","_101#541-543","opennlp/p:CARD","cnx/l:23","cnx/p:NUM","cnx/syn:@NH","tt/l:23","tt/p:CARD","mate/l:23","mate/p:CARD","xip/p:NUM","xip/l:23","<>:xip/const:NUM#541-543$<i>102","<>:xip/const:TOP#541-604$<i>114","<>:xip/const:NP#541-543$<i>102<b>1","<>:xip/const:NPA#541-543$<i>102<b>2","<>:xip/const:NUM#541-543$<i>102<b>3","xip/d:DATE","xip/d:THEMA","xip/d:TIME"],["s:8.","i:8.","_102#546-548","opennlp/p:ADJA","cnx/l:8.","cnx/p:NUM","cnx/m:ORD","cnx/syn:@PREMOD","<>:cnx/const:np#546-553$<i>104","tt/l:@ord@","tt/p:ADJA","xip/p:NUM","xip/l:8.","<>:xip/const:INS#544-560$<i>105<b>1","<>:xip/const:NP#546-558$<i>105<b>2","<>:xip/const:NPA#546-558$<i>105<b>3","<>:xip/const:NOUN#546-558$<i>105<b>4","<>:xip/const:NUM#546-548$<i>103"],["s:Juni","i:juni","_103#549-553","opennlp/p:NN","cnx/l:juni","cnx/p:N","cnx/syn:@NH","tt/l:Juni","tt/p:NN","mate/l:juni","mate/p:NN","<:mate/d:NK$<i>104","xip/p:NOUN","xip/l:Juni","<>:xip/const:NOUN#549-553$<i>104"],["s:2003","i:2003","_104#554-558","opennlp/p:CARD","cnx/l:2003","cnx/p:NUM","cnx/syn:@NH","tt/l:@card@","tt/p:CARD","mate/l:2003","mate/p:CARD",">:mate/d:NK$<i>103","xip/p:NUM","xip/l:2003","<>:xip/const:NUM#554-558$<i>105"],["s:2","i:2","_105#561-562","opennlp/p:CARD","cnx/l:2","cnx/p:NUM","cnx/syn:@PREMOD","tt/l:2","tt/p:CARD","mate/l:2","mate/p:CARD",">:mate/d:NK$<i>106","xip/p:NUM","xip/l:2","<>:xip/const:NUM#561-562$<i>106","<>:xip/const:NP#561-569$<i>107<b>1","<>:xip/const:NPA#561-569$<i>107<b>2","<>:xip/const:NUM#561-562$<i>106<b>3",">:xip/d:NMOD$<i>106"],["s:Wochen","i:wochen","_106#563-569","opennlp/p:NN","cnx/l:woche","cnx/p:N","cnx/m:PL","cnx/syn:@NH","<>:cnx/const:np#563-569$<i>107","tt/l:Woche","tt/p:NN","mate/l:woche","mate/p:NN","mate/m:case:dat","mate/m:number:pl","mate/m:gender:fem","<:mate/d:NK$<i>105","xip/p:NOUN","xip/l:Woche","<>:xip/const:NOUN#563-569$<i>107","<:xip/d:NMOD$<i>105","xip/d:THEMA","<:xip/d:NMOD$<i>108"],["s:3.","i:3.","_107#570-572","opennlp/p:ADJA","cnx/l:3.","cnx/p:NUM","cnx/syn:@PREMOD","tt/l:3.","tt/p:ADJA","xip/p:NUM","xip/l:3.","<>:xip/const:NUM#570-572$<i>108","<>:xip/const:NP#570-578$<i>109<b>1","<>:xip/const:NPA#570-578$<i>109<b>2"],["s:Alben","i:alben","_108#573-578","opennlp/p:NN","cnx/l:album","cnx/p:N","cnx/m:PL","cnx/syn:@NH","<>:cnx/const:np#573-578$<i>109","tt/l:Alb|Albe|Album","tt/p:NN","mate/l:albe","mate/p:NN","mate/m:case:nom","mate/m:number:pl","mate/m:gender:fem","xip/p:NOUN","xip/l:Alb","<>:xip/const:NOUN#573-578$<i>109",">:xip/d:NMOD$<i>106","<:xip/d:NMOD$<i>109"],["s:How","i:how","_109#579-582","opennlp/p:NE","cnx/l:How","cnx/p:N","cnx/m:Prop","cnx/syn:@PREMOD","<>:cnx/const:np#579-603$<i>114","tt/p:NE","mate/p:NE","<:mate/d:UC$<i>110","<:mate/d:UC$<i>111","<:mate/d:UC$<i>112","xip/p:NOUN","xip/l:How","<>:xip/const:NOUN#579-582$<i>110","<>:xip/const:NP#579-582$<i>110<b>1","<>:xip/const:NPA#579-582$<i>110<b>2",">:xip/d:NMOD$<i>108"],["s:ace","i:ace","_110#583-586","opennlp/p:NE","cnx/l:ace","cnx/p:N","cnx/syn:@PREMOD","tt/l:ace","tt/p:NE","tt/l:ace","tt/p:FM","mate/l:ace","mate/p:NE",">:mate/d:UC$<i>109","xip/p:ADV","xip/l:ace","<>:xip/const:ADV#583-586$<i>111"],["s:are","i:are","_111#587-590","opennlp/p:ADJA","cnx/l:are","cnx/p:N","cnx/syn:@PREMOD","tt/l:are","tt/p:NE","tt/l:are","tt/p:FM","mate/p:FM",">:mate/d:UC$<i>109","xip/p:ADV","xip/l:are","<>:xip/const:ADV#587-590$<i>112"],["s:buildings","i:buildings","_112#591-600","opennlp/p:ADJA","cnx/l:building","cnx/p:N","cnx/syn:@PREMOD","tt/p:NE","mate/l:buildings","mate/p:FM",">:mate/d:UC$<i>109","xip/p:ADV","xip/l:buildings","<>:xip/const:ADV#591-600$<i>113"],["s:UK","i:uk","_113#601-603","<>:p#601-604$<i>114","opennlp/p:NN","corenlp/ne_dewac_175m_600:I-ORG","cnx/l:UK","cnx/p:N","cnx/m:Prop","cnx/syn:@NH","tt/l:UK","tt/p:NE","mate/l:uk","mate/p:NE","mate/m:case:nom","mate/m:number:sg","mate/m:gender:neut","xip/p:NOUN","xip/l:UK","<>:xip/const:NOUN#601-603$<i>114","<>:xip/const:NP#601-603$<i>114<b>1","<>:xip/const:NPA#601-603$<i>114<b>2","xip/d:PERSON"],["s:Number","i:number","_114#605-611","opennlp/p:NN","corenlp/ne_dewac_175m_600:I-ORG","corenlp/ne_hgc_175m_600:I-ORG","cnx/l:Number","cnx/p:N","cnx/m:Prop","cnx/syn:@PREMOD","<>:cnx/const:np#605-618$<i>117","tt/p:NE","mate/l:number","mate/p:NE","mate/m:case:nom","mate/m:number:sg","mate/m:gender:masc",">:mate/d:PNC$<i>115","xip/p:NOUN","xip/l:Number","<>:xip/const:TOP#605-619$<i>117","<>:xip/const:NP#605-618$<i>117<b>1","<>:xip/const:NPA#605-618$<i>117<b>2","<>:xip/const:NOUN#605-618$<i>117<b>3","<>:xip/const:NOUN#605-611$<i>115"],["s:One","i:one","_115#612-615","opennlp/p:NE","corenlp/ne_dewac_175m_600:I-ORG","corenlp/ne_hgc_175m_600:I-ORG","cnx/l:One","cnx/p:N","cnx/m:Prop","cnx/syn:@PREMOD","tt/l:One","tt/p:FM","mate/l:one","mate/p:NE","mate/m:case:nom","mate/m:number:sg","mate/m:gender:masc","<:mate/d:PNC$<i>114","xip/p:NOUN","xip/l:One","<>:xip/const:NOUN#612-615$<i>116"],["s:UK","i:uk","_116#616-618","<>:p#616-619$<i>117","opennlp/p:NE","corenlp/ne_dewac_175m_600:I-ORG","corenlp/ne_hgc_175m_600:I-ORG","cnx/l:UK","cnx/p:N","cnx/m:Prop","cnx/syn:@NH","tt/l:UK","tt/p:NE","mate/l:uk","mate/p:NE","mate/m:case:nom","mate/m:number:sg","mate/m:gender:neut","xip/p:NOUN","xip/l:UK","<>:xip/const:NOUN#616-618$<i>117"],["s:A","i:a","_117#620-621","opennlp/p:NE","cnx/l:a","cnx/p:PREP","cnx/syn:@PREMARK","tt/l:A","tt/p:FM","tt/l:A","tt/p:NN","mate/p:XY","xip/p:SYMBOL","xip/l:A","<>:xip/const:SYMBOL#620-621$<i>118","<>:xip/const:TOP#620-625$<i>119","<>:xip/const:NP#620-621$<i>118<b>1","<>:xip/const:NPA#620-621$<i>118<b>2","<>:xip/const:NOUN#620-621$<i>118<b>3","xip/d:THEMA"],["s:vs","i:vs","_118#622-624","opennlp/p:NE","cnx/l:vs","cnx/p:N","cnx/m:Abbr","cnx/syn:@NH","<>:cnx/const:np#622-624$<i>119","tt/l:vs","tt/p:FM","tt/l:vs","tt/p:NE","mate/p:XY","xip/p:ADV","xip/l:vs","<>:xip/const:ADV#622-624$<i>119"],["s:Monkey","i:monkey","_119#626-632","<>:s#626-757$<i>143","opennlp/p:NE","corenlp/ne_dewac_175m_600:I-ORG","corenlp/ne_hgc_175m_600:I-PER","cnx/l:Monkey","cnx/p:N","cnx/m:Prop","cnx/syn:@PREMOD","<>:cnx/const:np#626-639$<i>122","tt/p:NE","mate/l:monkey","mate/p:NE","mate/m:case:nom","mate/m:number:sg","mate/m:gender:masc",">:mate/d:PNC$<i>120","xip/p:NOUN","xip/l:Monkey","<>:xip/const:TOP#626-640$<i>122","<>:xip/const:NP#626-639$<i>122<b>1","<>:xip/const:NPA#626-639$<i>122<b>2","<>:xip/const:NOUN#626-639$<i>122<b>3","<>:xip/const:NOUN#626-632$<i>120"],["s:Kong","i:kong","_120#633-637","opennlp/p:NE","corenlp/ne_dewac_175m_600:I-ORG","corenlp/ne_hgc_175m_600:I-PER","cnx/l:Kong","cnx/p:N","cnx/m:Prop","cnx/syn:@PREMOD","tt/l:Kong","tt/p:NE","mate/l:kong","mate/p:NE","mate/m:case:nom","mate/m:number:sg","mate/m:gender:masc","<:mate/d:PNC$<i>119","xip/p:NOUN","xip/l:Kong","<>:xip/const:NOUN#633-637$<i>121"],["s:D","i:d","_121#638-639","<>:p#638-672$<i>128","opennlp/p:NE","corenlp/ne_dewac_175m_600:I-ORG","cnx/l:D","cnx/p:N","cnx/syn:@NH","tt/l:D","tt/p:NN","mate/l:D","mate/p:XY","xip/p:NUM","xip/l:D","<>:xip/const:NUM#638-639$<i>122"],["s:81","i:81","_122#641-643","opennlp/p:CARD","cnx/l:81","cnx/p:NUM","cnx/syn:@NH","tt/l:@card@","tt/p:CARD","mate/l:81","mate/p:CARD","xip/p:NUM","xip/l:81","<>:xip/const:NUM#641-643$<i>123","<>:xip/const:TOP#641-672$<i>128","<>:xip/const:NP#641-643$<i>123<b>1","<>:xip/const:NPA#641-643$<i>123<b>2","<>:xip/const:NUM#641-643$<i>123<b>3","xip/d:DATE","xip/d:THEMA"],["s:6.","i:6.","_123#646-648","opennlp/p:ADJA","cnx/l:6.","cnx/p:NUM","cnx/m:ORD","cnx/syn:@PREMOD","<>:cnx/const:np#646-653$<i>125","tt/l:6.","tt/p:ADJA","xip/p:NUM","xip/l:6.","<>:xip/const:NUM#646-648$<i>124","<>:xip/const:INS#644-660$<i>126<b>1","<>:xip/const:NP#646-658$<i>126<b>2","<>:xip/const:NPA#646-658$<i>126<b>3","<>:xip/const:NOUN#646-658$<i>126<b>4"],["s:März","i:märz","_124#649-653","opennlp/p:NN","cnx/l:märz","cnx/p:N","cnx/syn:@NH","tt/l:März","tt/p:NN","mate/l:märz","mate/p:NN","xip/p:NOUN","xip/l:März","<>:xip/const:NOUN#649-653$<i>125"],["s:2000","i:2000","_125#654-658","opennlp/p:CARD","cnx/l:2000","cnx/p:NUM","cnx/syn:@NH","tt/l:2000","tt/p:CARD","mate/l:2000","mate/p:CARD","xip/p:NUM","xip/l:2000","<>:xip/const:NUM#654-658$<i>126"],["s:3","i:3","_126#661-662","opennlp/p:CARD","cnx/l:3","cnx/p:NUM","cnx/syn:@PREMOD","tt/l:3","tt/p:CARD","mate/l:3","mate/p:CARD","xip/p:NUM","xip/l:3","<>:xip/const:NUM#661-662$<i>127","<>:xip/const:NP#661-671$<i>128<b>1","<>:xip/const:NPA#661-671$<i>128<b>2","<>:xip/const:NUM#661-662$<i>127<b>3",">:xip/d:NMOD$<i>127"],["s:WochenUK","i:wochenuk","_127#663-671","opennlp/p:NN","cnx/l:Wochenuk","cnx/p:N","cnx/m:Prop","cnx/syn:@NH","<>:cnx/const:np#663-671$<i>128","tt/p:NN","mate/l:wochenuk","mate/p:NN","mate/m:case:nom","mate/m:number:pl","mate/m:gender:fem","xip/p:NOUN","xip/l:WochenUK","<>:xip/const:NOUN#663-671$<i>128","<:xip/d:NMOD$<i>126","xip/d:THEMA"],["s:Hi-Fi","i:hi-fi","_128#673-678","opennlp/p:NE","cnx/l:Hi-fi","cnx/p:N","cnx/m:Prop","cnx/syn:@PREMOD","<>:cnx/const:np#673-688$<i>131","tt/p:NE","tt/p:NN","mate/l:hi-fi","mate/p:NE","mate/m:case:nom","mate/m:number:sg","mate/m:gender:masc",">:mate/d:PNC$<i>129","xip/p:NOUN","xip/l:Hi-Fi","<>:xip/const:NOUN#673-678$<i>129","<>:xip/const:TOP#673-689$<i>131","<>:xip/const:NP#673-678$<i>129<b>1","<>:xip/const:NPA#673-678$<i>129<b>2","xip/d:THEMA"],["s:serious","i:serious","_129#679-686","opennlp/p:NE","cnx/l:serious","cnx/p:N","cnx/syn:@NH","tt/p:NE","tt/p:ADJA","tt/p:NN","mate/l:serious","mate/p:NE","mate/m:case:nom","mate/m:number:sg","mate/m:gender:masc","<:mate/d:PNC$<i>128","xip/p:ADV","xip/l:serious","<>:xip/const:ADV#679-686$<i>130"],["s:D","i:d","_130#687-688","<>:p#687-726$<i>138","opennlp/p:NE","cnx/l:D","cnx/p:N","cnx/syn:@NH","tt/l:D","tt/p:NN","mate/l:D","mate/p:XY","xip/p:SYMBOL","xip/l:D","<>:xip/const:SYMBOL#687-688$<i>131","<>:xip/const:NP#687-688$<i>131<b>1","<>:xip/const:NPA#687-688$<i>131<b>2","<>:xip/const:NOUN#687-688$<i>131<b>3","xip/d:THEMA"],["s:29","i:29","_131#690-692","opennlp/p:CARD","cnx/l:29","cnx/p:NUM","cnx/syn:@NH","tt/l:@card@","tt/p:CARD","mate/l:29","mate/p:CARD","xip/p:NUM","xip/l:29","<>:xip/const:NUM#690-692$<i>132","<>:xip/const:TOP#690-723$<i>137","<>:xip/const:NP#690-692$<i>132<b>1","<>:xip/const:NPA#690-692$<i>132<b>2","<>:xip/const:NUM#690-692$<i>132<b>3","xip/d:DATE","xip/d:THEMA","xip/d:TIME"],["s:15.","i:15.","_132#695-698","opennlp/p:ADJA","cnx/l:15.","cnx/p:NUM","cnx/m:ORD","cnx/syn:@PREMOD","<>:cnx/const:np#695-704$<i>134","tt/l:15.","tt/p:ADJA","xip/p:NUM","xip/l:15.","<>:xip/const:NUM#695-698$<i>133","<>:xip/const:INS#693-711$<i>135<b>1","<>:xip/const:NP#695-709$<i>135<b>2","<>:xip/const:NPA#695-709$<i>135<b>3","<>:xip/const:NOUN#695-709$<i>135<b>4"],["s:April","i:april","_133#699-704","opennlp/p:NN","cnx/l:april","cnx/p:N","cnx/syn:@NH","tt/l:April","tt/p:NN","mate/l:april","mate/p:NN","mate/m:case:nom","mate/m:number:sg","mate/m:gender:masc","xip/p:NOUN","xip/l:April","<>:xip/const:NOUN#699-704$<i>134"],["s:2002","i:2002","_134#705-709","opennlp/p:CARD","cnx/l:2002","cnx/p:NUM","cnx/syn:@NH","tt/l:@card@","tt/p:CARD","mate/l:2002","mate/p:CARD",">:mate/d:NMC$<i>137","xip/p:NUM","xip/l:2002","<>:xip/const:NUM#705-709$<i>135"],["s:4","i:4","_135#712-713","opennlp/p:CARD","cnx/l:4","cnx/p:NUM","cnx/syn:@PREMOD","tt/l:4","tt/p:CARD","mate/l:4","mate/p:CARD",">:mate/d:NMC$<i>137","xip/p:NUM","xip/l:4","<>:xip/const:NP#712-722$<i>137<b>1","<>:xip/const:NPA#712-722$<i>137<b>2","<>:xip/const:NUM#712-713$<i>136<b>3","<>:xip/const:NUM#712-713$<i>136",">:xip/d:NMOD$<i>136"],["s:WochenUK","i:wochenuk","_136#714-722","opennlp/p:NN","cnx/l:Wochenuk","cnx/p:N","cnx/m:Prop","cnx/syn:@NH","<>:cnx/const:np#714-722$<i>137","tt/p:NN","mate/l:wochenuk","mate/p:NN","mate/m:case:nom","mate/m:number:pl","mate/m:gender:fem","xip/p:NOUN","xip/l:WochenUK","<>:xip/const:NOUN#714-722$<i>137","<:xip/d:NMOD$<i>135","xip/d:THEMA"],["s:19","i:19","_137#724-726","opennlp/p:CARD","cnx/l:19","cnx/p:NUM","cnx/syn:@PREMOD","tt/l:19","tt/p:CARD","mate/l:19","mate/p:CARD","<:mate/d:NMC$<i>134","<:mate/d:NMC$<i>135","xip/p:NUM","xip/l:19","<>:xip/const:NUM#724-726$<i>138","<>:xip/const:TOP#724-757$<i>143","<>:xip/const:MC#724-756$<i>143<b>1","<>:xip/const:NP#724-728$<i>139<b>2","<>:xip/const:NPA#724-728$<i>139<b>3","<>:xip/const:NUM#724-726$<i>138<b>4",">:xip/d:NMOD$<i>138"],["s:A","i:a","_138#727-728","<>:p#727-2522$<i>435","opennlp/p:NN","cnx/l:A","cnx/p:N","cnx/m:Abbr","cnx/syn:@NH","<>:cnx/const:np#727-728$<i>139","tt/l:A","tt/p:NN","mate/p:XY","mate/m:case:nom","mate/m:number:sg","mate/m:gender:*","xip/p:SYMBOL","xip/l:A","<>:xip/const:SYMBOL#727-728$<i>139","<>:xip/const:NOUN#727-728$<i>139<b>4","<:xip/d:NMOD$<i>137",">:xip/d:SUBJ$<i>139"],["s:ist","i:ist","_139#729-732","opennlp/p:VAFIN","cnx/l:sein","cnx/p:V","cnx/m:IND","cnx/m:PRES","cnx/syn:@MAIN","tt/l:sein","tt/p:VAFIN","mate/l:sein","mate/p:VAFIN","mate/m:number:sg","mate/m:person:3","mate/m:tense:pres","mate/m:mood:ind","<:mate/d:PD$<i>142","xip/p:VERB","xip/l:sein","<>:xip/const:VERB#729-732$<i>140","<:xip/d:SUBJ$<i>138","xip/d:VMAIN","<:xip/d:PRED$<i>142"],["s:eine","i:eine","_140#733-737","opennlp/p:ART","cnx/l:eine","cnx/p:DET","cnx/syn:@PREMOD","tt/l:eine","tt/p:ART","mate/l:ein","mate/p:ART","mate/m:case:nom","mate/m:number:sg","mate/m:gender:fem",">:mate/d:NK$<i>142","xip/p:DET","xip/l:ein","<>:xip/const:DET#733-737$<i>141","<>:xip/const:NP#733-756$<i>143<b>2",">:xip/d:DETERM$<i>142"],["s:britische","i:britische","_141#738-747","opennlp/p:ADJA","corenlp/ne_dewac_175m_600:I-MISC","corenlp/ne_hgc_175m_600:I-MISC","cnx/l:britisch","cnx/p:A","cnx/syn:@PREMOD","<>:cnx/const:np#738-756$<i>143","tt/l:britisch","tt/p:ADJA","mate/l:britisch","mate/p:ADJA","mate/m:case:nom","mate/m:number:sg","mate/m:gender:fem","mate/m:degree:pos",">:mate/d:NK$<i>142","xip/p:ADJ","xip/l:britisch","<>:xip/const:ADJ#738-747$<i>142","<>:xip/const:NPA#738-756$<i>143<b>3","<>:xip/const:AP#738-747$<i>142<b>4",">:xip/d:NMOD$<i>142"],["s:Rockband","i:rockband","_142#748-756","opennlp/p:NN","cnx/l:rock","cnx/l:band","cnx/p:N","cnx/syn:@NH","tt/l:Rockband","tt/p:NN","mate/l:rockband","mate/p:NN","mate/m:case:nom","mate/m:number:sg","mate/m:gender:fem","<:mate/d:NK$<i>140","<:mate/d:NK$<i>141",">:mate/d:PD$<i>139","xip/p:NOUN","xip/l:rocken","xip/l:Band","xip/l:Rockenband","<>:xip/const:NOUN#748-756$<i>143","<:xip/d:DETERM$<i>140","<:xip/d:NMOD$<i>141",">:xip/d:PRED$<i>139"],["s:Sie","i:sie","_143#758-761","<>:s#758-923$<i>170","opennlp/p:PPER","cnx/l:sie","cnx/p:PRON","cnx/syn:@NH","tt/l:Sie|sie|sie","tt/p:PPER","mate/l:sie","mate/p:PPER","mate/m:case:nom","mate/m:number:sg","mate/m:gender:fem","mate/m:person:3",">:mate/d:SB$<i>144","xip/p:PRON","xip/l:Sie","<>:xip/const:TOP#758-923$<i>170","<>:xip/const:MC#758-918$<i>169<b>1","<>:xip/const:NP#758-761$<i>144<b>2","<>:xip/const:PRON#758-761$<i>144",">:xip/d:SUBJ$<i>144"],["s:entstand","i:entstand","_144#762-770","opennlp/p:VVFIN","cnx/l:entstehen","cnx/p:V","cnx/m:IND","cnx/m:PAST","cnx/syn:@MAIN","tt/l:entstehen","tt/p:VVFIN","mate/l:entstehen","mate/p:VVFIN","mate/m:number:sg","mate/m:person:3","mate/m:tense:past","mate/m:mood:ind","<:mate/d:SB$<i>143","<:mate/d:SVP$<i>145","xip/p:VERB","xip/l:entstehen","<>:xip/const:VERB#762-770$<i>145","<:xip/d:SUBJ$<i>143","xip/d:VMAIN","<:xip/d:VMOD$<i>145","<:xip/d:OBJ$<i>153","<:xip/d:VMOD$<i>157","<:xip/d:VMOD$<i>162"],["s:aus","i:aus","_145#771-774","opennlp/p:APPR","cnx/l:aus","cnx/p:PREP","cnx/syn:@PREMARK","tt/l:aus","tt/p:APPR","mate/l:aus","mate/p:PTKVZ",">:mate/d:SVP$<i>144","xip/p:ADV","xip/l:aus","<>:xip/const:ADV#771-774$<i>146",">:xip/d:VMOD$<i>144"],["s:'Grand","i:'grand","_146#775-781","opennlp/p:NN","tt/p:ADJA","tt/p:NN","tt/p:NE"],["s:Design'","i:design'","_147#782-789","opennlp/p:NE"],["s:welche","i:welche","_148#790-796","opennlp/p:PWAT","cnx/l:welcher","cnx/p:PRON","cnx/syn:@NH","tt/l:welche","tt/p:PRELS","mate/l:welcher","mate/p:PWAT","mate/m:case:nom","mate/m:number:pl","mate/m:gender:masc",">:mate/d:SB$<i>169","xip/p:DET","xip/l:welch","<>:xip/const:DET#790-796$<i>149"],["s:von","i:von","_149#797-800","opennlp/p:APPR","cnx/l:von","cnx/p:PREP","cnx/syn:@PREMARK","tt/l:von","tt/p:APPR","mate/l:von","mate/p:APPR",">:mate/d:SBP$<i>167","<:mate/d:NK$<i>151","xip/p:PREP","xip/l:von","<>:xip/const:PREP#797-800$<i>150"],["s:den","i:den","_150#801-804","opennlp/p:ART","cnx/l:die","cnx/p:DET","cnx/syn:@PREMOD","tt/l:die","tt/p:ART","mate/l:der","mate/p:ART","mate/m:case:dat","mate/m:number:pl","mate/m:gender:masc",">:mate/d:NK$<i>151","xip/p:DET","xip/l:der","<>:xip/const:DET#801-804$<i>151",">:xip/d:DETERM$<i>151"],["s:Brüdern","i:brüdern","_151#805-812","opennlp/p:NN","cnx/l:bruder","cnx/p:N","cnx/m:PL","cnx/syn:@NH","<>:cnx/const:np#805-812$<i>152","tt/l:Bruder","tt/p:NN","mate/l:Bruder","mate/p:NN","mate/m:case:dat","mate/m:number:pl","mate/m:gender:masc","<:mate/d:NK$<i>150",">:mate/d:NK$<i>149","<:mate/d:NK$<i>152","xip/p:NOUN","xip/l:Bruder","<>:xip/const:NOUN#805-812$<i>152","<:xip/d:DETERM$<i>150","<:xip/d:NMOD$<i>152"],["s:Jason","i:jason","_152#813-818","opennlp/p:NE","corenlp/ne_dewac_175m_600:I-PER","corenlp/ne_hgc_175m_600:I-PER","cnx/l:Jason","cnx/p:N","cnx/m:Prop","cnx/syn:@NH","<>:cnx/const:np#813-818$<i>153","tt/l:Jason","tt/p:NE","mate/l:jason","mate/p:NE","mate/m:case:nom","mate/m:number:sg","mate/m:gender:masc",">:mate/d:NK$<i>151","<:mate/d:CJ$<i>153","xip/p:NOUN","xip/l:Jason","<>:xip/const:NOUN#813-818$<i>153",">:xip/d:NMOD$<i>151"],["s:Adam","i:adam","_153#820-824","opennlp/p:NE","corenlp/ne_dewac_175m_600:I-PER","corenlp/ne_hgc_175m_600:I-PER","cnx/l:Adam","cnx/p:N","cnx/m:Prop","cnx/syn:@NH","<>:cnx/const:np#820-824$<i>154","tt/l:Adam","tt/p:NE","mate/l:adam","mate/p:NE","mate/m:case:nom","mate/m:number:sg","mate/m:gender:masc",">:mate/d:CJ$<i>152","<:mate/d:CD$<i>154","xip/p:NOUN","xip/l:Adam","<>:xip/const:NOUN#820-824$<i>154",">:xip/d:OBJ$<i>144","xip/d:PERSON","<:xip/d:COORD$<i>154"],["s:und","i:und","_154#825-828","opennlp/p:KON","cnx/l:und","cnx/p:CC","cnx/syn:@CC","tt/l:und","tt/p:KON","mate/l:und","mate/p:KON",">:mate/d:CD$<i>153","<:mate/d:CJ$<i>156","xip/p:CONJ","xip/l:und","<>:xip/const:CONJ#825-828$<i>155",">:xip/d:COORD$<i>153"],["s:Giles","i:giles","_155#829-834","opennlp/p:NE","corenlp/ne_dewac_175m_600:I-PER","corenlp/ne_hgc_175m_600:I-PER","cnx/l:Giles","cnx/p:N","cnx/m:Prop","cnx/syn:@PREMOD","<>:cnx/const:np#829-840$<i>157","tt/p:NE","mate/l:giles","mate/p:NE","mate/m:case:nom","mate/m:number:sg","mate/m:gender:masc",">:mate/d:PNC$<i>156","xip/p:NOUN","xip/l:Giles","<>:xip/const:NOUN#829-834$<i>156"],["s:Perry","i:perry","_156#835-840","opennlp/p:NE","corenlp/ne_dewac_175m_600:I-PER","corenlp/ne_hgc_175m_600:I-PER","cnx/l:Perry","cnx/p:N","cnx/m:Prop","cnx/syn:@NH","tt/l:Perry","tt/p:NE","mate/l:perry","mate/p:NE","mate/m:case:nom","mate/m:number:sg","mate/m:gender:masc","<:mate/d:PNC$<i>155",">:mate/d:CJ$<i>154","xip/p:NOUN","xip/l:Perry","<>:xip/const:NOUN#835-840$<i>157"],["s:zusammen","i:zusammen","_157#841-849","opennlp/p:ADV","cnx/l:zusammen","cnx/p:ADV","cnx/syn:@ADVL","tt/l:zusammen","tt/p:ADV","tt/l:zusammen","tt/p:PTKVZ","mate/l:zusammen","mate/p:ADV",">:mate/d:MO$<i>158","xip/p:ADV","xip/l:zusammen","<>:xip/const:ADV#841-849$<i>158",">:xip/d:VMOD$<i>144"],["s:mit","i:mit","_158#850-853","opennlp/p:APPR","cnx/l:mit","cnx/p:ADV","cnx/syn:@ADVL","tt/l:mit","tt/p:APPR","mate/l:mit","mate/p:APPR","<:mate/d:MO$<i>157",">:mate/d:MO$<i>167","<:mate/d:NK$<i>160","xip/p:PREP","xip/l:mit","<>:xip/const:PREP#850-853$<i>159"],["s:Mark","i:mark","_159#854-858","opennlp/p:NN","cnx/l:Mark","cnx/p:N","cnx/m:Prop","cnx/syn:@PREMOD","<>:cnx/const:np#854-866$<i>161","tt/l:Mark","tt/p:NN","tt/l:Mark","tt/p:NE","mate/l:mark","mate/p:NN","mate/m:case:dat","mate/m:number:sg","mate/m:gender:fem",">:mate/d:PNC$<i>160","xip/p:NOUN","xip/l:Mark","<>:xip/const:NOUN#854-858$<i>160"],["s:Chapman","i:chapman","_160#859-866","opennlp/p:NE","corenlp/ne_dewac_175m_600:I-PER","corenlp/ne_hgc_175m_600:I-PER","cnx/l:Chapman","cnx/p:N","cnx/m:Prop","cnx/syn:@NH","tt/p:NE","mate/l:chapman","mate/p:NE","mate/m:case:nom","mate/m:number:sg","mate/m:gender:*","<:mate/d:PNC$<i>159",">:mate/d:NK$<i>158","<:mate/d:CD$<i>161","xip/p:NOUN","xip/l:Chapman","<>:xip/const:NOUN#859-866$<i>161"],["s:und","i:und","_161#867-870","opennlp/p:KON","cnx/l:und","cnx/p:CC","cnx/syn:@CC","tt/l:und","tt/p:KON","mate/l:und","mate/p:KON",">:mate/d:CD$<i>160","<:mate/d:CJ$<i>163","xip/p:CONJ","xip/l:und","<>:xip/const:CONJ#867-870$<i>162",">:xip/d:COORD$<i>162"],["s:Steven","i:steven","_162#871-877","opennlp/p:NE","corenlp/ne_hgc_175m_600:I-PER","cnx/l:Steven","cnx/p:N","cnx/m:Prop","cnx/syn:@PREMOD","<>:cnx/const:np#871-885$<i>164","tt/l:Steven","tt/p:NE","mate/l:steven","mate/p:NE","mate/m:case:nom","mate/m:number:sg","mate/m:gender:*",">:mate/d:PNC$<i>163","xip/p:NOUN","xip/l:Steven","<>:xip/const:NOUN#871-877$<i>163","<:xip/d:COORD$<i>161",">:xip/d:VMOD$<i>144","<:xip/d:NMOD$<i>163"],["s:Swindon","i:swindon","_163#878-885","opennlp/p:NE","corenlp/ne_dewac_175m_600:I-LOC","corenlp/ne_hgc_175m_600:I-PER","cnx/l:Swindon","cnx/p:N","cnx/m:Prop","cnx/syn:@NH","tt/p:NE","mate/l:swindon","mate/p:NE","mate/m:case:dat","mate/m:number:sg","mate/m:gender:*","<:mate/d:PNC$<i>162",">:mate/d:CJ$<i>161","xip/p:NOUN","xip/l:Swindon","<>:xip/const:NOUN#878-885$<i>164",">:xip/d:NMOD$<i>162","<:xip/d:NMOD$<i>164"],["s:1995","i:1995","_164#886-890","opennlp/p:CARD","cnx/l:1995","cnx/p:NUM","cnx/syn:@NH","tt/l:1995","tt/p:CARD","mate/l:1995","mate/p:CARD",">:mate/d:MO$<i>167","xip/p:NUM","xip/l:1995","<>:xip/const:NUM#886-890$<i>165","xip/d:DATE",">:xip/d:NMOD$<i>163"],["s:in","i:in","_165#891-893","opennlp/p:APPR","cnx/l:in","cnx/p:PREP","cnx/syn:@PREMARK","tt/l:in","tt/p:APPR","mate/l:in","mate/p:APPR",">:mate/d:MO$<i>167","<:mate/d:NK$<i>166","xip/p:PREP","xip/l:in","<>:xip/const:PREP#891-893$<i>166"],["s:Suffolk","i:suffolk","_166#894-901","opennlp/p:NN","corenlp/ne_dewac_175m_600:I-LOC","corenlp/ne_hgc_175m_600:I-LOC","cnx/l:suff","cnx/l:folk","cnx/p:N","cnx/syn:@NH","<>:cnx/const:np#894-901$<i>167","tt/l:Suffolk","tt/p:NN","mate/l:suffolk","mate/p:NE","mate/m:case:dat","mate/m:number:sg","mate/m:gender:neut",">:mate/d:NK$<i>165","xip/p:NOUN","xip/l:Suff","xip/l:Folk","xip/l:Sufffolk","<>:xip/const:NOUN#894-901$<i>167"],["s:gegründet","i:gegründet","_167#902-911","opennlp/p:VVPP","cnx/l:gegründet","cnx/p:A","cnx/syn:@NH","tt/l:gründen","tt/p:VVPP","mate/l:gründen","mate/p:VVPP","<:mate/d:SBP$<i>149","<:mate/d:MO$<i>158","<:mate/d:MO$<i>164","<:mate/d:MO$<i>165",">:mate/d:OC$<i>168","xip/p:VERB","xip/l:gründen","<>:xip/const:VERB#902-911$<i>168",">:xip/d:AUXIL$<i>168"],["s:worden","i:worden","_168#912-918","opennlp/p:VAPP","cnx/l:werden","cnx/p:V","cnx/m:PCP","cnx/m:PERF","cnx/syn:@AUX","tt/l:werden","tt/p:VAPP","mate/l:werden","mate/p:VAPP","<:mate/d:OC$<i>167",">:mate/d:OC$<i>169","xip/p:VERB","xip/l:werden","<>:xip/const:VERB#912-918$<i>169","<:xip/d:AUXIL$<i>167"],["s:war","i:war","_169#919-922","opennlp/p:VAFIN","cnx/l:sein","cnx/p:V","cnx/m:IND","cnx/m:PAST","cnx/syn:@MAIN","tt/l:sein","tt/p:VAFIN","mate/l:sein","mate/p:VAFIN","mate/m:number:sg","mate/m:person:3","mate/m:tense:past","mate/m:mood:ind","<:mate/d:SB$<i>148","<:mate/d:OC$<i>168","xip/p:VERB","xip/l:sein","<>:xip/const:MC#919-922$<i>170<b>1","<>:xip/const:VERB#919-922$<i>170","xip/d:VMAIN"],["s:Zu","i:zu","_170#924-926","<>:s#924-1001$<i>180","opennlp/p:APPR","cnx/l:zu","cnx/p:PREP","cnx/syn:@PREMARK","tt/l:zu","tt/p:APPR","mate/l:zu","mate/p:APPR",">:mate/d:MO$<i>172","<:mate/d:NK$<i>171","xip/p:PREP","xip/l:zu","<>:xip/const:PREP#924-926$<i>171","<>:xip/const:TOP#924-1001$<i>180","<>:xip/const:MC#924-969$<i>178<b>1","<>:xip/const:PP#924-933$<i>172<b>2"],["s:Anfang","i:anfang","_171#927-933","opennlp/p:NN","cnx/l:anfang","cnx/p:N","cnx/syn:@NH","<>:cnx/const:np#927-933$<i>172","tt/l:Anfang","tt/p:NN","mate/l:anfang","mate/p:NN","mate/m:case:dat","mate/m:number:sg","mate/m:gender:masc",">:mate/d:NK$<i>170","xip/p:NOUN","xip/l:Anfang","<>:xip/const:NP#927-933$<i>172<b>3","<>:xip/const:NPA#927-933$<i>172<b>4","<>:xip/const:NOUN#927-933$<i>172"],["s:verdienten","i:verdienten","_172#934-944","opennlp/p:VVFIN","cnx/l:verdienen","cnx/p:V","cnx/m:IND","cnx/m:PAST","cnx/syn:@MAIN","tt/l:verdienen","tt/p:VVFIN","mate/l:verdienen","mate/p:VVFIN","mate/m:number:pl","mate/m:person:3","mate/m:tense:past","mate/m:mood:ind","<:mate/d:MO$<i>170","<:mate/d:SB$<i>173","<:mate/d:OA$<i>175","xip/p:VERB","xip/l:verdienen","<>:xip/const:VERB#934-944$<i>173","xip/d:VMAIN","<:xip/d:SUBJ$<i>173","<:xip/d:OBJ$<i>175"],["s:sie","i:sie","_173#945-948","opennlp/p:PPER","cnx/l:sie","cnx/p:PRON","cnx/syn:@NH","tt/l:sie","tt/p:PPER","mate/l:sie","mate/p:PPER","mate/m:case:nom","mate/m:number:pl","mate/m:gender:*","mate/m:person:3",">:mate/d:SB$<i>172","xip/p:PRON","xip/l:sie","<>:xip/const:PRON#945-948$<i>174","<>:xip/const:NP#945-948$<i>174<b>2",">:xip/d:SUBJ$<i>172"],["s:ihr","i:ihr","_174#949-952","opennlp/p:PPOSAT","cnx/l:ihr","cnx/p:PRON","cnx/syn:@PREMOD","tt/l:ihr","tt/p:PPOSAT","tt/l:ihr","tt/p:PPER","mate/l:ihr","mate/p:PPOSAT","mate/m:case:acc","mate/m:number:sg","mate/m:gender:neut",">:mate/d:NK$<i>175","xip/p:DET","xip/l:ihr","<>:xip/const:DET#949-952$<i>175","<>:xip/const:NP#949-957$<i>176<b>2",">:xip/d:DETERM$<i>175"],["s:Geld","i:geld","_175#953-957","opennlp/p:NN","cnx/l:geld","cnx/p:N","cnx/syn:@NH","<>:cnx/const:np#953-969$<i>178","tt/l:Geld","tt/p:NN","mate/l:geld","mate/p:NN","mate/m:case:acc","mate/m:number:sg","mate/m:gender:neut","<:mate/d:NK$<i>174",">:mate/d:OA$<i>172","<:mate/d:MNR$<i>176","<:mate/d:APP$<i>179","xip/p:NOUN","xip/l:Geld","<>:xip/const:NOUN#953-957$<i>176","<>:xip/const:NPA#953-957$<i>176<b>3","<:xip/d:DETERM$<i>174",">:xip/d:OBJ$<i>172"],["s:mit","i:mit","_176#958-961","opennlp/p:APPR","cnx/l:mit","cnx/p:PREP","cnx/syn:@POSTMOD","tt/l:mit","tt/p:APPR","mate/l:mit","mate/p:APPR",">:mate/d:MNR$<i>175","<:mate/d:NK$<i>177","xip/p:PREP","xip/l:mit","<>:xip/const:PP#958-969$<i>178<b>2","<>:xip/const:PREP#958-961$<i>177"],["s:Jingles","i:jingles","_177#962-969","opennlp/p:NE","cnx/l:Jingles","cnx/p:N","cnx/m:Prop","cnx/syn:@NH","tt/p:NN","tt/p:NE","mate/l:jingle","mate/p:NE","mate/m:case:dat","mate/m:number:sg","mate/m:gender:neut",">:mate/d:NK$<i>176","xip/p:NOUN","xip/l:Jingle","<>:xip/const:NOUN#962-969$<i>178","<>:xip/const:NP#962-969$<i>178<b>3","<>:xip/const:NPA#962-969$<i>178<b>4"],["s:also","i:also","_178#971-975","opennlp/p:ADV","cnx/l:also","cnx/p:ADV","cnx/syn:@ADVL","tt/l:also","tt/p:ADV","mate/l:also","mate/p:ADV",">:mate/d:MO$<i>179","xip/p:ADV","xip/l:also","<>:xip/const:ADV#971-975$<i>179"],["s:Wiedererkennungsmelodien","i:wiedererkennungsmelodien","_179#976-1000","opennlp/p:NN","cnx/l:wiedererkennungsmelodie","cnx/p:N","cnx/m:PL","cnx/syn:@NH","<>:cnx/const:np#976-1000$<i>180","tt/p:ADJD","tt/p:VVFIN","tt/p:VVPP","tt/p:VVINF","tt/p:NN","mate/l:wiedererkennungsmelodien","mate/p:NN","mate/m:case:nom","mate/m:number:pl","mate/m:gender:fem","<:mate/d:MO$<i>178",">:mate/d:APP$<i>175","xip/p:NOUN","xip/l:wieder","xip/l:Erkennung","xip/l:Melodie","xip/l:Wiedererkennungsmelodie","<>:xip/const:NOUN#976-1000$<i>180","<>:xip/const:NP#976-1000$<i>180","<>:xip/const:NPA#976-1000$<i>180<b>1"],["s:Und","i:und","_180#1002-1005","<>:s#1002-1148$<i>204","opennlp/p:KON","cnx/l:und","cnx/p:CC","cnx/syn:@CC","tt/l:und","tt/p:KON","mate/l:und","mate/p:KON",">:mate/d:JU$<i>187","xip/p:CONJ","xip/l:und","<>:xip/const:CONJ#1002-1005$<i>181","<>:xip/const:TOP#1002-1148$<i>204","<>:xip/const:MC#1002-1147$<i>204<b>1"],["s:erst","i:erst","_181#1006-1010","opennlp/p:ADV","cnx/l:erst","cnx/p:ADV","cnx/syn:@ADVL","tt/l:erst","tt/p:ADV","mate/l:erst","mate/p:ADV",">:mate/d:MO$<i>182","xip/p:ADV","xip/l:erst","<>:xip/const:ADV#1006-1010$<i>182",">:xip/d:VMOD$<i>196"],["s:durch","i:durch","_182#1011-1016","opennlp/p:APPR","cnx/l:durch","cnx/p:PREP","cnx/syn:@PREMARK","tt/l:durch","tt/p:APPR","mate/l:durch","mate/p:APPR","<:mate/d:MO$<i>181",">:mate/d:MO$<i>196","<:mate/d:NK$<i>184","xip/p:PREP","xip/l:durch","<>:xip/const:PP#1011-1027$<i>185<b>2","<>:xip/const:PREP#1011-1016$<i>183"],["s:eine","i:eine","_183#1017-1021","opennlp/p:ART","cnx/l:eine","cnx/p:DET","cnx/syn:@PREMOD","tt/l:eine","tt/p:ART","mate/l:ein","mate/p:ART","mate/m:case:acc","mate/m:number:sg","mate/m:gender:fem",">:mate/d:NK$<i>184","xip/p:DET","xip/l:ein","<>:xip/const:DET#1017-1021$<i>184","<>:xip/const:NP#1017-1027$<i>185<b>3",">:xip/d:DETERM$<i>184"],["s:Reihe","i:reihe","_184#1022-1027","opennlp/p:NN","cnx/l:reihe","cnx/p:N","cnx/syn:@NH","<>:cnx/const:np#1022-1041$<i>187","tt/l:Reihe","tt/p:NN","mate/l:reihe","mate/p:NN","mate/m:case:acc","mate/m:number:sg","mate/m:gender:fem","<:mate/d:NK$<i>183",">:mate/d:NK$<i>182","<:mate/d:PG$<i>185","xip/p:NOUN","xip/l:Reihe","<>:xip/const:NOUN#1022-1027$<i>185","<>:xip/const:NPA#1022-1027$<i>185<b>4","<:xip/d:DETERM$<i>183"],["s:von","i:von","_185#1028-1031","opennlp/p:APPR","cnx/l:von","cnx/p:PREP","cnx/syn:@POSTMOD","tt/l:von","tt/p:APPR","mate/l:von","mate/p:APPR",">:mate/d:PG$<i>184","<:mate/d:NK$<i>186","xip/p:PREP","xip/l:von","<>:xip/const:PP#1028-1041$<i>187<b>2","<>:xip/const:PREP#1028-1031$<i>186"],["s:Konzerten","i:konzerten","_186#1032-1041","opennlp/p:NN","cnx/l:konzert","cnx/p:N","cnx/m:PL","cnx/syn:@NH","tt/l:Konzert","tt/p:NN","mate/l:konzert","mate/p:NN","mate/m:case:dat","mate/m:number:pl","mate/m:gender:masc",">:mate/d:NK$<i>185","xip/p:NOUN","xip/l:Konzert","<>:xip/const:NP#1032-1041$<i>187<b>3","<>:xip/const:NPA#1032-1041$<i>187<b>4","<>:xip/const:NOUN#1032-1041$<i>187"],["s:wurden","i:wurden","_187#1042-1048","opennlp/p:VAFIN","cnx/l:werden","cnx/p:V","cnx/m:IND","cnx/m:PAST","cnx/syn:@AUX","tt/l:werden","tt/p:VAFIN","mate/l:werden","mate/p:VAFIN","mate/m:number:pl","mate/m:person:3","mate/m:tense:past","mate/m:mood:ind","<:mate/d:JU$<i>180","<:mate/d:SB$<i>188","<:mate/d:OC$<i>196","xip/p:VERB","xip/l:werden","<>:xip/const:VERB#1042-1048$<i>188","<:xip/d:AUXIL$<i>196"],["s:sie","i:sie","_188#1049-1052","opennlp/p:PPER","cnx/l:sie","cnx/p:PRON","cnx/syn:@NH","tt/l:sie","tt/p:PPER","mate/l:sie","mate/p:PPER","mate/m:case:nom","mate/m:number:pl","mate/m:gender:*","mate/m:person:3",">:mate/d:SB$<i>187","xip/p:PRON","xip/l:sie","<>:xip/const:PRON#1049-1052$<i>189","<>:xip/const:NP#1049-1052$<i>189<b>2",">:xip/d:SUBJ$<i>196","<:xip/d:NMOD$<i>189"],["s:1996","i:1996","_189#1053-1057","opennlp/p:CARD","cnx/l:1996","cnx/p:NUM","cnx/syn:@NH","tt/l:1996","tt/p:CARD","mate/l:1996","mate/p:CARD",">:mate/d:MO$<i>196","xip/p:NUM","xip/l:1996","<>:xip/const:NUM#1053-1057$<i>190","<>:xip/const:NP#1053-1057$<i>190<b>2","<>:xip/const:NPA#1053-1057$<i>190<b>3","<>:xip/const:NUM#1053-1057$<i>190<b>4","xip/d:DATE",">:xip/d:NMOD$<i>188"],["s:im","i:im","_190#1058-1060","opennlp/p:APPRART","tt/l:im","tt/p:APPRART","mate/l:in","mate/p:APPRART","mate/m:case:dat","mate/m:number:sg","mate/m:gender:neut",">:mate/d:MO$<i>196","<:mate/d:NK$<i>192","xip/p:PREP","xip/l:in","<>:xip/const:PP#1058-1081$<i>194<b>2","<>:xip/const:PREP#1058-1060$<i>191"],["s:Londoner","i:londoner","_191#1061-1069","opennlp/p:ADJA","corenlp/ne_dewac_175m_600:I-MISC","corenlp/ne_hgc_175m_600:I-MISC","cnx/l:Londoner","cnx/p:N","cnx/syn:@PREMOD","<>:cnx/const:np#1061-1088$<i>195","tt/l:Londoner","tt/p:ADJA","mate/l:londoner","mate/p:ADJA","mate/m:case:*","mate/m:number:*","mate/m:gender:*","mate/m:degree:pos",">:mate/d:NK$<i>192","xip/p:ADJ","xip/l:Londoner","<>:xip/const:ADJ#1061-1069$<i>192","<>:xip/const:NP#1061-1081$<i>194<b>3","<>:xip/const:NP#1061-1075$<i>193<b>4","<>:xip/const:NPA#1061-1075$<i>193<b>5","<>:xip/const:AP#1061-1069$<i>192<b>6",">:xip/d:NMOD$<i>192"],["s:Kings","i:kings","_192#1070-1075","opennlp/p:NN","corenlp/ne_dewac_175m_600:I-ORG","corenlp/ne_hgc_175m_600:I-ORG","cnx/l:Kings","cnx/p:N","cnx/m:Prop","cnx/syn:@PREMOD","tt/l:King","tt/p:NE","mate/l:king","mate/p:NN","mate/m:case:gen","mate/m:number:sg","mate/m:gender:masc","<:mate/d:NK$<i>191",">:mate/d:NK$<i>190","<:mate/d:NK$<i>194","xip/p:NOUN","xip/l:King","<>:xip/const:NOUN#1070-1075$<i>193","<:xip/d:NMOD$<i>191",">:xip/d:NMOD$<i>193"],["s:Cross","i:cross","_193#1076-1081","opennlp/p:NE","corenlp/ne_dewac_175m_600:I-ORG","corenlp/ne_hgc_175m_600:I-ORG","cnx/l:Cross","cnx/p:N","cnx/m:Prop","cnx/syn:@PREMOD","tt/p:NE","mate/l:cross","mate/p:NE","mate/m:case:nom","mate/m:number:sg","mate/m:gender:masc",">:mate/d:PNC$<i>194","xip/p:NOUN","xip/l:Cross","<>:xip/const:NPA#1076-1081$<i>194<b>4","<>:xip/const:NOUN#1076-1081$<i>194","<:xip/d:NMOD$<i>192"],["s:Splash","i:splash","_194#1082-1088","opennlp/p:NE","corenlp/ne_dewac_175m_600:I-ORG","corenlp/ne_hgc_175m_600:I-ORG","cnx/l:splash","cnx/p:N","cnx/syn:@NH","tt/p:NE","mate/l:splash","mate/p:NE","mate/m:case:nom","mate/m:number:sg","mate/m:gender:masc","<:mate/d:PNC$<i>193",">:mate/d:NK$<i>192","xip/p:NOUN","xip/l:Splash","<>:xip/const:NP#1082-1093$<i>196<b>2","<>:xip/const:NPA#1082-1093$<i>196<b>3","<>:xip/const:NOUN#1082-1093$<i>196<b>4","<>:xip/const:NOUN#1082-1088$<i>195"],["s:Club","i:club","_195#1089-1093","opennlp/p:NE","corenlp/ne_dewac_175m_600:I-ORG","corenlp/ne_hgc_175m_600:I-ORG","cnx/l:club","cnx/p:N","cnx/syn:@NH","<>:cnx/const:np#1089-1093$<i>196","tt/l:Club","tt/p:NN","mate/l:club","mate/p:NN","mate/m:case:nom","mate/m:number:sg","mate/m:gender:masc",">:mate/d:OA$<i>196","xip/p:NOUN","xip/l:Club","<>:xip/const:NOUN#1089-1093$<i>196"],["s:entdeckt","i:entdeckt","_196#1094-1102","opennlp/p:VVPP","cnx/l:entdecken","cnx/p:V","cnx/m:PCP","cnx/m:PERF","cnx/syn:@MAIN","tt/l:entdecken","tt/p:VVPP","mate/l:entdecken","mate/p:VVPP","<:mate/d:MO$<i>182","<:mate/d:MO$<i>189","<:mate/d:MO$<i>190","<:mate/d:OA$<i>195",">:mate/d:OC$<i>187","<:mate/d:CD$<i>197","xip/p:VERB","xip/l:entdecken","<>:xip/const:VERB#1094-1102$<i>197","<:xip/d:VMOD$<i>181","<:xip/d:SUBJ$<i>188",">:xip/d:AUXIL$<i>187","xip/d:VMAIN"],["s:und","i:und","_197#1103-1106","opennlp/p:KON","cnx/l:und","cnx/p:CC","cnx/syn:@CC","tt/l:und","tt/p:KON","mate/l:und","mate/p:KON",">:mate/d:CD$<i>196","<:mate/d:CJ$<i>203","xip/p:CONJ","xip/l:und","<>:xip/const:CONJ#1103-1106$<i>198"],["s:von","i:von","_198#1107-1110","opennlp/p:APPR","cnx/l:von","cnx/p:PREP","cnx/syn:@PREMARK","tt/l:von","tt/p:APPR","mate/l:von","mate/p:APPR",">:mate/d:MO$<i>203","<:mate/d:NK$<i>200","xip/p:PREP","xip/l:von","<>:xip/const:PREP#1107-1110$<i>199","<>:xip/const:PP#1107-1124$<i>201<b>2"],["s:Lodon","i:lodon","_199#1111-1116","opennlp/p:NE","corenlp/ne_dewac_175m_600:I-ORG","corenlp/ne_hgc_175m_600:I-PER","cnx/l:lodon","cnx/p:N","cnx/syn:@PREMOD","<>:cnx/const:np#1111-1124$<i>201","tt/p:NE","tt/p:NN","mate/l:lodon","mate/p:NE","mate/m:case:nom","mate/m:number:sg","mate/m:gender:masc",">:mate/d:PNC$<i>200","xip/p:NOUN","xip/l:Lodon","<>:xip/const:NP#1111-1124$<i>201<b>3","<>:xip/const:NPA#1111-1124$<i>201<b>4","<>:xip/const:NOUN#1111-1124$<i>201<b>5","<>:xip/const:NOUN#1111-1116$<i>200"],["s:Records","i:records","_200#1117-1124","opennlp/p:NE","corenlp/ne_dewac_175m_600:I-ORG","corenlp/ne_hgc_175m_600:I-PER","cnx/l:Record","cnx/p:N","cnx/m:Prop","cnx/syn:@NH","tt/l:Record","tt/p:NN","mate/l:record","mate/p:NE","mate/m:case:dat","mate/m:number:sg","mate/m:gender:masc","<:mate/d:PNC$<i>199",">:mate/d:NK$<i>198","xip/p:NOUN","xip/l:Record","<>:xip/const:NOUN#1117-1124$<i>201"],["s:unter","i:unter","_201#1125-1130","opennlp/p:APPR","cnx/l:unter","cnx/p:ADV","cnx/syn:@ADVL","tt/l:unter","tt/p:APPR","mate/l:unter","mate/p:APPR",">:mate/d:CVC$<i>203","<:mate/d:NK$<i>202","xip/p:PREP","xip/l:unter","<>:xip/const:PP#1125-1138$<i>203<b>2","<>:xip/const:PREP#1125-1130$<i>202"],["s:Vertrag","i:vertrag","_202#1131-1138","opennlp/p:NN","cnx/l:vertrag","cnx/p:N","cnx/syn:@NH","<>:cnx/const:np#1131-1138$<i>203","tt/l:Vertrag","tt/p:NN","mate/l:vertrag","mate/p:NN","mate/m:case:dat","mate/m:number:sg","mate/m:gender:masc",">:mate/d:NK$<i>201","xip/p:NOUN","xip/l:Vertrag","<>:xip/const:NP#1131-1138$<i>203<b>3","<>:xip/const:NPA#1131-1138$<i>203<b>4","<>:xip/const:NOUN#1131-1138$<i>203"],["s:genommen","i:genommen","_203#1139-1147","opennlp/p:VVPP","cnx/l:nehmen","cnx/p:V","cnx/m:PCP","cnx/m:PERF","cnx/syn:@MAIN","tt/l:nehmen","tt/p:VVPP","mate/l:nehmen","mate/p:VVPP","<:mate/d:MO$<i>198","<:mate/d:CVC$<i>201",">:mate/d:CJ$<i>197","xip/p:VERB","xip/l:nehmen","<>:xip/const:VERB#1139-1147$<i>204"],["s:Unter","i:unter","_204#1149-1154","<>:s#1149-1281$<i>225","opennlp/p:APPR","cnx/l:unter","cnx/p:PREP","cnx/syn:@PREMARK","tt/l:unter","tt/p:APPR","mate/l:unter","mate/p:APPR",">:mate/d:MO$<i>207","<:mate/d:NK$<i>206","xip/p:PREP","xip/l:unter","<>:xip/const:TOP#1149-1281$<i>225","<>:xip/const:MC#1149-1281$<i>225<b>1","<>:xip/const:PP#1149-1167$<i>207<b>2","<>:xip/const:PREP#1149-1154$<i>205"],["s:diesem","i:diesem","_205#1155-1161","opennlp/p:PDAT","cnx/l:dieser","cnx/p:PRON","cnx/syn:@PREMOD","tt/l:diese","tt/p:PDAT","mate/l:dieser","mate/p:PDAT","mate/m:case:dat","mate/m:number:sg","mate/m:gender:masc",">:mate/d:NK$<i>206","xip/p:DET","xip/l:dies","<>:xip/const:NP#1155-1167$<i>207<b>3","<>:xip/const:DET#1155-1161$<i>206",">:xip/d:DETERM$<i>206"],["s:Label","i:label","_206#1162-1167","opennlp/p:NN","cnx/l:Label","cnx/p:N","cnx/m:Prop","cnx/syn:@NH","<>:cnx/const:np#1162-1167$<i>207","tt/l:Label","tt/p:NN","mate/l:label","mate/p:NN","mate/m:case:dat","mate/m:number:sg","mate/m:gender:masc","<:mate/d:NK$<i>205",">:mate/d:NK$<i>204","xip/p:NOUN","xip/l:Label","<>:xip/const:NPA#1162-1167$<i>207<b>4","<>:xip/const:NOUN#1162-1167$<i>207","<:xip/d:DETERM$<i>205"],["s:nahmen","i:nahmen","_207#1168-1174","opennlp/p:VVFIN","cnx/l:nehmen","cnx/p:V","cnx/m:IND","cnx/m:PAST","cnx/syn:@MAIN","tt/l:nehmen","tt/p:VVFIN","mate/l:nehmen","mate/p:VVFIN","mate/m:number:pl","mate/m:person:3","mate/m:tense:past","mate/m:mood:ind","<:mate/d:MO$<i>204","<:mate/d:SB$<i>208","<:mate/d:SVP$<i>213","xip/p:VERB","xip/l:nehmen","<>:xip/const:VERB#1168-1174$<i>208","xip/d:VMAIN","<:xip/d:SUBJ$<i>208"],["s:sie","i:sie","_208#1175-1178","opennlp/p:PPER","cnx/l:sie","cnx/p:PRON","cnx/syn:@NH","tt/l:sie","tt/p:PPER","mate/l:sie","mate/p:PPER","mate/m:case:nom","mate/m:number:pl","mate/m:gender:*","mate/m:person:3",">:mate/d:SB$<i>207","xip/p:PRON","xip/l:sie","<>:xip/const:NP#1175-1178$<i>209<b>2","<>:xip/const:PRON#1175-1178$<i>209",">:xip/d:SUBJ$<i>207"],["s:\"How","i:\"how","_209#1179-1183","opennlp/p:NE"],["s:Ace","i:ace","_210#1184-1187","opennlp/p:NE","corenlp/ne_dewac_175m_600:I-ORG","cnx/l:Ace","cnx/p:N","cnx/m:Prop","cnx/syn:@PREMOD","tt/p:NE","mate/l:ace","mate/p:NE","mate/m:case:nom","mate/m:number:sg","mate/m:gender:fem","xip/p:NOUN","xip/l:Ace","<>:xip/const:NOUN#1184-1187$<i>211"],["s:Are","i:are","_211#1188-1191","opennlp/p:NE","corenlp/ne_dewac_175m_600:I-ORG","cnx/l:Are","cnx/p:N","cnx/m:Prop","cnx/syn:@NH","tt/p:NE","mate/l:ar","mate/p:NE","mate/m:case:nom","mate/m:number:sg","mate/m:gender:fem","xip/p:NOUN","xip/l:Ar","<>:xip/const:NOUN#1188-1191$<i>212"],["s:Buildings\"","i:buildings\"","_212#1192-1202","opennlp/p:NE"],["s:auf","i:auf","_213#1203-1206","opennlp/p:PTKVZ","cnx/l:auf","cnx/p:ADV","cnx/syn:@ADVL","tt/l:auf","tt/p:PTKVZ","mate/l:auf","mate/p:PTKVZ",">:mate/d:SVP$<i>207","xip/p:PTCL","xip/l:auf","<>:xip/const:PTCL#1203-1206$<i>214"],["s:dass","i:dass","_214#1208-1212","opennlp/p:KOUS","cnx/l:dass","cnx/p:CS","cnx/syn:@PREMARK","tt/l:dass","tt/p:KOUS","mate/l:dass","mate/p:KOUS",">:mate/d:CP$<i>224","xip/p:CONJ","xip/l:dass","<>:xip/const:CONJ#1208-1212$<i>215","<>:xip/const:SC#1208-1280$<i>225",">:xip/d:CONNECT$<i>224"],["s:trotz","i:trotz","_215#1213-1218","opennlp/p:APPR","cnx/l:trotz","cnx/p:PREP","cnx/syn:@PREMARK","tt/l:trotz","tt/p:APPR","mate/l:trotz","mate/p:APPR",">:mate/d:MO$<i>224","<:mate/d:NK$<i>217","xip/p:PREP","xip/l:trotz","<>:xip/const:PREP#1213-1218$<i>216","<>:xip/const:PP#1213-1229$<i>218<b>1"],["s:einer","i:einer","_216#1219-1224","opennlp/p:ART","cnx/l:eine","cnx/p:DET","cnx/syn:@PREMOD","tt/l:eine","tt/p:ART","mate/l:ein","mate/p:ART","mate/m:case:dat","mate/m:number:sg","mate/m:gender:fem",">:mate/d:NK$<i>217","xip/p:DET","xip/l:ein","<>:xip/const:NP#1219-1229$<i>218<b>2","<>:xip/const:DET#1219-1224$<i>217",">:xip/d:DETERM$<i>217"],["s:Tour","i:tour","_217#1225-1229","opennlp/p:NN","cnx/l:tour","cnx/p:N","cnx/syn:@NH","<>:cnx/const:np#1225-1247$<i>221","tt/l:Tour","tt/p:NN","mate/l:tour","mate/p:NN","mate/m:case:dat","mate/m:number:sg","mate/m:gender:fem","<:mate/d:NK$<i>216",">:mate/d:NK$<i>215","<:mate/d:MNR$<i>218","xip/p:NOUN","xip/l:Tour","<>:xip/const:NOUN#1225-1229$<i>218","<>:xip/const:NPA#1225-1229$<i>218<b>3","<:xip/d:DETERM$<i>216"],["s:von","i:von","_218#1230-1233","opennlp/p:APPR","cnx/l:von","cnx/p:PREP","cnx/syn:@POSTMOD","tt/l:von","tt/p:APPR","mate/l:von","mate/p:APPR",">:mate/d:MNR$<i>217","<:mate/d:NK$<i>220","xip/p:PREP","xip/l:von","<>:xip/const:PREP#1230-1233$<i>219","<>:xip/const:PP#1230-1247$<i>221<b>1"],["s:217","i:217","_219#1234-1237","opennlp/p:CARD","cnx/l:217","cnx/p:NUM","cnx/syn:@PREMOD","tt/l:@card@","tt/p:CARD","mate/l:217","mate/p:CARD",">:mate/d:NK$<i>220","xip/p:NUM","xip/l:217","<>:xip/const:NUM#1234-1237$<i>220","<>:xip/const:NP#1234-1247$<i>221<b>2","<>:xip/const:NPA#1234-1247$<i>221<b>3","<>:xip/const:NUM#1234-1237$<i>220<b>4",">:xip/d:NMOD$<i>220"],["s:Konzerten","i:konzerten","_220#1238-1247","opennlp/p:NN","cnx/l:konzert","cnx/p:N","cnx/m:PL","cnx/syn:@NH","tt/l:Konzert","tt/p:NN","mate/l:konzert","mate/p:NN","mate/m:case:dat","mate/m:number:pl","mate/m:gender:masc","<:mate/d:NK$<i>219",">:mate/d:NK$<i>218","xip/p:NOUN","xip/l:Konzert","<>:xip/const:NOUN#1238-1247$<i>221","<:xip/d:NMOD$<i>219"],["s:nicht","i:nicht","_221#1248-1253","opennlp/p:PTKNEG","cnx/l:nicht","cnx/p:ADV","cnx/syn:@ADVL","tt/l:nicht","tt/p:PTKNEG","mate/l:nicht","mate/p:PTKNEG",">:mate/d:NG$<i>224","xip/p:NEGAT","xip/l:nicht","<>:xip/const:NEGAT#1248-1253$<i>222",">:xip/d:NEGAT$<i>223"],["s:sonderlich","i:sonderlich","_222#1254-1264","opennlp/p:ADJD","cnx/l:sonderlich","cnx/p:A","cnx/syn:@PREMOD","tt/l:sonderlich","tt/p:ADJD","mate/l:sonderlich","mate/p:ADJD","mate/m:degree:pos",">:mate/d:MO$<i>223","xip/p:ADJ","xip/l:sonderlich","<>:xip/const:ADJ#1254-1264$<i>223","<>:xip/const:AP#1254-1276$<i>224<b>1",">:xip/d:ADJMOD$<i>223"],["s:erfolgreich","i:erfolgreich","_223#1265-1276","opennlp/p:ADJD","cnx/l:erfolg","cnx/l:reich","cnx/p:A","cnx/syn:@NH","tt/l:erfolgreich","tt/p:ADJD","mate/l:erfolgreich","mate/p:ADJD","mate/m:degree:pos","<:mate/d:MO$<i>222",">:mate/d:PD$<i>224","xip/p:ADJ","xip/l:erfolgreich","<>:xip/const:ADJ#1265-1276$<i>224","<:xip/d:NEGAT$<i>221","<:xip/d:ADJMOD$<i>222",">:xip/d:PRED$<i>224"],["s:war","i:war","_224#1277-1280","opennlp/p:VAFIN","cnx/l:sein","cnx/p:V","cnx/m:IND","cnx/m:PAST","cnx/syn:@MAIN","tt/l:sein","tt/p:VAFIN","mate/l:sein","mate/p:VAFIN","mate/m:number:sg","mate/m:person:3","mate/m:tense:past","mate/m:mood:ind","<:mate/d:CP$<i>214","<:mate/d:MO$<i>215","<:mate/d:NG$<i>221","<:mate/d:PD$<i>223","xip/p:VERB","xip/l:sein","<>:xip/const:VERB#1277-1280$<i>225","<:xip/d:CONNECT$<i>214","<:xip/d:PRED$<i>223","xip/d:VMAIN"],["s:So","i:so","_225#1282-1284","<>:s#1282-1360$<i>240","opennlp/p:ADV","cnx/l:so","cnx/p:ADV","cnx/syn:@ADVL","tt/l:so","tt/p:ADV","mate/l:so","mate/p:ADV",">:mate/d:MO$<i>226","xip/p:ADV","xip/l:so","<>:xip/const:TOP#1282-1360$<i>240","<>:xip/const:MC#1282-1320$<i>232<b>1","<>:xip/const:ADV#1282-1284$<i>226",">:xip/d:VMOD$<i>226"],["s:verließ","i:verließ","_226#1285-1292","opennlp/p:VVFIN","cnx/l:verlassen","cnx/p:V","cnx/m:IND","cnx/m:PAST","cnx/syn:@MAIN","tt/l:verlassen","tt/p:VVFIN","mate/l:verlassen","mate/p:VVFIN","mate/m:number:sg","mate/m:person:3","mate/m:tense:past","mate/m:mood:ind","<:mate/d:MO$<i>225","<:mate/d:MO$<i>227","<:mate/d:OA$<i>229","<:mate/d:OA$<i>231","<:mate/d:CD$<i>232","xip/p:VERB","xip/l:verlassen","<>:xip/const:VERB#1285-1292$<i>227","<:xip/d:VMOD$<i>225","xip/d:VMAIN"],["s:1997","i:1997","_227#1293-1297","opennlp/p:CARD","cnx/l:1997","cnx/p:NUM","cnx/syn:@PREMOD","tt/l:1997","tt/p:CARD","mate/l:1997","mate/p:CARD",">:mate/d:MO$<i>226","xip/p:NUM","xip/l:1997","<>:xip/const:NP#1293-1311$<i>230<b>2","<>:xip/const:NPA#1293-1311$<i>230<b>3","<>:xip/const:NUM#1293-1297$<i>228<b>4","<>:xip/const:NUM#1293-1297$<i>228"],["s:Steve","i:steve","_228#1298-1303","opennlp/p:NE","corenlp/ne_dewac_175m_600:I-PER","corenlp/ne_hgc_175m_600:I-PER","cnx/l:Steve","cnx/p:N","cnx/m:Prop","cnx/syn:@PREMOD","<>:cnx/const:np#1298-1311$<i>230","tt/l:Steve","tt/p:NE","mate/l:steve","mate/p:NE","mate/m:case:nom","mate/m:number:sg","mate/m:gender:fem",">:mate/d:PNC$<i>229","xip/p:NOUN","xip/l:Steve","<>:xip/const:NOUN#1298-1303$<i>229","<>:xip/const:NOUN#1298-1311$<i>230<b>4"],["s:Swindon","i:swindon","_229#1304-1311","opennlp/p:NE","corenlp/ne_dewac_175m_600:I-PER","corenlp/ne_hgc_175m_600:I-PER","cnx/l:Swindon","cnx/p:N","cnx/m:Prop","cnx/syn:@NH","tt/p:NE","mate/l:swindon","mate/p:NE","mate/m:case:nom","mate/m:number:sg","mate/m:gender:fem","<:mate/d:PNC$<i>228",">:mate/d:OA$<i>226","xip/p:NOUN","xip/l:Swindon","<>:xip/const:NOUN#1304-1311$<i>230"],["s:die","i:die","_230#1312-1315","opennlp/p:ART","cnx/l:die","cnx/p:DET","cnx/syn:@PREMOD","tt/l:die","tt/p:ART","mate/l:der","mate/p:ART","mate/m:case:nom","mate/m:number:sg","mate/m:gender:fem",">:mate/d:NK$<i>231","xip/p:DET","xip/l:die","<>:xip/const:NP#1312-1320$<i>232<b>2","<>:xip/const:DET#1312-1315$<i>231",">:xip/d:DETERM$<i>231"],["s:Band","i:band","_231#1316-1320","opennlp/p:NN","cnx/l:Band","cnx/p:N","cnx/m:Prop","cnx/syn:@PREMOD","<>:cnx/const:np#1316-1338$<i>236","tt/l:Band","tt/p:NN","mate/l:band","mate/p:NN","mate/m:case:nom","mate/m:number:sg","mate/m:gender:fem","<:mate/d:NK$<i>230",">:mate/d:OA$<i>226","xip/p:NOUN","xip/l:Band","<>:xip/const:NPA#1316-1320$<i>232<b>3","<>:xip/const:NOUN#1316-1320$<i>232","<:xip/d:DETERM$<i>230"],["s:und","i:und","_232#1321-1324","opennlp/p:KON","cnx/l:und","cnx/p:CC","cnx/syn:@CC","tt/l:und","tt/p:KON","mate/l:und","mate/p:KON",">:mate/d:CD$<i>226","<:mate/d:RS$<i>236","xip/p:CONJ","xip/l:und","<>:xip/const:MC#1321-1359$<i>240<b>1","<>:xip/const:CONJ#1321-1324$<i>233"],["s:Dan","i:dan","_233#1325-1328","opennlp/p:NE","corenlp/ne_dewac_175m_600:I-PER","corenlp/ne_hgc_175m_600:I-PER","cnx/l:Dan","cnx/p:N","cnx/m:Prop","cnx/syn:@PREMOD","tt/l:Dan","tt/p:NE","mate/l:dan","mate/p:NE","xip/p:NOUN","xip/l:Dan","<>:xip/const:NP#1325-1338$<i>236<b>2","<>:xip/const:NPA#1325-1338$<i>236<b>3","<>:xip/const:NOUN#1325-1338$<i>236<b>4","<>:xip/const:NOUN#1325-1328$<i>234"],["s:P.","i:p.","_234#1329-1331","opennlp/p:NE","corenlp/ne_dewac_175m_600:I-PER","corenlp/ne_hgc_175m_600:I-PER","cnx/l:P.","cnx/p:N","cnx/syn:@PREMOD","tt/l:P.","tt/p:NE","xip/p:SYMBOL","xip/l:P.","<>:xip/const:SYMBOL#1329-1331$<i>235"],["s:Carter","i:carter","_235#1332-1338","opennlp/p:NE","corenlp/ne_dewac_175m_600:I-PER","corenlp/ne_hgc_175m_600:I-PER","cnx/l:Carter","cnx/p:N","cnx/m:Prop","cnx/syn:@NH","tt/l:Carter","tt/p:NE","mate/l:carter","mate/p:NN","mate/m:case:acc","mate/m:number:sg","mate/m:gender:masc",">:mate/d:SB$<i>236","xip/p:NOUN","xip/l:Carter","<>:xip/const:NOUN#1332-1338$<i>236"],["s:trat","i:trat","_236#1339-1343","opennlp/p:VVFIN","cnx/l:treten","cnx/p:V","cnx/m:IND","cnx/m:PAST","cnx/syn:@MAIN","tt/l:treten","tt/p:VVFIN","mate/l:treten","mate/p:VVFIN","mate/m:number:sg","mate/m:person:3","mate/m:tense:past","mate/m:mood:ind","<:mate/d:SB$<i>235",">:mate/d:RS$<i>232","<:mate/d:MO$<i>237","xip/p:VERB","xip/l:treten","<>:xip/const:VERB#1339-1343$<i>237","xip/d:VMAIN"],["s:an","i:an","_237#1344-1346","opennlp/p:APPR","cnx/l:an","cnx/p:PREP","cnx/syn:@PREMARK","tt/l:an","tt/p:APPR","mate/l:an","mate/p:APPR",">:mate/d:MO$<i>236","<:mate/d:NK$<i>239","xip/p:PREP","xip/l:an","<>:xip/const:PP#1344-1359$<i>240<b>2","<>:xip/const:PREP#1344-1346$<i>238"],["s:seine","i:seine","_238#1347-1352","opennlp/p:PPOSAT","cnx/l:sein","cnx/p:PRON","cnx/syn:@PREMOD","tt/l:sein","tt/p:PPOSAT","mate/l:sein","mate/p:PPOSAT","mate/m:case:acc","mate/m:number:pl","mate/m:gender:masc",">:mate/d:NK$<i>239","xip/p:DET","xip/l:sein","<>:xip/const:NP#1347-1359$<i>240<b>3","<>:xip/const:DET#1347-1352$<i>239",">:xip/d:DETERM$<i>239"],["s:Stelle","i:stelle","_239#1353-1359","opennlp/p:NN","cnx/l:stelle","cnx/p:N","cnx/syn:@NH","<>:cnx/const:np#1353-1359$<i>240","tt/l:Stelle","tt/p:NN","mate/l:stelle","mate/p:NN","mate/m:case:acc","mate/m:number:pl","mate/m:gender:masc","<:mate/d:NK$<i>238",">:mate/d:NK$<i>237","xip/p:NOUN","xip/l:Stelle","<>:xip/const:NPA#1353-1359$<i>240<b>4","<>:xip/const:NOUN#1353-1359$<i>240","<:xip/d:DETERM$<i>238"],["s:Mit","i:mit","_240#1361-1364","<>:s#1361-1442$<i>256","opennlp/p:APPR","cnx/l:mit","cnx/p:PREP","cnx/syn:@PREMARK","tt/l:mit","tt/p:APPR","mate/l:mit","mate/p:APPR",">:mate/d:MO$<i>243","<:mate/d:NK$<i>242","xip/p:PREP","xip/l:mit","<>:xip/const:TOP#1361-1442$<i>256","<>:xip/const:MC#1361-1412$<i>249<b>1","<>:xip/const:PP#1361-1380$<i>243<b>2","<>:xip/const:PREP#1361-1364$<i>241"],["s:neuer","i:neuer","_241#1365-1370","opennlp/p:ADJA","cnx/l:neu","cnx/p:A","cnx/syn:@PREMOD","<>:cnx/const:np#1365-1380$<i>243","tt/l:neu","tt/p:ADJA","mate/l:neu","mate/p:ADJA","mate/m:case:dat","mate/m:number:sg","mate/m:gender:fem","mate/m:degree:pos",">:mate/d:NK$<i>242","xip/p:ADJ","xip/l:neu","<>:xip/const:ADJ#1365-1370$<i>242","<>:xip/const:NP#1365-1380$<i>243<b>3","<>:xip/const:NPA#1365-1380$<i>243<b>4","<>:xip/const:AP#1365-1370$<i>242<b>5",">:xip/d:NMOD$<i>242"],["s:Besetzung","i:besetzung","_242#1371-1380","opennlp/p:NN","cnx/l:besetzung","cnx/p:N","cnx/syn:@NH","tt/l:Besetzung","tt/p:NN","mate/l:besetzung","mate/p:NN","mate/m:case:dat","mate/m:number:sg","mate/m:gender:fem","<:mate/d:NK$<i>241",">:mate/d:NK$<i>240","xip/p:NOUN","xip/l:Besetzung","<>:xip/const:NOUN#1371-1380$<i>243","<:xip/d:NMOD$<i>241"],["s:ging","i:ging","_243#1381-1385","opennlp/p:VVFIN","cnx/l:gehen","cnx/p:V","cnx/m:IND","cnx/m:PAST","cnx/syn:@MAIN","tt/l:gehen","tt/p:VVFIN","mate/l:gehen","mate/p:VVFIN","mate/m:number:sg","mate/m:person:3","mate/m:tense:past","mate/m:mood:ind","<:mate/d:MO$<i>240","<:mate/d:SB$<i>244","<:mate/d:MO$<i>245","<:mate/d:MO$<i>246","<:mate/d:MO$<i>247","<:mate/d:CD$<i>249","xip/p:VERB","xip/l:gehen","<>:xip/const:VERB#1381-1385$<i>244","xip/d:VMAIN","<:xip/d:SUBJ$<i>244","<:xip/d:VMOD$<i>245","<:xip/d:VMOD$<i>246"],["s:man","i:man","_244#1386-1389","opennlp/p:PIS","cnx/l:man","cnx/p:PRON","cnx/syn:@NH","tt/l:man","tt/p:PIS","mate/l:man","mate/p:PIS","mate/m:case:nom","mate/m:number:sg","mate/m:gender:*",">:mate/d:SB$<i>243","xip/p:PRON","xip/l:man","<>:xip/const:PRON#1386-1389$<i>245","<>:xip/const:NP#1386-1389$<i>245<b>2",">:xip/d:SUBJ$<i>243"],["s:dann","i:dann","_245#1390-1394","opennlp/p:ADV","cnx/l:dann","cnx/p:ADV","cnx/syn:@ADVL","tt/l:dann","tt/p:ADV","mate/l:dann","mate/p:ADV",">:mate/d:MO$<i>243","xip/p:ADV","xip/l:dann","<>:xip/const:ADV#1390-1394$<i>246",">:xip/d:VMOD$<i>243"],["s:wieder","i:wieder","_246#1395-1401","opennlp/p:ADV","cnx/l:wieder","cnx/p:ADV","cnx/syn:@ADVL","tt/l:wieder","tt/p:ADV","mate/l:wieder","mate/p:ADV",">:mate/d:MO$<i>243","xip/p:ADV","xip/l:wieder","<>:xip/const:ADV#1395-1401$<i>247",">:xip/d:VMOD$<i>243"],["s:ins","i:ins","_247#1402-1405","opennlp/p:APPRART","tt/l:ins","tt/p:APPRART","mate/l:in","mate/p:APPRART","mate/m:case:acc","mate/m:number:sg","mate/m:gender:neut",">:mate/d:MO$<i>243","<:mate/d:NK$<i>248","xip/p:PREP","xip/l:in","<>:xip/const:PREP#1402-1405$<i>248","<>:xip/const:PP#1402-1412$<i>249<b>2"],["s:Studio","i:studio","_248#1406-1412","opennlp/p:NN","cnx/l:studio","cnx/p:N","cnx/syn:@NH","<>:cnx/const:np#1406-1412$<i>249","tt/l:Studio","tt/p:NN","mate/l:studio","mate/p:NN","mate/m:case:acc","mate/m:number:sg","mate/m:gender:neut",">:mate/d:NK$<i>247","xip/p:NOUN","xip/l:Studio","<>:xip/const:NOUN#1406-1412$<i>249","<>:xip/const:NP#1406-1412$<i>249<b>3","<>:xip/const:NPA#1406-1412$<i>249<b>4"],["s:und","i:und","_249#1413-1416","opennlp/p:KON","cnx/l:und","cnx/p:CC","cnx/syn:@CC","tt/l:und","tt/p:KON","mate/l:und","mate/p:KON",">:mate/d:CD$<i>243","<:mate/d:CJ$<i>250","xip/p:CONJ","xip/l:und","<>:xip/const:MC#1413-1441$<i>256<b>1","<>:xip/const:CONJ#1413-1416$<i>250"],["s:nahm","i:nahm","_250#1417-1421","opennlp/p:VVFIN","cnx/l:nehmen","cnx/p:V","cnx/m:IND","cnx/m:PAST","cnx/syn:@MAIN","tt/l:nehmen","tt/p:VVFIN","mate/l:nehmen","mate/p:VVFIN","mate/m:number:sg","mate/m:person:3","mate/m:tense:past","mate/m:mood:ind",">:mate/d:CJ$<i>249","<:mate/d:OA$<i>253","<:mate/d:SVP$<i>258","<:mate/d:PAR$<i>259","xip/p:VERB","xip/l:nehmen","<>:xip/const:VERB#1417-1421$<i>251","xip/d:VMAIN","<:xip/d:SUBJ$<i>252","<:xip/d:OBJ$<i>253","<:xip/d:VMOD$<i>255"],["s:das","i:das","_251#1422-1425","opennlp/p:ART","cnx/l:das","cnx/p:PRON","cnx/syn:@NH","tt/l:die","tt/p:ART","mate/l:der","mate/p:ART","mate/m:case:acc","mate/m:number:sg","mate/m:gender:neut",">:mate/d:NK$<i>253","xip/p:DET","xip/l:das","<>:xip/const:NP#1422-1429$<i>253<b>2","<>:xip/const:DET#1422-1425$<i>252",">:xip/d:DETERM$<i>252"],["s:2te","i:2te","_252#1426-1429","opennlp/p:ADJA","cnx/l:2te","cnx/p:N","cnx/syn:@PREMOD","<>:cnx/const:np#1426-1435$<i>254","tt/p:ADJA","mate/l:2t","mate/p:ADJA","mate/m:case:acc","mate/m:number:sg","mate/m:gender:neut","mate/m:degree:pos",">:mate/d:NK$<i>253","xip/p:SYMBOL","xip/l:2te","<>:xip/const:NPA#1426-1429$<i>253<b>3","<>:xip/const:NOUN#1426-1429$<i>253<b>4","<>:xip/const:SYMBOL#1426-1429$<i>253","<:xip/d:DETERM$<i>251",">:xip/d:SUBJ$<i>250"],["s:Album","i:album","_253#1430-1435","opennlp/p:NN","cnx/l:album","cnx/p:N","cnx/syn:@NH","tt/l:Album","tt/p:NN","mate/l:album","mate/p:NN","mate/m:case:acc","mate/m:number:sg","mate/m:gender:neut","<:mate/d:NK$<i>251","<:mate/d:NK$<i>252",">:mate/d:OA$<i>250","<:mate/d:NK$<i>255","xip/p:NOUN","xip/l:Album","<>:xip/const:NOUN#1430-1435$<i>254","<>:xip/const:NP#1430-1435$<i>254<b>2","<>:xip/const:NPA#1430-1435$<i>254<b>3",">:xip/d:OBJ$<i>250"],["s:\"A","i:\"a","_254#1436-1438","opennlp/p:NE"],["s:vs","i:vs","_255#1439-1441","opennlp/p:NE","cnx/l:vs","cnx/p:N","cnx/m:Abbr","cnx/syn:@NH","<>:cnx/const:np#1439-1441$<i>256","tt/l:vs","tt/p:FM","mate/p:NE",">:mate/d:NK$<i>253","xip/p:ADV","xip/l:vs","<>:xip/const:ADV#1439-1441$<i>256",">:xip/d:VMOD$<i>250"],["s:Monkey","i:monkey","_256#1443-1449","<>:s#1443-1467$<i>260","opennlp/p:NE","corenlp/ne_dewac_175m_600:I-LOC","corenlp/ne_hgc_175m_600:I-PER","cnx/l:Monkey","cnx/p:N","cnx/m:Prop","cnx/syn:@PREMOD","tt/p:NE","mate/l:monkey","mate/p:NE","mate/m:case:nom","mate/m:number:sg","mate/m:gender:masc","xip/p:NOUN","xip/l:Monkey","<>:xip/const:TOP#1443-1467$<i>260","<>:xip/const:NOUN#1443-1449$<i>257"],["s:Kong\"","i:kong\"","_257#1450-1455","opennlp/p:NN"],["s:auf","i:auf","_258#1456-1459","opennlp/p:APPR","cnx/l:auf","cnx/p:ADV","cnx/syn:@ADVL","tt/l:auf","tt/p:APPR","tt/l:auf","tt/p:PTKVZ","mate/l:auf","mate/p:APPR",">:mate/d:SVP$<i>250","xip/p:PREP","xip/l:auf","<>:xip/const:PREP#1456-1459$<i>259"],["s:1999","i:1999","_259#1461-1465","opennlp/p:CARD","cnx/l:1999","cnx/p:NUM","cnx/syn:@NH","tt/l:1999","tt/p:CARD","mate/l:1999","mate/p:CARD",">:mate/d:PAR$<i>250","xip/p:NUM","xip/l:1999","<>:xip/const:NUM#1461-1465$<i>260","xip/d:DATE"],["s:Zwar","i:zwar","_260#1468-1472","<>:s#1468-1567$<i>277","opennlp/p:ADV","cnx/l:zwar","cnx/p:ADV","cnx/syn:@ADVL","tt/l:zwar","tt/p:ADV","mate/l:zwar","mate/p:ADV",">:mate/d:MO$<i>261","xip/p:ADV","xip/l:zwar","<>:xip/const:TOP#1468-1567$<i>277","<>:xip/const:MC#1468-1480$<i>263<b>1","<>:xip/const:ADV#1468-1472$<i>261",">:xip/d:VMOD$<i>261"],["s:lief","i:lief","_261#1473-1477","opennlp/p:VVFIN","cnx/l:laufen","cnx/p:V","cnx/m:IND","cnx/m:PAST","cnx/syn:@MAIN","tt/l:laufen","tt/p:VVFIN","mate/l:laufen","mate/p:VVFIN","mate/m:number:sg","mate/m:person:3","mate/m:tense:past","mate/m:mood:ind","<:mate/d:MO$<i>260","<:mate/d:EP$<i>262","<:mate/d:MO$<i>263","<:mate/d:MO$<i>270","<:mate/d:CD$<i>271","xip/p:VERB","xip/l:laufen","<>:xip/const:VERB#1473-1477$<i>262","<:xip/d:VMOD$<i>260","xip/d:VMAIN","<:xip/d:SUBJ$<i>262"],["s:es","i:es","_262#1478-1480","opennlp/p:PPER","cnx/l:es","cnx/p:PRON","cnx/syn:@NH","tt/l:es","tt/p:PPER","mate/l:es","mate/p:PPER","mate/m:case:nom","mate/m:number:sg","mate/m:gender:neut","mate/m:person:3",">:mate/d:EP$<i>261","xip/p:PRON","xip/l:es","<>:xip/const:PRON#1478-1480$<i>263","<>:xip/const:NP#1478-1480$<i>263<b>2",">:xip/d:SUBJ$<i>261"],["s:mit","i:mit","_263#1481-1484","opennlp/p:APPR","cnx/l:mit","cnx/p:PREP","cnx/syn:@PREMARK","tt/l:mit","tt/p:APPR","mate/l:mit","mate/p:APPR",">:mate/d:MO$<i>261","<:mate/d:NK$<i>265","xip/p:PREP","xip/l:mit","<>:xip/const:PREP#1481-1484$<i>264"],["s:der","i:der","_264#1485-1488","opennlp/p:ART","cnx/l:die","cnx/p:PRON","cnx/syn:@NH","tt/l:die","tt/p:ART","mate/l:der","mate/p:ART","mate/m:case:dat","mate/m:number:sg","mate/m:gender:fem",">:mate/d:NK$<i>265","xip/p:DET","xip/l:der","<>:xip/const:NP#1485-1495$<i>266<b>1","<>:xip/const:DET#1485-1488$<i>265",">:xip/d:DETERM$<i>265"],["s:Single","i:single","_265#1489-1495","opennlp/p:NE","cnx/l:single","cnx/p:N","cnx/syn:@NH","<>:cnx/const:np#1489-1495$<i>266","tt/l:Single","tt/p:NN","mate/l:single","mate/p:NN","mate/m:case:dat","mate/m:number:sg","mate/m:gender:fem","<:mate/d:NK$<i>264",">:mate/d:NK$<i>263","xip/p:NOUN","xip/l:Single","<>:xip/const:NOUN#1489-1495$<i>266","<>:xip/const:NPA#1489-1495$<i>266<b>2","<:xip/d:DETERM$<i>264","xip/d:THEMA"],["s:\"I","i:\"i","_266#1496-1498","opennlp/p:NE"],["s:Love","i:love","_267#1499-1503","opennlp/p:NE","cnx/l:Love","cnx/p:N","cnx/m:Prop","cnx/syn:@PREMOD","tt/p:NE","tt/p:NN","mate/p:FM","xip/p:NOUN","xip/l:Love","<>:xip/const:NOUN#1499-1503$<i>268"],["s:Lake","i:lake","_268#1504-1508","opennlp/p:NE","cnx/l:Lake","cnx/p:N","cnx/m:Prop","cnx/syn:@PREMOD","tt/l:Lake","tt/p:NN","mate/l:lake","mate/p:FM","xip/p:NOUN","xip/l:Lake","<>:xip/const:NOUN#1504-1508$<i>269"],["s:Tahoe\"","i:tahoe\"","_269#1509-1515","opennlp/p:NE"],["s:besser","i:besser","_270#1516-1522","opennlp/p:ADJD","cnx/l:gut","cnx/p:A","cnx/m:CMP","cnx/syn:@NH","tt/l:gut","tt/p:ADJD","mate/l:gut","mate/p:ADJD","mate/m:degree:comp",">:mate/d:MO$<i>261","xip/p:ADJ","xip/l:gut","<>:xip/const:ADJ#1516-1522$<i>271"],["s:aber","i:aber","_271#1524-1528","opennlp/p:KON","cnx/l:aber","cnx/p:CC","cnx/syn:@CC","tt/l:aber","tt/p:KON","tt/l:aber","tt/p:ADV","mate/l:aber","mate/p:KON",">:mate/d:CD$<i>261","<:mate/d:CJ$<i>273","xip/p:CONJ","xip/l:aber","<>:xip/const:CONJ#1524-1528$<i>272"],["s:'A'","i:'a'","_272#1529-1532","opennlp/p:ADV","cnx/l:A","cnx/p:N","cnx/syn:@NH","<>:cnx/const:np#1529-1532$<i>273"],["s:blieben","i:blieben","_273#1533-1540","opennlp/p:VVFIN","cnx/l:bleiben","cnx/p:V","cnx/m:IND","cnx/m:PAST","cnx/syn:@MAIN","tt/l:bleiben","tt/p:VVFIN","mate/l:bleiben","mate/p:VVFIN","mate/m:number:pl","mate/m:person:3","mate/m:tense:past","mate/m:mood:ind",">:mate/d:CJ$<i>271","<:mate/d:MO$<i>274","<:mate/d:PD$<i>276","xip/p:VERB","xip/l:bleiben","<>:xip/const:VERB#1533-1540$<i>274","xip/d:VMAIN","<:xip/d:VMOD$<i>274","<:xip/d:PRED$<i>276"],["s:trotzdem","i:trotzdem","_274#1541-1549","opennlp/p:PROAV","cnx/l:trotzdem","cnx/p:ADV","cnx/syn:@ADVL","tt/l:trotzdem","tt/p:PROAV","mate/l:trotzdem","mate/p:PROAV",">:mate/d:MO$<i>273","xip/p:ADV","xip/l:trotzdem","<>:xip/const:ADV#1541-1549$<i>275",">:xip/d:VMOD$<i>273"],["s:ein","i:ein","_275#1550-1553","opennlp/p:ART","cnx/l:ein","cnx/p:DET","cnx/syn:@PREMOD","tt/l:eine","tt/p:ART","mate/l:ein","mate/p:ART","mate/m:case:acc","mate/m:number:sg","mate/m:gender:neut",">:mate/d:NK$<i>276","xip/p:DET","xip/l:ein","<>:xip/const:DET#1550-1553$<i>276",">:xip/d:DETERM$<i>276"],["s:Insider-Tipp","i:insider-tipp","_276#1554-1566","opennlp/p:NN","cnx/l:insider","cnx/l:tipp","cnx/p:N","cnx/syn:@NH","<>:cnx/const:np#1554-1566$<i>277","tt/p:NN","mate/l:insider-tipp","mate/p:NN","mate/m:case:acc","mate/m:number:sg","mate/m:gender:neut","<:mate/d:NK$<i>275",">:mate/d:PD$<i>273","xip/p:NOUN","xip/l:Insider-Tipp","<>:xip/const:NOUN#1554-1566$<i>277","<:xip/d:DETERM$<i>275",">:xip/d:PRED$<i>273"],["s:Die","i:die","_277#1568-1571","<>:s#1568-1717$<i>300","opennlp/p:ART","cnx/l:die","cnx/p:DET","cnx/syn:@PREMOD","tt/l:die","tt/p:ART","mate/l:der","mate/p:ART","mate/m:case:nom","mate/m:number:sg","mate/m:gender:fem",">:mate/d:NK$<i>278","xip/p:DET","xip/l:die","<>:xip/const:TOP#1568-1717$<i>300","<>:xip/const:NP#1568-1585$<i>279<b>1","<>:xip/const:DET#1568-1571$<i>278",">:xip/d:DETERM$<i>278"],["s:Promotiontour","i:promotiontour","_278#1572-1585","opennlp/p:NN","cnx/l:promotion","cnx/l:tour","cnx/p:N","cnx/syn:@NH","<>:cnx/const:np#1572-1585$<i>279","tt/l:Promotiontour","tt/p:NN","mate/l:promotiontour","mate/p:NN","mate/m:case:nom","mate/m:number:sg","mate/m:gender:fem","<:mate/d:NK$<i>277",">:mate/d:SB$<i>284","<:mate/d:MNR$<i>279","xip/p:NOUN","xip/l:Promotion","xip/l:Tour","xip/l:Promotiontour","<>:xip/const:NPA#1572-1585$<i>279<b>2","<>:xip/const:NOUN#1572-1585$<i>279","<:xip/d:DETERM$<i>277","xip/d:THEMA"],["s:für","i:für","_279#1586-1589","opennlp/p:APPR","cnx/l:für","cnx/p:PREP","cnx/syn:@POSTMOD","tt/l:für","tt/p:APPR","mate/l:für","mate/p:APPR",">:mate/d:MNR$<i>278","xip/p:PREP","xip/l:für","<>:xip/const:PREP#1586-1589$<i>280"],["s:\"A","i:\"a","_280#1590-1592","opennlp/p:NE","<>:xip/const:MC#1590-1717$<i>300<b>1"],["s:vs","i:vs","_281#1593-1595","opennlp/p:NE","cnx/l:vs","cnx/p:N","cnx/m:Prop","cnx/syn:@PREMOD","tt/l:vs","tt/p:FM","mate/p:NE","xip/p:ADV","xip/l:vs","<>:xip/const:ADV#1593-1595$<i>282",">:xip/d:VMOD$<i>284"],["s:Monkey","i:monkey","_282#1596-1602","opennlp/p:NE","corenlp/ne_dewac_175m_600:I-PER","corenlp/ne_hgc_175m_600:I-PER","cnx/l:Monkey","cnx/p:N","cnx/m:Prop","cnx/syn:@PREMOD","tt/p:NE","mate/l:monkey","mate/p:NE","mate/m:case:nom","mate/m:number:sg","mate/m:gender:masc","xip/p:NOUN","xip/l:Monkey","<>:xip/const:NOUN#1596-1602$<i>283"],["s:Kong\"","i:kong\"","_283#1603-1608","opennlp/p:NE"],["s:absolvierte","i:absolvierte","_284#1609-1620","opennlp/p:VVFIN","cnx/l:absolvieren","cnx/p:V","cnx/m:IND","cnx/m:PAST","cnx/syn:@MAIN","tt/l:absolvieren","tt/p:VVFIN","mate/l:absolvieren","mate/p:VVFIN","mate/m:number:sg","mate/m:person:3","mate/m:tense:past","mate/m:mood:ind","<:mate/d:SB$<i>278","<:mate/d:OA$<i>286","<:mate/d:MO$<i>287","<:mate/d:MO$<i>288","xip/p:VERB","xip/l:absolvieren","<>:xip/const:VERB#1609-1620$<i>285","<:xip/d:VMOD$<i>281","xip/d:VMAIN","<:xip/d:OBJ$<i>286","<:xip/d:VMOD$<i>287"],["s:die","i:die","_285#1621-1624","opennlp/p:ART","cnx/l:die","cnx/p:DET","cnx/syn:@PREMOD","tt/l:die","tt/p:ART","mate/l:der","mate/p:ART","mate/m:case:nom","mate/m:number:sg","mate/m:gender:fem",">:mate/d:NK$<i>286","xip/p:DET","xip/l:die","<>:xip/const:DET#1621-1624$<i>286",">:xip/d:DETERM$<i>286"],["s:Band","i:band","_286#1625-1629","opennlp/p:NN","cnx/l:band","cnx/p:N","cnx/syn:@NH","<>:cnx/const:np#1625-1629$<i>287","tt/l:Band","tt/p:NN","mate/l:band","mate/p:NN","mate/m:case:nom","mate/m:number:sg","mate/m:gender:fem","<:mate/d:NK$<i>285",">:mate/d:OA$<i>284","xip/p:NOUN","xip/l:Band","<>:xip/const:NOUN#1625-1629$<i>287","<:xip/d:DETERM$<i>285",">:xip/d:OBJ$<i>284"],["s:größtenteils","i:größtenteils","_287#1630-1642","opennlp/p:ADV","cnx/l:grösstenteils","cnx/p:ADV","cnx/syn:@ADVL","tt/l:größtenteils","tt/p:ADV","mate/l:größtenteils","mate/p:ADV",">:mate/d:MO$<i>284","xip/p:ADV","xip/l:größtenteils","<>:xip/const:ADV#1630-1642$<i>288",">:xip/d:VMOD$<i>284"],["s:als","i:als","_288#1643-1646","opennlp/p:APPR","cnx/l:als","cnx/p:PREP","cnx/syn:@PREMARK","tt/l:als","tt/p:KOKOM","mate/l:als","mate/p:APPR",">:mate/d:MO$<i>284","<:mate/d:NK$<i>289","xip/p:PREP","xip/l:als","<>:xip/const:PREP#1643-1646$<i>289"],["s:Vorband","i:vorband","_289#1647-1654","opennlp/p:NN","cnx/l:vor","cnx/l:band","cnx/p:N","cnx/syn:@NH","<>:cnx/const:np#1647-1654$<i>290","tt/l:Vorband","tt/p:NN","mate/l:vorband","mate/p:NN","mate/m:case:nom","mate/m:number:sg","mate/m:gender:masc",">:mate/d:NK$<i>288","<:mate/d:AG$<i>291","xip/p:NOUN","xip/l:vor","xip/l:Band","xip/l:Vorband","<>:xip/const:NOUN#1647-1654$<i>290"],["s:der","i:der","_290#1655-1658","opennlp/p:ART","cnx/l:der","cnx/p:DET","cnx/syn:@PREMOD","tt/l:die","tt/p:ART","mate/l:der","mate/p:ART","mate/m:case:nom","mate/m:number:sg","mate/m:gender:masc",">:mate/d:NK$<i>291","xip/p:DET","xip/l:der","<>:xip/const:DET#1655-1658$<i>291"],["s:Bloodhound","i:bloodhound","_291#1659-1669","opennlp/p:NN","cnx/l:bloodhound","cnx/p:N","cnx/syn:@PREMOD","<>:cnx/const:np#1659-1674$<i>293","tt/p:NE","tt/p:NN","mate/l:bloodhound","mate/p:NN","mate/m:case:nom","mate/m:number:sg","mate/m:gender:masc","<:mate/d:NK$<i>290",">:mate/d:AG$<i>289","<:mate/d:NK$<i>292","<:mate/d:RC$<i>299","xip/p:NOUN","xip/l:Bloodhound","<>:xip/const:NOUN#1659-1669$<i>292"],["s:Gang","i:gang","_292#1670-1674","opennlp/p:NN","cnx/l:gang","cnx/p:N","cnx/syn:@NH","tt/l:Gang","tt/p:NN","mate/l:gang","mate/p:NN","mate/m:case:nom","mate/m:number:sg","mate/m:gender:masc",">:mate/d:NK$<i>291","xip/p:NOUN","xip/l:Gang","<>:xip/const:NOUN#1670-1674$<i>293"],["s:mit","i:mit","_293#1676-1679","opennlp/p:APPR","cnx/l:mit","cnx/p:PREP","cnx/syn:@PREMARK","tt/l:mit","tt/p:APPR","mate/l:mit","mate/p:APPR",">:mate/d:MO$<i>298","<:mate/d:NK$<i>294","xip/p:PREP","xip/l:mit","<>:xip/const:SC#1676-1716$<i>300","<>:xip/const:PP#1676-1685$<i>295<b>1","<>:xip/const:PREP#1676-1679$<i>294"],["s:denen","i:denen","_294#1680-1685","opennlp/p:PRELS","cnx/l:die","cnx/p:PRON","cnx/syn:@NH","tt/l:die","tt/p:PRELS","tt/l:die","tt/p:PDS","mate/l:der","mate/p:PRELS","mate/m:case:dat","mate/m:number:pl","mate/m:gender:neut",">:mate/d:NK$<i>293","xip/p:PRON","xip/l:die","<>:xip/const:NP#1680-1685$<i>295<b>2","<>:xip/const:PRON#1680-1685$<i>295"],["s:sie","i:sie","_295#1686-1689","opennlp/p:PPER","cnx/l:sie","cnx/p:PRON","cnx/syn:@NH","tt/l:sie","tt/p:PPER","mate/l:sie","mate/p:PPER","mate/m:case:nom","mate/m:number:pl","mate/m:gender:masc","mate/m:person:3",">:mate/d:SB$<i>299","xip/p:PRON","xip/l:sie","<>:xip/const:NP#1686-1689$<i>296<b>1","<>:xip/const:PRON#1686-1689$<i>296",">:xip/d:SUBJ$<i>298"],["s:seitdem","i:seitdem","_296#1690-1697","opennlp/p:PROAV","cnx/l:seitdem","cnx/p:ADV","cnx/syn:@ADVL","tt/l:seitdem","tt/p:PROAV","mate/l:seitdem","mate/p:PROAV",">:mate/d:MO$<i>298","xip/p:ADV","xip/l:seitdem","<>:xip/const:AP#1690-1701$<i>298<b>1","<>:xip/const:ADV#1690-1697$<i>297",">:xip/d:ADJMOD$<i>297"],["s:gut","i:gut","_297#1698-1701","opennlp/p:ADJD","cnx/l:gut","cnx/p:A","cnx/syn:@NH","tt/l:gut","tt/p:ADJD","mate/l:gut","mate/p:ADJD","mate/m:degree:pos",">:mate/d:MO$<i>298","xip/p:ADJ","xip/l:gut","<>:xip/const:ADJ#1698-1701$<i>298","<:xip/d:ADJMOD$<i>296"],["s:befreundet","i:befreundet","_298#1702-1712","opennlp/p:VVPP","cnx/l:befreunden","cnx/p:V","cnx/m:PCP","cnx/m:PERF","cnx/syn:@MAIN","tt/l:befreunden","tt/p:VVPP","mate/l:befreundet","mate/p:ADJD","<:mate/d:MO$<i>293","<:mate/d:MO$<i>296","<:mate/d:MO$<i>297",">:mate/d:PD$<i>299","xip/p:VERB","xip/l:befreunden","<>:xip/const:VERB#1702-1712$<i>299","<:xip/d:SUBJ$<i>295",">:xip/d:AUXIL$<i>299","xip/d:VMAIN"],["s:ist","i:ist","_299#1713-1716","opennlp/p:VAFIN","cnx/l:sein","cnx/p:V","cnx/m:IND","cnx/m:PRES","cnx/syn:@AUX","tt/l:sein","tt/p:VAFIN","mate/l:sein","mate/p:VAFIN","mate/m:number:sg","mate/m:person:3","mate/m:tense:pres","mate/m:mood:ind","<:mate/d:SB$<i>295","<:mate/d:PD$<i>298",">:mate/d:RC$<i>291","xip/p:VERB","xip/l:sein","<>:xip/const:VERB#1713-1716$<i>300","<:xip/d:AUXIL$<i>298"],["s:Die","i:die","_300#1718-1721","<>:s#1718-1855$<i>322","opennlp/p:ART","cnx/l:die","cnx/p:DET","cnx/syn:@PREMOD","tt/l:die","tt/p:ART","mate/l:der","mate/p:ART","mate/m:case:nom","mate/m:number:sg","mate/m:gender:fem",">:mate/d:NK$<i>301","xip/p:DET","xip/l:die","<>:xip/const:DET#1718-1721$<i>301","<>:xip/const:TOP#1718-1855$<i>322","<>:xip/const:MC#1718-1738$<i>304<b>1","<>:xip/const:NP#1718-1726$<i>302<b>2",">:xip/d:DETERM$<i>301"],["s:Tour","i:tour","_301#1722-1726","opennlp/p:NN","cnx/l:tour","cnx/p:N","cnx/syn:@NH","<>:cnx/const:np#1722-1726$<i>302","tt/l:Tour","tt/p:NN","mate/l:tour","mate/p:NN","mate/m:case:nom","mate/m:number:sg","mate/m:gender:fem","<:mate/d:NK$<i>300",">:mate/d:SB$<i>302","xip/p:NOUN","xip/l:Tour","<>:xip/const:NOUN#1722-1726$<i>302","<>:xip/const:NPA#1722-1726$<i>302<b>3","<:xip/d:DETERM$<i>300",">:xip/d:SUBJ$<i>302"],["s:endete","i:endete","_302#1727-1733","opennlp/p:VVFIN","cnx/l:enden","cnx/p:V","cnx/m:IND","cnx/m:PAST","cnx/syn:@MAIN","tt/l:enden","tt/p:VVFIN","mate/l:enden","mate/p:VVFIN","mate/m:number:sg","mate/m:person:3","mate/m:tense:past","mate/m:mood:ind","<:mate/d:SB$<i>301","<:mate/d:MO$<i>303","<:mate/d:CJ$<i>305","xip/p:VERB","xip/l:enden","<>:xip/const:VERB#1727-1733$<i>303","<:xip/d:SUBJ$<i>301","xip/d:VMAIN","<:xip/d:VMOD$<i>303"],["s:dann","i:dann","_303#1734-1738","opennlp/p:ADV","cnx/l:dann","cnx/p:ADV","cnx/syn:@ADVL","tt/l:dann","tt/p:ADV","mate/l:dann","mate/p:ADV",">:mate/d:MO$<i>302","xip/p:ADV","xip/l:dann","<>:xip/const:ADV#1734-1738$<i>304",">:xip/d:VMOD$<i>302"],["s:sie","i:sie","_304#1740-1743","opennlp/p:PPER","cnx/l:sie","cnx/p:PRON","cnx/syn:@NH","tt/l:sie","tt/p:PPER","mate/l:sie","mate/p:PPER","mate/m:case:nom","mate/m:number:pl","mate/m:gender:*","mate/m:person:3",">:mate/d:SB$<i>305","xip/p:PRON","xip/l:sie","<>:xip/const:PRON#1740-1743$<i>305","<>:xip/const:MC#1740-1847$<i>321<b>1","<>:xip/const:NP#1740-1743$<i>305<b>2",">:xip/d:SUBJ$<i>305"],["s:waren","i:waren","_305#1744-1749","opennlp/p:VAFIN","cnx/l:sein","cnx/p:V","cnx/m:IND","cnx/m:PAST","cnx/syn:@MAIN","tt/l:sein","tt/p:VAFIN","mate/l:sein","mate/p:VAFIN","mate/m:number:pl","mate/m:person:3","mate/m:tense:past","mate/m:mood:ind","<:mate/d:SB$<i>304",">:mate/d:CJ$<i>302","<:mate/d:MO$<i>309","xip/p:VERB","xip/l:sein","<>:xip/const:VERB#1744-1749$<i>306","<:xip/d:SUBJ$<i>304","xip/d:VMAIN","<:xip/d:VMOD$<i>306","<:xip/d:VMOD$<i>309","<:xip/d:NEGAT$<i>319"],["s:gerade","i:gerade","_306#1750-1756","opennlp/p:ADV","cnx/l:gerade","cnx/p:ADV","cnx/syn:@ADVL","tt/l:gerade","tt/p:ADV","mate/l:gerade","mate/p:ADV",">:mate/d:MO$<i>307","xip/p:ADV","xip/l:gerade","<>:xip/const:ADV#1750-1756$<i>307",">:xip/d:VMOD$<i>305"],["s:in","i:in","_307#1757-1759","opennlp/p:APPR","cnx/l:in","cnx/p:PREP","cnx/syn:@PREMARK","tt/l:in","tt/p:APPR","mate/l:in","mate/p:APPR","<:mate/d:MO$<i>306",">:mate/d:MO$<i>320","<:mate/d:NK$<i>308","xip/p:PREP","xip/l:in","<>:xip/const:PREP#1757-1759$<i>308","<>:xip/const:PP#1757-1771$<i>309<b>2"],["s:Deutschland","i:deutschland","_308#1760-1771","opennlp/p:NE","corenlp/ne_dewac_175m_600:I-LOC","corenlp/ne_hgc_175m_600:I-LOC","cnx/l:Deutschland","cnx/p:N","cnx/m:Prop","cnx/syn:@NH","<>:cnx/const:np#1760-1771$<i>309","tt/l:Deutschland","tt/p:NE","mate/l:deutschland","mate/p:NE","mate/m:case:dat","mate/m:number:sg","mate/m:gender:neut",">:mate/d:NK$<i>307","xip/p:NOUN","xip/l:Deutschland","<>:xip/const:NOUN#1760-1771$<i>309","<>:xip/const:NP#1760-1771$<i>309<b>3","<>:xip/const:NPA#1760-1771$<i>309<b>4","xip/d:LOC"],["s:unterwegs","i:unterwegs","_309#1772-1781","opennlp/p:ADV","cnx/l:unterwegs","cnx/p:ADV","cnx/syn:@ADVL","tt/l:unterwegs","tt/p:ADV","mate/l:unterwegs","mate/p:ADV",">:mate/d:MO$<i>305","<:mate/d:MO$<i>314","xip/p:ADV","xip/l:unterwegs","<>:xip/const:ADV#1772-1781$<i>310",">:xip/d:VMOD$<i>305"],["s:als","i:als","_310#1783-1786","opennlp/p:KOUS","cnx/l:als","cnx/p:CS","cnx/syn:@PREMARK","tt/l:als","tt/p:KOUS","tt/l:als","tt/p:KOKOM","mate/l:als","mate/p:KOUS",">:mate/d:CP$<i>314","xip/p:CONJ","xip/l:als","<>:xip/const:CONJ#1783-1786$<i>311","<>:xip/const:SC#1783-1812$<i>315",">:xip/d:CONNECT$<i>314"],["s:Jason","i:jason","_311#1787-1792","opennlp/p:NN","corenlp/ne_dewac_175m_600:I-PER","corenlp/ne_hgc_175m_600:I-PER","cnx/l:Jason","cnx/p:N","cnx/m:Prop","cnx/syn:@NH","<>:cnx/const:np#1787-1792$<i>312","tt/l:Jason","tt/p:NE","mate/l:jason","mate/p:NE","mate/m:case:nom","mate/m:number:sg","mate/m:gender:masc",">:mate/d:SB$<i>314","xip/p:NOUN","xip/l:Jason","<>:xip/const:NOUN#1787-1792$<i>312","<>:xip/const:NP#1787-1798$<i>313<b>1","<>:xip/const:NPA#1787-1798$<i>313<b>2","<>:xip/const:NOUN#1787-1798$<i>313<b>3"],["s:seine","i:seine","_312#1793-1798","opennlp/p:PPOSAT","cnx/l:sein","cnx/p:PRON","cnx/syn:@PREMOD","tt/l:sein","tt/p:PPOSAT","mate/l:sein","mate/p:PPOSAT","mate/m:case:acc","mate/m:number:sg","mate/m:gender:fem",">:mate/d:NK$<i>313","xip/p:NOUN","xip/l:sein","<>:xip/const:NOUN#1793-1798$<i>313"],["s:Stimme","i:stimme","_313#1799-1805","opennlp/p:NN","cnx/l:stimme","cnx/p:N","cnx/syn:@NH","<>:cnx/const:np#1799-1805$<i>314","tt/l:Stimme","tt/p:NN","mate/l:stimme","mate/p:NN","mate/m:case:acc","mate/m:number:sg","mate/m:gender:fem","<:mate/d:NK$<i>312",">:mate/d:OA$<i>314","xip/p:NOUN","xip/l:Stimme","<>:xip/const:NOUN#1799-1805$<i>314","<>:xip/const:NP#1799-1805$<i>314<b>1","<>:xip/const:NPA#1799-1805$<i>314<b>2",">:xip/d:OBJ$<i>314"],["s:verlor","i:verlor","_314#1806-1812","opennlp/p:VVFIN","cnx/l:verlieren","cnx/p:V","cnx/m:IND","cnx/m:PAST","cnx/syn:@MAIN","tt/l:verlieren","tt/p:VVFIN","mate/l:verlieren","mate/p:VVFIN","mate/m:number:sg","mate/m:person:3","mate/m:tense:past","mate/m:mood:ind","<:mate/d:CP$<i>310","<:mate/d:SB$<i>311","<:mate/d:OA$<i>313",">:mate/d:MO$<i>309","<:mate/d:CD$<i>315","xip/p:VERB","xip/l:verlieren","<>:xip/const:VERB#1806-1812$<i>315","<:xip/d:CONNECT$<i>310","<:xip/d:OBJ$<i>313","xip/d:VMAIN"],["s:und","i:und","_315#1813-1816","opennlp/p:KON","cnx/l:und","cnx/p:CC","cnx/syn:@CC","tt/l:und","tt/p:KON","mate/l:und","mate/p:KON",">:mate/d:CD$<i>314","<:mate/d:CJ$<i>321","xip/p:CONJ","xip/l:und","<>:xip/const:CONJ#1813-1816$<i>316"],["s:für","i:für","_316#1817-1820","opennlp/p:ADV","cnx/l:für","cnx/p:PREP","cnx/syn:@PREMARK","tt/l:für","tt/p:APPR","mate/l:für","mate/p:APPR",">:mate/d:MO$<i>321","<:mate/d:NK$<i>318","xip/p:PREP","xip/l:für","<>:xip/const:PREP#1817-1820$<i>317"],["s:einige","i:einige","_317#1821-1827","opennlp/p:PIAT","cnx/l:einige","cnx/p:PRON","cnx/syn:@PREMOD","tt/l:einige","tt/p:PIAT","mate/l:einiger","mate/p:PIAT","mate/m:case:acc","mate/m:number:pl","mate/m:gender:masc",">:mate/d:NK$<i>318","xip/p:DET","xip/l:einige","<>:xip/const:DET#1821-1827$<i>318",">:xip/d:DETERM$<i>318"],["s:Monate","i:monate","_318#1828-1834","opennlp/p:NN","cnx/l:monat","cnx/p:N","cnx/m:PL","cnx/syn:@NH","<>:cnx/const:np#1828-1834$<i>319","tt/l:Monat","tt/p:NN","mate/l:monat","mate/p:NN","mate/m:case:acc","mate/m:number:pl","mate/m:gender:masc","<:mate/d:NK$<i>317",">:mate/d:NK$<i>316","xip/p:NOUN","xip/l:Monat","<>:xip/const:NOUN#1828-1834$<i>319","<:xip/d:DETERM$<i>317"],["s:nicht","i:nicht","_319#1835-1840","opennlp/p:PTKNEG","cnx/l:nicht","cnx/p:ADV","cnx/syn:@ADVL","tt/l:nicht","tt/p:PTKNEG","mate/l:nicht","mate/p:PTKNEG",">:mate/d:NG$<i>321","xip/p:NEGAT","xip/l:nicht","<>:xip/const:NEGAT#1835-1840$<i>320",">:xip/d:NEGAT$<i>305"],["s:singen","i:singen","_320#1841-1847","opennlp/p:VVINF","cnx/l:singen","cnx/p:V","cnx/m:INF","cnx/syn:@MAIN","tt/l:singen","tt/p:VVINF","mate/l:singen","mate/p:VVINF","<:mate/d:MO$<i>307",">:mate/d:OC$<i>321","xip/p:VERB","xip/l:singen","<>:xip/const:VERB#1841-1847$<i>321"],["s:durfte","i:durfte","_321#1848-1854","opennlp/p:VMFIN","cnx/l:dürfen","cnx/p:V","cnx/m:IND","cnx/m:PAST","cnx/syn:@MAIN","tt/l:dürfen","tt/p:VMFIN","mate/l:dürfen","mate/p:VMFIN","mate/m:number:sg","mate/m:person:3","mate/m:tense:past","mate/m:mood:ind","<:mate/d:MO$<i>316","<:mate/d:NG$<i>319","<:mate/d:OC$<i>320",">:mate/d:CJ$<i>315","xip/p:VERB","xip/l:dürfen","<>:xip/const:VERB#1848-1854$<i>322","<>:xip/const:MC#1848-1854$<i>322<b>1","xip/d:VMAIN"],["s:Erst","i:erst","_322#1856-1860","<>:s#1856-2021$<i>350","opennlp/p:ADV","cnx/l:erst","cnx/p:ADV","cnx/syn:@ADVL","tt/l:erst","tt/p:ADV","mate/l:erst","mate/p:ADV",">:mate/d:MO$<i>325","xip/p:ADV","xip/l:erst","<>:xip/const:ADV#1856-1860$<i>323","<>:xip/const:TOP#1856-2021$<i>350","<>:xip/const:MC#1856-1883$<i>327<b>1",">:xip/d:VMOD$<i>325"],["s:als","i:als","_323#1861-1864","opennlp/p:APPR","cnx/l:als","cnx/p:PREP","cnx/syn:@PREMARK","tt/l:als","tt/p:KOKOM","mate/l:als","mate/p:KOUS",">:mate/d:MO$<i>325","<:mate/d:NK$<i>324","xip/p:PREP","xip/l:als","<>:xip/const:PP#1861-1868$<i>325<b>2","<>:xip/const:PREP#1861-1864$<i>324"],["s:das","i:das","_324#1865-1868","opennlp/p:ART","cnx/l:das","cnx/p:PRON","cnx/syn:@NH","tt/l:die","tt/p:PDS","mate/l:der","mate/p:PDS","mate/m:case:nom","mate/m:number:sg","mate/m:gender:neut",">:mate/d:NK$<i>323","xip/p:PRON","xip/l:das","<>:xip/const:NP#1865-1868$<i>325<b>3","<>:xip/const:PRON#1865-1868$<i>325"],["s:überwunden","i:überwunden","_325#1869-1879","opennlp/p:ADJA","cnx/l:überwinden","cnx/p:V","cnx/m:PCP","cnx/m:PERF","cnx/syn:@MAIN","tt/l:überwinden","tt/p:VVPP","mate/l:überwinden","mate/p:VVPP","<:mate/d:MO$<i>322","<:mate/d:MO$<i>323",">:mate/d:PD$<i>326","xip/p:VERB","xip/l:überwinden","<>:xip/const:VERB#1869-1879$<i>326","<:xip/d:VMOD$<i>322",">:xip/d:AUXIL$<i>326","xip/d:VMAIN"],["s:war","i:war","_326#1880-1883","opennlp/p:VAFIN","cnx/l:sein","cnx/p:V","cnx/m:IND","cnx/m:PAST","cnx/syn:@MAIN","tt/l:sein","tt/p:VAFIN","mate/l:sein","mate/p:VAFIN","mate/m:number:sg","mate/m:person:3","mate/m:tense:past","mate/m:mood:ind","<:mate/d:PD$<i>325",">:mate/d:OC$<i>327","xip/p:VERB","xip/l:sein","<>:xip/const:VERB#1880-1883$<i>327","<:xip/d:AUXIL$<i>325"],["s:gingen","i:gingen","_327#1884-1890","opennlp/p:VVFIN","cnx/l:gehen","cnx/p:V","cnx/m:SUB","cnx/m:PAST","cnx/syn:@MAIN","tt/l:gehen","tt/p:VVFIN","mate/l:gehen","mate/p:VVFIN","mate/m:number:pl","mate/m:person:3","mate/m:tense:past","mate/m:mood:ind","<:mate/d:OC$<i>326","<:mate/d:SB$<i>329","<:mate/d:MO$<i>330","<:mate/d:MO$<i>331","<:mate/d:MO$<i>335","xip/p:VERB","xip/l:gehen","<>:xip/const:VERB#1884-1890$<i>328","xip/d:VMAIN","<:xip/d:OBJ$<i>329","<:xip/d:VMOD$<i>330","<:xip/d:VMOD$<i>333","<:xip/d:SUBJ$<i>334"],["s:die","i:die","_328#1891-1894","opennlp/p:ART","cnx/l:die","cnx/p:PRON","cnx/syn:@NH","tt/l:die","tt/p:ART","mate/l:der","mate/p:ART","mate/m:case:nom","mate/m:number:pl","mate/m:gender:fem",">:mate/d:NK$<i>329","xip/p:DET","xip/l:die","<>:xip/const:DET#1891-1894$<i>329","<>:xip/const:NP#1891-1899$<i>330",">:xip/d:DETERM$<i>329"],["s:Fünf","i:fünf","_329#1895-1899","opennlp/p:NN","cnx/l:fünf","cnx/p:NUM","cnx/syn:@NH","tt/l:Fünf","tt/p:NN","mate/l:fünf","mate/p:NN","mate/m:case:nom","mate/m:number:pl","mate/m:gender:fem","<:mate/d:NK$<i>328",">:mate/d:SB$<i>327","xip/p:NOUN","xip/l:fünf","<>:xip/const:NOUN#1895-1899$<i>330","<>:xip/const:NPA#1895-1899$<i>330<b>1","<:xip/d:DETERM$<i>328",">:xip/d:OBJ$<i>327"],["s:wieder","i:wieder","_330#1900-1906","opennlp/p:ADV","cnx/l:wieder","cnx/p:ADV","cnx/syn:@ADVL","tt/l:wieder","tt/p:ADV","mate/l:wieder","mate/p:ADV",">:mate/d:MO$<i>327","xip/p:ADV","xip/l:wieder","<>:xip/const:ADV#1900-1906$<i>331",">:xip/d:VMOD$<i>327"],["s:nach","i:nach","_331#1907-1911","opennlp/p:APPR","cnx/l:nach","cnx/p:ADV","cnx/syn:@ADVL","tt/l:nach","tt/p:APPR","mate/l:nach","mate/p:APPR",">:mate/d:MO$<i>327","<:mate/d:NK$<i>332","xip/p:PREP","xip/l:nach","<>:xip/const:PP#1907-1919$<i>333","<>:xip/const:PREP#1907-1911$<i>332"],["s:Brüssel","i:brüssel","_332#1912-1919","opennlp/p:NE","cnx/l:Brüssel","cnx/p:N","cnx/m:Prop","cnx/syn:@NH","<>:cnx/const:np#1912-1919$<i>333","tt/l:Brüssel","tt/p:NE","mate/l:brüssel","mate/p:NE","mate/m:case:dat","mate/m:number:sg","mate/m:gender:neut",">:mate/d:NK$<i>331","<:mate/d:RC$<i>349","xip/p:NOUN","xip/l:Brüssel","<>:xip/const:NP#1912-1919$<i>333<b>1","<>:xip/const:NPA#1912-1919$<i>333<b>2","<>:xip/const:NOUN#1912-1919$<i>333","xip/d:LOC"],["s:wo","i:wo","_333#1920-1922","opennlp/p:PWAV","cnx/l:wo","cnx/p:ADV","cnx/syn:@ADVL","tt/l:wo","tt/p:PWAV","mate/l:wo","mate/p:PWAV",">:mate/d:MO$<i>349","xip/p:ADV","xip/l:wo","<>:xip/const:ADV#1920-1922$<i>334",">:xip/d:VMOD$<i>327"],["s:sie","i:sie","_334#1923-1926","opennlp/p:PPER","cnx/l:sie","cnx/p:PRON","cnx/syn:@NH","tt/l:sie","tt/p:PPER","mate/l:sie","mate/p:PPER","mate/m:case:nom","mate/m:number:pl","mate/m:gender:*","mate/m:person:3",">:mate/d:SB$<i>349","xip/p:PRON","xip/l:sie","<>:xip/const:NP#1923-1926$<i>335","<>:xip/const:PRON#1923-1926$<i>335",">:xip/d:SUBJ$<i>327"],["s:mit","i:mit","_335#1927-1930","opennlp/p:APPR","cnx/l:mit","cnx/p:ADV","cnx/syn:@ADVL","tt/l:mit","tt/p:APPR","mate/l:mit","mate/p:APPR",">:mate/d:MO$<i>327","<:mate/d:NK$<i>337","xip/p:PREP","xip/l:mit","<>:xip/const:PP#1927-1938$<i>338","<>:xip/const:PREP#1927-1930$<i>336"],["s:Al","i:al","_336#1931-1933","opennlp/p:NE","corenlp/ne_dewac_175m_600:I-PER","corenlp/ne_hgc_175m_600:I-PER","cnx/l:Al","cnx/p:N","cnx/m:Prop","cnx/syn:@PREMOD","<>:cnx/const:np#1931-1938$<i>338","tt/l:Al","tt/p:NE","mate/l:Al","mate/p:NE","mate/m:case:nom","mate/m:number:sg","mate/m:gender:masc",">:mate/d:PNC$<i>337","xip/p:NOUN","xip/l:Al","<>:xip/const:NOUN#1931-1933$<i>337","<>:xip/const:NP#1931-1938$<i>338<b>1","<>:xip/const:NPA#1931-1938$<i>338<b>2","<>:xip/const:NOUN#1931-1938$<i>338<b>3"],["s:Clay","i:clay","_337#1934-1938","opennlp/p:NE","corenlp/ne_dewac_175m_600:I-PER","corenlp/ne_hgc_175m_600:I-PER","cnx/l:Clay","cnx/p:N","cnx/m:Prop","cnx/syn:@NH","tt/p:NE","mate/l:clay","mate/p:NE","mate/m:case:dat","mate/m:number:sg","mate/m:gender:masc","<:mate/d:PNC$<i>336",">:mate/d:NK$<i>335","<:mate/d:RC$<i>346","xip/p:NOUN","xip/l:Clay","<>:xip/const:NOUN#1934-1938$<i>338"],["s:der","i:der","_338#1940-1943","opennlp/p:PRELS","cnx/l:der","cnx/p:PRON","cnx/syn:@NH","tt/l:die","tt/p:PRELS","tt/l:die","tt/p:ART","mate/l:der","mate/p:PRELS","mate/m:case:nom","mate/m:number:sg","mate/m:gender:masc",">:mate/d:SB$<i>346","xip/p:PRON","xip/l:der","<>:xip/const:SC#1940-1993$<i>347","<>:xip/const:NP#1940-1943$<i>339<b>1","<>:xip/const:PRON#1940-1943$<i>339",">:xip/d:SUBJ$<i>345"],["s:auch","i:auch","_339#1944-1948","opennlp/p:ADV","cnx/l:auch","cnx/p:ADV","cnx/syn:@ADVL","tt/l:auch","tt/p:ADV","mate/l:auch","mate/p:ADV",">:mate/d:MO$<i>345","xip/p:ADV","xip/l:auch","<>:xip/const:ADV#1944-1948$<i>340",">:xip/d:VMOD$<i>345"],["s:schon","i:schon","_340#1949-1954","opennlp/p:ADV","cnx/l:schon","cnx/p:ADV","cnx/syn:@ADVL","tt/l:schon","tt/p:ADV","mate/l:schon","mate/p:ADV",">:mate/d:MO$<i>341","xip/p:ADV","xip/l:schon","<>:xip/const:ADV#1949-1954$<i>341",">:xip/d:VMOD$<i>345"],["s:vorher","i:vorher","_341#1955-1961","opennlp/p:ADV","cnx/l:vorher","cnx/p:ADV","cnx/syn:@ADVL","tt/l:vorher","tt/p:ADV","mate/l:vorher","mate/p:ADV","<:mate/d:MO$<i>340",">:mate/d:MO$<i>345","xip/p:ADV","xip/l:vorher","<>:xip/const:ADV#1955-1961$<i>342",">:xip/d:VMOD$<i>345"],["s:viel","i:viel","_342#1962-1966","opennlp/p:PIS","cnx/l:viel","cnx/p:PRON","cnx/syn:@NH","tt/l:viel","tt/p:ADV","tt/l:viel","tt/p:PIAT","tt/l:viel","tt/p:PIS","mate/l:viel","mate/p:PIS","mate/m:case:*","mate/m:number:*","mate/m:gender:*",">:mate/d:OA$<i>345","xip/p:ADV","xip/l:viel","<>:xip/const:ADV#1962-1966$<i>343",">:xip/d:VMOD$<i>345"],["s:mit","i:mit","_343#1967-1970","opennlp/p:APPR","cnx/l:mit","cnx/p:PREP","cnx/syn:@PREMARK","tt/l:mit","tt/p:APPR","mate/l:mit","mate/p:APPR",">:mate/d:MO$<i>345","<:mate/d:NK$<i>344","xip/p:PREP","xip/l:mit","<>:xip/const:PP#1967-1976$<i>345<b>1","<>:xip/const:PREP#1967-1970$<i>344"],["s:ihnen","i:ihnen","_344#1971-1976","opennlp/p:PPER","cnx/l:sie","cnx/p:PRON","cnx/syn:@NH","tt/l:sie","tt/p:PPER","mate/l:ihnen","mate/p:PPER","mate/m:case:dat","mate/m:number:pl","mate/m:gender:*","mate/m:person:3",">:mate/d:NK$<i>343","xip/p:PRON","xip/l:sie","<>:xip/const:PRON#1971-1976$<i>345","<>:xip/const:NP#1971-1976$<i>345<b>2"],["s:gearbeitet","i:gearbeitet","_345#1977-1987","opennlp/p:VVPP","cnx/l:arbeiten","cnx/p:V","cnx/m:PCP","cnx/m:PERF","cnx/syn:@MAIN","tt/l:arbeiten","tt/p:VVPP","mate/l:arbeiten","mate/p:VVPP","<:mate/d:MO$<i>339","<:mate/d:MO$<i>341","<:mate/d:OA$<i>342","<:mate/d:MO$<i>343",">:mate/d:OC$<i>346","xip/p:VERB","xip/l:arbeiten","<>:xip/const:VERB#1977-1987$<i>346","<:xip/d:SUBJ$<i>338","<:xip/d:VMOD$<i>339","<:xip/d:VMOD$<i>340","<:xip/d:VMOD$<i>341","<:xip/d:VMOD$<i>342",">:xip/d:AUXIL$<i>346","xip/d:VMAIN"],["s:hatte","i:hatte","_346#1988-1993","opennlp/p:VAFIN","cnx/l:haben","cnx/p:V","cnx/m:IND","cnx/m:PAST","cnx/syn:@MAIN","tt/l:haben","tt/p:VAFIN","mate/l:haben","mate/p:VAFIN","mate/m:number:sg","mate/m:person:3","mate/m:tense:past","mate/m:mood:ind","<:mate/d:SB$<i>338","<:mate/d:OC$<i>345",">:mate/d:RC$<i>337","xip/p:VERB","xip/l:haben","<>:xip/const:VERB#1988-1993$<i>347","<:xip/d:AUXIL$<i>345"],["s:'Hi-Fi","i:'hi-fi","_347#1995-2001","opennlp/p:NN","tt/p:NE","tt/p:VVFIN","tt/p:NN"],["s:Serious'","i:serious'","_348#2002-2010","opennlp/p:NE"],["s:aufnahmen","i:aufnahmen","_349#2011-2020","opennlp/p:VVINF","cnx/l:aufnehmen","cnx/p:V","cnx/m:IND","cnx/m:PAST","cnx/syn:@MAIN","tt/l:aufnehmen","tt/p:VVFIN","mate/l:aufnahmen","mate/p:VVFIN","mate/m:number:pl","mate/m:person:3","mate/m:tense:past","mate/m:mood:ind","<:mate/d:MO$<i>333","<:mate/d:SB$<i>334",">:mate/d:RC$<i>332","xip/p:VERB","xip/l:aufnehmen","<>:xip/const:VERB#2011-2020$<i>350","xip/d:VMAIN"],["s:Nach","i:nach","_350#2022-2026","<>:s#2022-2122$<i>368","opennlp/p:APPR","cnx/l:nach","cnx/p:PREP","cnx/syn:@PREMARK","tt/l:nach","tt/p:APPR","mate/l:nach","mate/p:APPR",">:mate/d:MO$<i>356","<:mate/d:NK$<i>352","xip/p:PREP","xip/l:nach","<>:xip/const:PREP#2022-2026$<i>351","<>:xip/const:TOP#2022-2122$<i>368","<>:xip/const:MC#2022-2098$<i>364<b>1","<>:xip/const:PP#2022-2041$<i>353<b>2"],["s:dem","i:dem","_351#2027-2030","opennlp/p:ART","cnx/l:das","cnx/p:DET","cnx/syn:@PREMOD","tt/l:die","tt/p:ART","mate/l:der","mate/p:ART","mate/m:case:dat","mate/m:number:sg","mate/m:gender:neut",">:mate/d:NK$<i>352","xip/p:DET","xip/l:der","<>:xip/const:NP#2027-2041$<i>353<b>3","<>:xip/const:DET#2027-2030$<i>352",">:xip/d:DETERM$<i>352"],["s:Live-Album","i:live-album","_352#2031-2041","opennlp/p:NN","corenlp/ne_hgc_175m_600:I-MISC","cnx/l:live","cnx/l:album","cnx/p:N","cnx/syn:@NH","<>:cnx/const:np#2031-2041$<i>353","tt/p:NN","mate/l:live-album","mate/p:NN","mate/m:case:dat","mate/m:number:sg","mate/m:gender:neut","<:mate/d:NK$<i>351",">:mate/d:NK$<i>350","xip/p:NOUN","xip/l:Live-Album","<>:xip/const:NPA#2031-2041$<i>353<b>4","<>:xip/const:NOUN#2031-2041$<i>353","<:xip/d:DETERM$<i>351"],["s:'Exit","i:'exit","_353#2042-2047","opennlp/p:APPR","tt/p:NE","tt/p:NN"],["s:Stage","i:stage","_354#2048-2053","opennlp/p:NN","corenlp/ne_dewac_175m_600:I-ORG","corenlp/ne_hgc_175m_600:I-MISC","cnx/l:Stage","cnx/p:N","cnx/m:Prop","cnx/syn:@PREMOD","tt/p:NE","mate/l:stag","mate/p:NE","mate/m:case:nom","mate/m:number:sg","mate/m:gender:masc","xip/p:NOUN","xip/l:Stag","<>:xip/const:NOUN#2048-2053$<i>355"],["s:Right","i:right","_355#2054-2059","opennlp/p:NE","corenlp/ne_dewac_175m_600:I-ORG","corenlp/ne_hgc_175m_600:I-MISC","cnx/l:Right","cnx/p:N","cnx/m:Prop","cnx/syn:@NH","tt/p:NE","mate/l:right","mate/p:NE","mate/m:case:nom","mate/m:number:sg","mate/m:gender:masc","xip/p:NOUN","xip/l:Right","<>:xip/const:NOUN#2054-2059$<i>356"],["s:kam","i:kam","_356#2061-2064","opennlp/p:VVFIN","cnx/l:kommen","cnx/p:V","cnx/m:IND","cnx/m:PAST","cnx/syn:@MAIN","tt/l:kommen","tt/p:VVFIN","mate/l:kommen","mate/p:VVFIN","mate/m:number:sg","mate/m:person:3","mate/m:tense:past","mate/m:mood:ind","<:mate/d:MO$<i>350","<:mate/d:SB$<i>359","<:mate/d:MO$<i>360","<:mate/d:MO$<i>361","<:mate/d:CD$<i>364","xip/p:VERB","xip/l:kommen","<>:xip/const:VERB#2061-2064$<i>357","xip/d:VMAIN","<:xip/d:OBJ$<i>359"],["s:das","i:das","_357#2065-2068","opennlp/p:ART","cnx/l:das","cnx/p:DET","cnx/syn:@PREMOD","tt/l:die","tt/p:ART","mate/l:der","mate/p:ART","mate/m:case:nom","mate/m:number:sg","mate/m:gender:neut",">:mate/d:NK$<i>359","xip/p:DET","xip/l:das","<>:xip/const:DET#2065-2068$<i>358",">:xip/d:DETERM$<i>359"],["s:neue","i:neue","_358#2069-2073","opennlp/p:ADJA","cnx/l:neu","cnx/p:A","cnx/syn:@PREMOD","<>:cnx/const:np#2069-2079$<i>360","tt/l:neu","tt/p:ADJA","mate/l:neu","mate/p:ADJA","mate/m:case:nom","mate/m:number:sg","mate/m:gender:neut","mate/m:degree:pos",">:mate/d:NK$<i>359","xip/p:ADJ","xip/l:neu","<>:xip/const:ADJ#2069-2073$<i>359",">:xip/d:NMOD$<i>359"],["s:Album","i:album","_359#2074-2079","opennlp/p:NN","cnx/l:album","cnx/p:N","cnx/syn:@NH","tt/l:Album","tt/p:NN","mate/l:album","mate/p:NN","mate/m:case:nom","mate/m:number:sg","mate/m:gender:neut","<:mate/d:NK$<i>357","<:mate/d:NK$<i>358",">:mate/d:SB$<i>356","xip/p:NOUN","xip/l:Album","<>:xip/const:NOUN#2074-2079$<i>360","<:xip/d:DETERM$<i>357","<:xip/d:NMOD$<i>358",">:xip/d:OBJ$<i>356","<:xip/d:NMOD$<i>360"],["s:2002","i:2002","_360#2080-2084","opennlp/p:CARD","cnx/l:2002","cnx/p:NUM","cnx/syn:@NH","tt/l:@card@","tt/p:CARD","mate/l:2002","mate/p:CARD",">:mate/d:MO$<i>356","xip/p:NUM","xip/l:2002","<>:xip/const:NUM#2080-2084$<i>361","xip/d:DATE",">:xip/d:NMOD$<i>359"],["s:auf","i:auf","_361#2085-2088","opennlp/p:APPR","cnx/l:auf","cnx/p:PREP","cnx/syn:@POSTMOD","tt/l:auf","tt/p:APPR","mate/l:auf","mate/p:APPR",">:mate/d:MO$<i>356","<:mate/d:NK$<i>363","xip/p:PREP","xip/l:auf","<>:xip/const:PREP#2085-2088$<i>362"],["s:den","i:den","_362#2089-2092","opennlp/p:ART","cnx/l:der","cnx/p:DET","cnx/syn:@PREMOD","tt/l:die","tt/p:ART","mate/l:der","mate/p:ART","mate/m:case:acc","mate/m:number:sg","mate/m:gender:masc",">:mate/d:NK$<i>363","xip/p:DET","xip/l:der","<>:xip/const:DET#2089-2092$<i>363",">:xip/d:DETERM$<i>363"],["s:Markt","i:markt","_363#2093-2098","opennlp/p:NN","cnx/l:markt","cnx/p:N","cnx/syn:@NH","<>:cnx/const:np#2093-2098$<i>364","tt/l:Markt","tt/p:NN","mate/l:markt","mate/p:NN","mate/m:case:acc","mate/m:number:sg","mate/m:gender:masc","<:mate/d:NK$<i>362",">:mate/d:NK$<i>361","xip/p:NOUN","xip/l:Markt","<>:xip/const:NOUN#2093-2098$<i>364","<:xip/d:DETERM$<i>362"],["s:und","i:und","_364#2099-2102","opennlp/p:KON","cnx/l:und","cnx/p:CC","cnx/syn:@CC","tt/l:und","tt/p:KON","mate/l:und","mate/p:KON",">:mate/d:CD$<i>356","<:mate/d:CJ$<i>365","xip/p:CONJ","xip/l:und","<>:xip/const:MC#2099-2121$<i>368<b>1","<>:xip/const:CONJ#2099-2102$<i>365"],["s:brachte","i:brachte","_365#2103-2110","opennlp/p:VVFIN","cnx/l:bringen","cnx/p:V","cnx/m:IND","cnx/m:PAST","cnx/syn:@MAIN","tt/l:bringen","tt/p:VVFIN","mate/l:bringen","mate/p:VVFIN","mate/m:number:sg","mate/m:person:3","mate/m:tense:past","mate/m:mood:ind",">:mate/d:CJ$<i>364","<:mate/d:OA$<i>367","xip/p:VERB","xip/l:bringen","<>:xip/const:VERB#2103-2110$<i>366","xip/d:VMAIN","<:xip/d:OBJ$<i>367"],["s:den","i:den","_366#2111-2114","opennlp/p:ART","cnx/l:der","cnx/p:DET","cnx/syn:@PREMOD","tt/l:die","tt/p:ART","mate/l:der","mate/p:ART","mate/m:case:acc","mate/m:number:sg","mate/m:gender:masc",">:mate/d:NK$<i>367","xip/p:DET","xip/l:der","<>:xip/const:NP#2111-2121$<i>368<b>2","<>:xip/const:DET#2111-2114$<i>367",">:xip/d:DETERM$<i>367"],["s:Erfolg","i:erfolg","_367#2115-2121","opennlp/p:NN","cnx/l:erfolg","cnx/p:N","cnx/syn:@NH","<>:cnx/const:np#2115-2121$<i>368","tt/l:Erfolg","tt/p:NN","mate/l:erfolg","mate/p:NN","mate/m:case:acc","mate/m:number:sg","mate/m:gender:masc","<:mate/d:NK$<i>366",">:mate/d:OA$<i>365","xip/p:NOUN","xip/l:Erfolg","<>:xip/const:NPA#2115-2121$<i>368<b>3","<>:xip/const:NOUN#2115-2121$<i>368","<:xip/d:DETERM$<i>366",">:xip/d:OBJ$<i>365"],["s:Die","i:die","_368#2123-2126","<>:s#2123-2329$<i>403","opennlp/p:ART","cnx/l:die","cnx/p:DET","cnx/syn:@PREMOD","tt/l:die","tt/p:ART","mate/l:der","mate/p:ART","mate/m:case:nom","mate/m:number:sg","mate/m:gender:fem",">:mate/d:NK$<i>369","xip/p:PRON","xip/l:die","<>:xip/const:PRON#2123-2126$<i>369","<>:xip/const:TOP#2123-2329$<i>403","<>:xip/const:MC#2123-2170$<i>376<b>1","<>:xip/const:NP#2123-2126$<i>369<b>2",">:xip/d:SUBJ$<i>371"],["s:Single","i:single","_369#2127-2133","opennlp/p:NE","corenlp/ne_hgc_175m_600:I-ORG","cnx/l:single","cnx/p:N","cnx/syn:@PREMOD","<>:cnx/const:np#2127-2141$<i>371","tt/l:Single","tt/p:NN","mate/l:singl","mate/p:NN","mate/m:case:nom","mate/m:number:sg","mate/m:gender:fem","<:mate/d:NK$<i>368",">:mate/d:SB$<i>371","<:mate/d:NK$<i>370","xip/p:NOUN","xip/l:Single","<>:xip/const:NOUN#2127-2133$<i>370","<>:xip/const:NP#2127-2133$<i>370<b>2","<>:xip/const:NPA#2127-2133$<i>370<b>3",">:xip/d:PRED$<i>371","<:xip/d:NMOD$<i>370"],["s:Nothing","i:nothing","_370#2134-2141","opennlp/p:NE","corenlp/ne_hgc_175m_600:I-ORG","cnx/l:Nothing","cnx/p:N","cnx/m:Prop","cnx/syn:@NH","tt/l:nothängen","tt/p:VVFIN","mate/p:NE","mate/m:case:nom","mate/m:number:sg","mate/m:gender:fem",">:mate/d:NK$<i>369","xip/p:NOUN","xip/l:Nothing","<>:xip/const:NOUN#2134-2141$<i>371","<>:xip/const:NP#2134-2141$<i>371<b>2","<>:xip/const:NPA#2134-2141$<i>371<b>3","xip/d:LOC",">:xip/d:NMOD$<i>369"],["s:war","i:war","_371#2142-2145","opennlp/p:VAFIN","cnx/l:sein","cnx/p:V","cnx/m:IND","cnx/m:PAST","cnx/syn:@MAIN","tt/l:sein","tt/p:VAFIN","mate/l:sein","mate/p:VAFIN","mate/m:number:sg","mate/m:person:3","mate/m:tense:past","mate/m:mood:ind","<:mate/d:SB$<i>369","<:mate/d:MO$<i>372","<:mate/d:MO$<i>373","<:mate/d:CD$<i>376","xip/p:VERB","xip/l:sein","<>:xip/const:VERB#2142-2145$<i>372","<:xip/d:SUBJ$<i>368","<:xip/d:PRED$<i>369","xip/d:VMAIN","<:xip/d:PRED$<i>372"],["s:Europaweit","i:europaweit","_372#2146-2156","opennlp/p:NN","cnx/l:Europaweit","cnx/p:N","cnx/m:Prop","cnx/syn:@NH","<>:cnx/const:np#2146-2156$<i>373","tt/l:europaweit","tt/p:ADJD","mate/l:europaweit","mate/p:ADJD","mate/m:degree:pos",">:mate/d:MO$<i>371","xip/p:ADJ","xip/l:Europa","xip/l:weit","xip/l:europaweit","<>:xip/const:AP#2146-2156$<i>373<b>2","<>:xip/const:ADJ#2146-2156$<i>373",">:xip/d:PRED$<i>371"],["s:in","i:in","_373#2157-2159","opennlp/p:APPR","cnx/l:in","cnx/p:PREP","cnx/syn:@PREMARK","tt/l:in","tt/p:APPR","mate/l:in","mate/p:APPR",">:mate/d:MO$<i>371","<:mate/d:NK$<i>375","xip/p:PREP","xip/l:in","<>:xip/const:PREP#2157-2159$<i>374","<>:xip/const:PP#2157-2170$<i>376<b>2"],["s:den","i:den","_374#2160-2163","opennlp/p:ART","cnx/l:die","cnx/p:DET","cnx/syn:@PREMOD","tt/l:die","tt/p:ART","mate/l:der","mate/p:ART","mate/m:case:acc","mate/m:number:sg","mate/m:gender:masc",">:mate/d:NK$<i>375","xip/p:DET","xip/l:der","<>:xip/const:DET#2160-2163$<i>375","<>:xip/const:NP#2160-2170$<i>376<b>3",">:xip/d:DETERM$<i>375"],["s:Charts","i:charts","_375#2164-2170","opennlp/p:NN","corenlp/ne_hgc_175m_600:I-LOC","cnx/l:chart","cnx/p:N","cnx/m:PL","cnx/syn:@NH","<>:cnx/const:np#2164-2170$<i>376","tt/l:Chart","tt/p:NN","mate/l:chart","mate/p:NN","mate/m:case:acc","mate/m:number:sg","mate/m:gender:masc","<:mate/d:NK$<i>374",">:mate/d:NK$<i>373","xip/p:NOUN","xip/l:Chart","<>:xip/const:NPA#2164-2170$<i>376<b>4","<>:xip/const:NOUN#2164-2170$<i>376","<:xip/d:DETERM$<i>374"],["s:und","i:und","_376#2171-2174","opennlp/p:KON","cnx/l:und","cnx/p:CC","cnx/syn:@CC","tt/l:und","tt/p:KON","mate/l:und","mate/p:KON",">:mate/d:CD$<i>371","<:mate/d:CJ$<i>378","xip/p:CONJ","xip/l:und","<>:xip/const:CONJ#2171-2174$<i>377","<>:xip/const:MC#2171-2311$<i>402<b>1"],["s:so","i:so","_377#2175-2177","opennlp/p:ADV","cnx/l:so","cnx/p:ADV","cnx/syn:@ADVL","tt/l:so","tt/p:ADV","mate/l:so","mate/p:ADV",">:mate/d:MO$<i>378","<:mate/d:RE$<i>396","xip/p:ADV","xip/l:so","<>:xip/const:ADV#2175-2177$<i>378",">:xip/d:VMOD$<i>378"],["s:war","i:war","_378#2178-2181","opennlp/p:VAFIN","cnx/l:sein","cnx/p:V","cnx/m:IND","cnx/m:PAST","cnx/syn:@MAIN","tt/l:sein","tt/p:VAFIN","mate/l:sein","mate/p:VAFIN","mate/m:number:sg","mate/m:person:3","mate/m:tense:past","mate/m:mood:ind","<:mate/d:MO$<i>377",">:mate/d:CJ$<i>376","<:mate/d:SB$<i>379","xip/p:VERB","xip/l:sein","<>:xip/const:VERB#2178-2181$<i>379","<:xip/d:VMOD$<i>377","xip/d:VMAIN","<:xip/d:SUBJ$<i>379","<:xip/d:PRED$<i>381","<:xip/d:PRED$<i>384","<:xip/d:PRED$<i>386","<:xip/d:VMOD$<i>398","<:xip/d:PRED$<i>401"],["s:es","i:es","_379#2182-2184","opennlp/p:PPER","cnx/l:es","cnx/p:PRON","cnx/syn:@NH","tt/l:es","tt/p:PPER","mate/l:es","mate/p:PPER","mate/m:case:nom","mate/m:number:sg","mate/m:gender:neut","mate/m:person:3",">:mate/d:SB$<i>378","<:mate/d:RE$<i>390","xip/p:PRON","xip/l:es","<>:xip/const:PRON#2182-2184$<i>380","<>:xip/const:NP#2182-2184$<i>380<b>2",">:xip/d:SUBJ$<i>378"],["s:der","i:der","_380#2185-2188","opennlp/p:ART","cnx/l:der","cnx/p:DET","cnx/syn:@PREMOD","tt/l:die","tt/p:ART","mate/l:der","mate/p:ART","mate/m:case:nom","mate/m:number:sg","mate/m:gender:masc",">:mate/d:NK$<i>381","xip/p:DET","xip/l:der","<>:xip/const:NP#2185-2193$<i>382<b>2","<>:xip/const:DET#2185-2188$<i>381",">:xip/d:DETERM$<i>381"],["s:Band","i:band","_381#2189-2193","opennlp/p:NN","cnx/l:band","cnx/p:N","cnx/syn:@NH","<>:cnx/const:np#2189-2193$<i>382","tt/l:Band","tt/p:NN","mate/l:band","mate/p:NN","mate/m:case:nom","mate/m:number:sg","mate/m:gender:masc","<:mate/d:NK$<i>380",">:mate/d:MO$<i>390","<:mate/d:NK$<i>382","xip/p:NOUN","xip/l:Band","<>:xip/const:NOUN#2189-2193$<i>382","<>:xip/const:NPA#2189-2193$<i>382<b>3","<:xip/d:DETERM$<i>380",">:xip/d:PRED$<i>378","<:xip/d:NMOD$<i>382"],["s:2003","i:2003","_382#2194-2198","opennlp/p:CARD","cnx/l:2003","cnx/p:NUM","cnx/syn:@NH","tt/l:@card@","tt/p:CARD","mate/l:2003","mate/p:CARD",">:mate/d:NK$<i>381","xip/p:NUM","xip/l:2003","<>:xip/const:NP#2194-2198$<i>383<b>2","<>:xip/const:NPA#2194-2198$<i>383<b>3","<>:xip/const:NUM#2194-2198$<i>383<b>4","<>:xip/const:NUM#2194-2198$<i>383","xip/d:DATE",">:xip/d:NMOD$<i>381"],["s:sogar","i:sogar","_383#2199-2204","opennlp/p:ADV","cnx/l:sogar","cnx/p:ADV","cnx/syn:@ADVL","tt/l:sogar","tt/p:ADV","mate/l:sogar","mate/p:ADV",">:mate/d:MO$<i>384","xip/p:ADV","xip/l:sogar","<>:xip/const:ADV#2199-2204$<i>384","<>:xip/const:AP#2199-2212$<i>385<b>2",">:xip/d:ADJMOD$<i>384"],["s:möglich","i:möglich","_384#2205-2212","opennlp/p:ADJD","cnx/l:möglich","cnx/p:A","cnx/syn:@NH","tt/l:möglich","tt/p:ADJD","mate/l:möglich","mate/p:ADJD","mate/m:degree:pos","<:mate/d:MO$<i>383",">:mate/d:MO$<i>390","xip/p:ADJ","xip/l:möglich","<>:xip/const:ADJ#2205-2212$<i>385","<:xip/d:ADJMOD$<i>383",">:xip/d:PRED$<i>378"],["s:eine","i:eine","_385#2213-2217","opennlp/p:ART","cnx/l:eine","cnx/p:DET","cnx/syn:@PREMOD","tt/l:eine","tt/p:ART","mate/l:ein","mate/p:ART","mate/m:case:acc","mate/m:number:sg","mate/m:gender:fem",">:mate/d:NK$<i>386","xip/p:DET","xip/l:ein","<>:xip/const:NP#2213-2222$<i>387<b>2","<>:xip/const:DET#2213-2217$<i>386",">:xip/d:DETERM$<i>386"],["s:Tour","i:tour","_386#2218-2222","opennlp/p:NN","cnx/l:tour","cnx/p:N","cnx/syn:@NH","<>:cnx/const:np#2218-2222$<i>387","tt/l:Tour","tt/p:NN","mate/l:tour","mate/p:NN","mate/m:case:acc","mate/m:number:sg","mate/m:gender:fem","<:mate/d:NK$<i>385",">:mate/d:OA$<i>390","<:mate/d:MNR$<i>387","xip/p:NOUN","xip/l:Tour","<>:xip/const:NOUN#2218-2222$<i>387","<>:xip/const:NPA#2218-2222$<i>387<b>3","<:xip/d:DETERM$<i>385",">:xip/d:PRED$<i>378"],["s:durch","i:durch","_387#2223-2228","opennlp/p:APPR","cnx/l:durch","cnx/p:ADV","cnx/syn:@ADVL","tt/l:durch","tt/p:APPR","mate/l:durch","mate/p:APPR",">:mate/d:MNR$<i>386","<:mate/d:NK$<i>388","xip/p:PREP","xip/l:durch","<>:xip/const:PREP#2223-2228$<i>388","<>:xip/const:PP#2223-2234$<i>389<b>2"],["s:Japan","i:japan","_388#2229-2234","opennlp/p:NE","corenlp/ne_dewac_175m_600:I-LOC","corenlp/ne_hgc_175m_600:I-LOC","cnx/l:Japan","cnx/p:N","cnx/m:Prop","cnx/syn:@NH","<>:cnx/const:np#2229-2234$<i>389","tt/l:Japan","tt/p:NE","mate/l:japan","mate/p:NE","mate/m:case:acc","mate/m:number:sg","mate/m:gender:neut",">:mate/d:NK$<i>387","xip/p:NOUN","xip/l:Japan","<>:xip/const:NOUN#2229-2234$<i>389","<>:xip/const:NP#2229-2234$<i>389<b>3","<>:xip/const:NPA#2229-2234$<i>389<b>4","xip/d:LOC"],["s:zu","i:zu","_389#2235-2237","opennlp/p:PTKZU","cnx/l:zu","cnx/p:PREP","cnx/syn:@PREMARK","tt/l:zu","tt/p:PTKZU","mate/l:zu","mate/p:PTKZU",">:mate/d:PM$<i>390","xip/p:PTCL","xip/l:zu","<>:xip/const:INS#2235-2245$<i>391<b>2","<>:xip/const:INFC#2235-2244$<i>391<b>3","<>:xip/const:VERB#2235-2244$<i>391<b>4","<>:xip/const:PTCL#2235-2237$<i>390"],["s:machen","i:machen","_390#2238-2244","opennlp/p:VVINF","cnx/l:machen","cnx/p:V","cnx/m:INF","cnx/syn:@MAIN","tt/l:machen","tt/p:VVINF","mate/l:machen","mate/p:VVINF","<:mate/d:MO$<i>381","<:mate/d:MO$<i>384","<:mate/d:OA$<i>386","<:mate/d:PM$<i>389",">:mate/d:RE$<i>379","xip/p:VERB","xip/l:machen","<>:xip/const:VERB#2238-2244$<i>391"],["s:wo","i:wo","_391#2246-2248","opennlp/p:PWAV","cnx/l:wo","cnx/p:ADV","cnx/syn:@ADVL","tt/l:wo","tt/p:PWAV","mate/l:wo","mate/p:PWAV",">:mate/d:MO$<i>396","xip/p:ADV","xip/l:wo","<>:xip/const:INS#2246-2283$<i>398<b>2","<>:xip/const:SC#2246-2279$<i>397<b>3","<>:xip/const:ADV#2246-2248$<i>392",">:xip/d:CONNECT$<i>396"],["s:sie","i:sie","_392#2249-2252","opennlp/p:PPER","cnx/l:sie","cnx/p:PRON","cnx/syn:@NH","tt/l:sie","tt/p:PPER","mate/l:sie","mate/p:PPER","mate/m:case:nom","mate/m:number:sg","mate/m:gender:fem","mate/m:person:3",">:mate/d:SB$<i>396","xip/p:PRON","xip/l:sie","<>:xip/const:NP#2249-2252$<i>393<b>4","<>:xip/const:PRON#2249-2252$<i>393",">:xip/d:SUBJ$<i>396"],["s:ebenfalls","i:ebenfalls","_393#2253-2262","opennlp/p:ADV","cnx/l:ebenfalls","cnx/p:ADV","cnx/syn:@ADVL","tt/l:ebenfalls","tt/p:ADV","mate/l:ebenfalls","mate/p:ADV",">:mate/d:MO$<i>396","xip/p:ADV","xip/l:ebenfalls","<>:xip/const:ADV#2253-2262$<i>394","<>:xip/const:NP#2253-2273$<i>396<b>4","<>:xip/const:NPA#2253-2273$<i>396<b>5","<>:xip/const:AP#2253-2268$<i>395<b>6",">:xip/d:ADJMOD$<i>394"],["s:viele","i:viele","_394#2263-2268","opennlp/p:PIAT","cnx/l:viel","cnx/p:PRON","cnx/syn:@PREMOD","tt/l:viele","tt/p:PIAT","mate/l:vieler","mate/p:PIAT","mate/m:case:acc","mate/m:number:pl","mate/m:gender:masc",">:mate/d:NK$<i>395","xip/p:ADJ","xip/l:viel","<>:xip/const:ADJ#2263-2268$<i>395","<:xip/d:ADJMOD$<i>393",">:xip/d:NMOD$<i>395"],["s:Fans","i:fans","_395#2269-2273","opennlp/p:NN","cnx/l:fan","cnx/p:N","cnx/m:PL","cnx/syn:@NH","<>:cnx/const:np#2269-2273$<i>396","tt/l:Fan","tt/p:NN","mate/l:fan","mate/p:NN","mate/m:case:acc","mate/m:number:pl","mate/m:gender:masc","<:mate/d:NK$<i>394",">:mate/d:OA$<i>396","xip/p:NOUN","xip/l:Fan","<>:xip/const:NOUN#2269-2273$<i>396","<:xip/d:NMOD$<i>394",">:xip/d:OBJ$<i>396"],["s:haben","i:haben","_396#2274-2279","opennlp/p:VAFIN","cnx/l:haben","cnx/p:V","cnx/m:IND","cnx/m:PRES","cnx/syn:@MAIN","tt/l:haben","tt/p:VAFIN","mate/l:haben","mate/p:VAFIN","mate/m:number:pl","mate/m:person:3","mate/m:tense:pres","mate/m:mood:ind","<:mate/d:MO$<i>391","<:mate/d:SB$<i>392","<:mate/d:MO$<i>393","<:mate/d:OA$<i>395",">:mate/d:RE$<i>377","<:mate/d:CD$<i>397","xip/p:VERB","xip/l:haben","<>:xip/const:VERB#2274-2279$<i>397","<:xip/d:CONNECT$<i>391","<:xip/d:SUBJ$<i>392","<:xip/d:OBJ$<i>395","xip/d:VMAIN"],["s:und","i:und","_397#2280-2283","opennlp/p:KON","cnx/l:und","cnx/p:CC","cnx/syn:@CC","tt/l:und","tt/p:KON","mate/l:und","mate/p:KON",">:mate/d:CD$<i>396","<:mate/d:CJ$<i>402","xip/p:CONJ","xip/l:und","<>:xip/const:CONJ#2280-2283$<i>398"],["s:auch","i:auch","_398#2284-2288","opennlp/p:ADV","cnx/l:auch","cnx/p:ADV","cnx/syn:@ADVL","tt/l:auch","tt/p:ADV","mate/l:auch","mate/p:ADV",">:mate/d:MO$<i>401","xip/p:ADV","xip/l:auch","<>:xip/const:ADV#2284-2288$<i>399",">:xip/d:VMOD$<i>378"],["s:ein","i:ein","_399#2289-2292","opennlp/p:ART","cnx/l:ein","cnx/p:DET","cnx/syn:@PREMOD","tt/l:eine","tt/p:ART","mate/l:ein","mate/p:ART","mate/m:case:acc","mate/m:number:sg","mate/m:gender:neut",">:mate/d:NK$<i>401","xip/p:DET","xip/l:ein","<>:xip/const:DET#2289-2292$<i>400","<>:xip/const:NP#2289-2311$<i>402<b>2",">:xip/d:DETERM$<i>401"],["s:zweites","i:zweites","_400#2293-2300","opennlp/p:ADJA","cnx/l:zweite","cnx/p:NUM","cnx/m:ORD","cnx/syn:@PREMOD","<>:cnx/const:np#2293-2311$<i>402","tt/l:zweit","tt/p:ADJA","mate/l:zweiter","mate/p:ADJA","mate/m:case:acc","mate/m:number:sg","mate/m:gender:neut","mate/m:degree:pos",">:mate/d:NK$<i>401","xip/p:ADJ","xip/l:zwei","<>:xip/const:ADJ#2293-2300$<i>401","<>:xip/const:NPA#2293-2311$<i>402<b>3","<>:xip/const:AP#2293-2300$<i>401<b>4",">:xip/d:NMOD$<i>401"],["s:Live-Album","i:live-album","_401#2301-2311","opennlp/p:NN","cnx/l:live","cnx/l:album","cnx/p:N","cnx/syn:@NH","tt/p:NN","mate/l:live-album","mate/p:NN","mate/m:case:acc","mate/m:number:sg","mate/m:gender:neut","<:mate/d:MO$<i>398","<:mate/d:NK$<i>399","<:mate/d:NK$<i>400",">:mate/d:OA$<i>402","xip/p:NOUN","xip/l:Live-Album","<>:xip/const:NOUN#2301-2311$<i>402","<:xip/d:DETERM$<i>399","<:xip/d:NMOD$<i>400",">:xip/d:PRED$<i>378"],["s:veröffentlichten","i:veröffentlichten","_402#2312-2328","opennlp/p:VVINF","cnx/l:veröffentlichen","cnx/p:V","cnx/m:IND","cnx/m:PAST","cnx/syn:@MAIN","tt/l:veröffentlichen","tt/p:VVFIN","mate/l:veröffentlichen","mate/p:VVFIN","mate/m:number:pl","mate/m:person:3","mate/m:tense:past","mate/m:mood:ind","<:mate/d:OA$<i>401",">:mate/d:CJ$<i>397","xip/p:VERB","xip/l:veröffentlichen","<>:xip/const:VERB#2312-2328$<i>403","<>:xip/const:MC#2312-2328$<i>403<b>1","xip/d:VMAIN"],["s:Seit","i:seit","_403#2330-2334","<>:s#2330-2408$<i>417","opennlp/p:APPR","cnx/l:seit","cnx/p:CS","cnx/syn:@PREMARK","tt/l:seit","tt/p:APPR","mate/l:seit","mate/p:APPR",">:mate/d:MO$<i>416","<:mate/d:NK$<i>404","xip/p:PREP","xip/l:seit","<>:xip/const:PREP#2330-2334$<i>404","<>:xip/const:TOP#2330-2408$<i>417","<>:xip/const:MC#2330-2408$<i>417<b>1","<>:xip/const:PP#2330-2339$<i>405<b>2"],["s:Ende","i:ende","_404#2335-2339","opennlp/p:NN","cnx/l:ende","cnx/p:N","cnx/syn:@NH","<>:cnx/const:np#2335-2339$<i>405","tt/l:Ende","tt/p:NN","mate/l:ende","mate/p:NN","mate/m:case:dat","mate/m:number:sg","mate/m:gender:neut",">:mate/d:NK$<i>403","<:mate/d:NK$<i>405","xip/p:NOUN","xip/l:Ende","<>:xip/const:NOUN#2335-2339$<i>405","<>:xip/const:NP#2335-2339$<i>405<b>3","<>:xip/const:NPA#2335-2339$<i>405<b>4","<:xip/d:NMOD$<i>405"],["s:2003","i:2003","_405#2340-2344","opennlp/p:CARD","cnx/l:2003","cnx/p:NUM","cnx/syn:@NH","tt/l:@card@","tt/p:CARD","mate/l:2003","mate/p:CARD",">:mate/d:NK$<i>404","xip/p:NUM","xip/l:2003","<>:xip/const:NUM#2340-2344$<i>406","<>:xip/const:NP#2340-2344$<i>406<b>2","<>:xip/const:NPA#2340-2344$<i>406<b>3","<>:xip/const:NUM#2340-2344$<i>406<b>4","xip/d:DATE",">:xip/d:NMOD$<i>404"],["s:ist","i:ist","_406#2345-2348","opennlp/p:VAFIN","cnx/l:sein","cnx/p:V","cnx/m:IND","cnx/m:PRES","cnx/syn:@MAIN","tt/l:sein","tt/p:VAFIN","mate/l:sein","mate/p:VAFIN","mate/m:number:sg","mate/m:person:3","mate/m:tense:pres","mate/m:mood:ind","<:mate/d:SB$<i>408","<:mate/d:OC$<i>416","xip/p:VERB","xip/l:sein","<>:xip/const:VERB#2345-2348$<i>407","xip/d:VMAIN","<:xip/d:SUBJ$<i>408","<:xip/d:VMOD$<i>409"],["s:die","i:die","_407#2349-2352","opennlp/p:ART","cnx/l:die","cnx/p:DET","cnx/syn:@PREMOD","tt/l:die","tt/p:ART","mate/l:der","mate/p:ART","mate/m:case:nom","mate/m:number:sg","mate/m:gender:fem",">:mate/d:NK$<i>408","xip/p:DET","xip/l:die","<>:xip/const:DET#2349-2352$<i>408","<>:xip/const:NP#2349-2357$<i>409<b>2",">:xip/d:DETERM$<i>408"],["s:Band","i:band","_408#2353-2357","opennlp/p:NN","cnx/l:band","cnx/p:N","cnx/syn:@NH","<>:cnx/const:np#2353-2357$<i>409","tt/l:Band","tt/p:NN","mate/l:band","mate/p:NN","mate/m:case:nom","mate/m:number:sg","mate/m:gender:fem","<:mate/d:NK$<i>407",">:mate/d:SB$<i>406","xip/p:NOUN","xip/l:Band","<>:xip/const:NOUN#2353-2357$<i>409","<>:xip/const:NPA#2353-2357$<i>409<b>3","<:xip/d:DETERM$<i>407",">:xip/d:SUBJ$<i>406"],["s:wieder","i:wieder","_409#2358-2364","opennlp/p:ADV","cnx/l:wieder","cnx/p:ADV","cnx/syn:@ADVL","tt/l:wieder","tt/p:ADV","mate/l:wieder","mate/p:ADV",">:mate/d:MO$<i>416","xip/p:ADV","xip/l:wieder","<>:xip/const:ADV#2358-2364$<i>410",">:xip/d:VMOD$<i>406"],["s:im","i:im","_410#2365-2367","opennlp/p:APPRART","tt/l:im","tt/p:APPRART","mate/l:in","mate/p:APPRART","mate/m:case:dat","mate/m:number:sg","mate/m:gender:masc",">:mate/d:MO$<i>416","<:mate/d:NK$<i>411","xip/p:PREP","xip/l:in","<>:xip/const:PP#2365-2374$<i>412<b>2","<>:xip/const:PREP#2365-2367$<i>411"],["s:Studio","i:studio","_411#2368-2374","opennlp/p:NN","cnx/l:studio","cnx/p:N","cnx/syn:@NH","<>:cnx/const:np#2368-2395$<i>416","tt/l:Studio","tt/p:NN","mate/l:studio","mate/p:NN","mate/m:case:dat","mate/m:number:sg","mate/m:gender:masc",">:mate/d:NK$<i>410","<:mate/d:MNR$<i>412","xip/p:NOUN","xip/l:Studio","<>:xip/const:NOUN#2368-2374$<i>412","<>:xip/const:NP#2368-2374$<i>412<b>3","<>:xip/const:NPA#2368-2374$<i>412<b>4"],["s:um","i:um","_412#2375-2377","opennlp/p:APPR","cnx/l:um","cnx/p:PREP","cnx/syn:@POSTMOD","tt/l:um","tt/p:APPR","mate/l:um","mate/p:APPR",">:mate/d:MNR$<i>411","<:mate/d:NK$<i>415","xip/p:CONJ","xip/l:um","<>:xip/const:CONJ#2375-2377$<i>413","<>:xip/const:INS#2375-2408$<i>417<b>2","<>:xip/const:INFC#2375-2407$<i>417<b>3"],["s:das","i:das","_413#2378-2381","opennlp/p:ART","cnx/l:das","cnx/p:DET","cnx/syn:@PREMOD","tt/l:die","tt/p:ART","mate/l:der","mate/p:ART","mate/m:case:acc","mate/m:number:sg","mate/m:gender:neut",">:mate/d:NK$<i>415","xip/p:DET","xip/l:das","<>:xip/const:DET#2378-2381$<i>414","<>:xip/const:NP#2378-2395$<i>416<b>4",">:xip/d:DETERM$<i>415"],["s:nächste","i:nächste","_414#2382-2389","opennlp/p:ADJA","cnx/l:nahe","cnx/p:A","cnx/m:SUP","cnx/syn:@PREMOD","tt/l:nah","tt/p:ADJA","mate/l:nächster","mate/p:ADJA","mate/m:case:acc","mate/m:number:sg","mate/m:gender:neut","mate/m:degree:pos",">:mate/d:NK$<i>415","xip/p:ADJ","xip/l:nah","<>:xip/const:ADJ#2382-2389$<i>415","<>:xip/const:NPA#2382-2395$<i>416<b>5","<>:xip/const:AP#2382-2389$<i>415<b>6",">:xip/d:NMOD$<i>415"],["s:Album","i:album","_415#2390-2395","opennlp/p:NN","cnx/l:album","cnx/p:N","cnx/syn:@NH","tt/l:Album","tt/p:NN","mate/l:album","mate/p:NN","mate/m:case:acc","mate/m:number:sg","mate/m:gender:neut","<:mate/d:NK$<i>413","<:mate/d:NK$<i>414",">:mate/d:NK$<i>412","xip/p:NOUN","xip/l:Album","<>:xip/const:NOUN#2390-2395$<i>416","<:xip/d:DETERM$<i>413","<:xip/d:NMOD$<i>414",">:xip/d:OBJ$<i>416"],["s:aufzunehmen","i:aufzunehmen","_416#2396-2407","opennlp/p:VVIZU","cnx/l:aufnehmen","cnx/p:V","cnx/m:INF","cnx/syn:@MAIN","tt/l:aufnehmen","tt/p:VVIZU","mate/l:aufnehmen","mate/p:VVIZU","<:mate/d:MO$<i>403","<:mate/d:MO$<i>409","<:mate/d:MO$<i>410",">:mate/d:OC$<i>406","xip/p:VERB","xip/l:aufnehmen","<>:xip/const:VERB#2396-2407$<i>417","<:xip/d:OBJ$<i>415","xip/d:VMAIN"],["s:An","i:an","_417#2409-2411","<>:s#2409-2522$<i>435","opennlp/p:APPR","cnx/l:an","cnx/p:PREP","cnx/syn:@PREMARK","tt/l:an","tt/p:APPR","mate/l:an","mate/p:APPR",">:mate/d:MO$<i>420","<:mate/d:NK$<i>419","xip/p:PREP","xip/l:an","<>:xip/const:TOP#2409-2522$<i>435","<>:xip/const:MC#2409-2453$<i>425<b>1","<>:xip/const:PP#2409-2423$<i>420<b>2","<>:xip/const:PREP#2409-2411$<i>418"],["s:ihrer","i:ihrer","_418#2412-2417","opennlp/p:PPOSAT","cnx/l:ihr","cnx/p:PRON","cnx/syn:@PREMOD","tt/l:ihr","tt/p:PPOSAT","mate/l:ihr","mate/p:PPOSAT","mate/m:case:dat","mate/m:number:sg","mate/m:gender:fem",">:mate/d:NK$<i>419","xip/p:DET","xip/l:ihr","<>:xip/const:DET#2412-2417$<i>419","<>:xip/const:NP#2412-2423$<i>420<b>3",">:xip/d:DETERM$<i>419"],["s:Seite","i:seite","_419#2418-2423","opennlp/p:NN","cnx/l:seite","cnx/p:N","cnx/syn:@NH","<>:cnx/const:np#2418-2423$<i>420","tt/l:Seite","tt/p:NN","mate/l:seite","mate/p:NN","mate/m:case:dat","mate/m:number:sg","mate/m:gender:fem","<:mate/d:NK$<i>418",">:mate/d:NK$<i>417","xip/p:NOUN","xip/l:Seite","<>:xip/const:NPA#2418-2423$<i>420<b>4","<>:xip/const:NOUN#2418-2423$<i>420","<:xip/d:DETERM$<i>418"],["s:steht","i:steht","_420#2424-2429","opennlp/p:VVFIN","cnx/l:stehen","cnx/p:V","cnx/m:IND","cnx/m:PRES","cnx/syn:@MAIN","tt/l:stehen","tt/p:VVFIN","mate/l:stehen","mate/p:VVFIN","mate/m:number:sg","mate/m:person:3","mate/m:tense:pres","mate/m:mood:ind","<:mate/d:MO$<i>417","<:mate/d:DA$<i>422","<:mate/d:MO$<i>423","xip/p:VERB","xip/l:stehen","<>:xip/const:VERB#2424-2429$<i>421","xip/d:VMAIN"],["s:Terry","i:terry","_421#2430-2435","opennlp/p:NE","corenlp/ne_dewac_175m_600:I-PER","corenlp/ne_hgc_175m_600:I-PER","cnx/l:Terry","cnx/p:N","cnx/m:Prop","cnx/syn:@PREMOD","<>:cnx/const:np#2430-2440$<i>423","tt/l:Terry","tt/p:NE","mate/l:terry","mate/p:NE","mate/m:case:nom","mate/m:number:sg","mate/m:gender:masc",">:mate/d:PNC$<i>422","xip/p:NOUN","xip/l:Terry","<>:xip/const:NP#2430-2440$<i>423<b>2","<>:xip/const:NPA#2430-2440$<i>423<b>3","<>:xip/const:NOUN#2430-2440$<i>423<b>4","<>:xip/const:NOUN#2430-2435$<i>422"],["s:Date","i:date","_422#2436-2440","opennlp/p:NN","corenlp/ne_dewac_175m_600:I-PER","corenlp/ne_hgc_175m_600:I-PER","cnx/l:Date","cnx/p:N","cnx/m:Prop","cnx/syn:@NH","tt/l:Date","tt/p:NN","mate/l:date","mate/p:NE","mate/m:case:nom","mate/m:number:sg","mate/m:gender:masc","<:mate/d:PNC$<i>421",">:mate/d:DA$<i>420","xip/p:NOUN","xip/l:Date","<>:xip/const:NOUN#2436-2440$<i>423"],["s:als","i:als","_423#2441-2444","opennlp/p:APPR","cnx/l:als","cnx/p:PREP","cnx/syn:@PREMARK","tt/l:als","tt/p:KOKOM","mate/l:als","mate/p:APPR",">:mate/d:MO$<i>420","<:mate/d:NK$<i>424","xip/p:PREP","xip/l:als","<>:xip/const:PP#2441-2453$<i>425<b>2","<>:xip/const:PREP#2441-2444$<i>424"],["s:Producer","i:producer","_424#2445-2453","opennlp/p:NN","cnx/l:producer","cnx/p:N","cnx/syn:@NH","<>:cnx/const:np#2445-2453$<i>425","tt/p:NE","mate/l:producer","mate/p:NN","mate/m:case:nom","mate/m:number:sg","mate/m:gender:masc",">:mate/d:NK$<i>423","<:mate/d:RC$<i>434","xip/p:NOUN","xip/l:Producer","<>:xip/const:NOUN#2445-2453$<i>425","<>:xip/const:NP#2445-2453$<i>425<b>3","<>:xip/const:NPA#2445-2453$<i>425<b>4"],["s:der","i:der","_425#2455-2458","opennlp/p:PRELS","cnx/l:der","cnx/p:PRON","cnx/syn:@NH","tt/l:die","tt/p:PRELS","tt/l:die","tt/p:ART","mate/l:der","mate/p:PRELS","mate/m:case:nom","mate/m:number:sg","mate/m:gender:masc",">:mate/d:SB$<i>434","xip/p:PRON","xip/l:der","<>:xip/const:NP#2455-2458$<i>426<b>1","<>:xip/const:PRON#2455-2458$<i>426","xip/d:THEMA"],["s:schon","i:schon","_426#2459-2464","opennlp/p:ADV","cnx/l:schon","cnx/p:ADV","cnx/syn:@ADVL","tt/l:schon","tt/p:ADV","mate/l:schon","mate/p:ADV",">:mate/d:MO$<i>433","xip/p:ADV","xip/l:schon","<>:xip/const:ADV#2459-2464$<i>427"],["s:mit","i:mit","_427#2465-2468","opennlp/p:APPR","cnx/l:mit","cnx/p:PREP","cnx/syn:@PREMARK","tt/l:mit","tt/p:APPR","mate/l:mit","mate/p:APPR",">:mate/d:MO$<i>433","<:mate/d:NK$<i>429","xip/p:PREP","xip/l:mit","<>:xip/const:PREP#2465-2468$<i>428"],["s:den","i:den","_428#2469-2472","opennlp/p:ART","cnx/l:der","cnx/p:DET","cnx/syn:@PREMOD","tt/l:die","tt/p:ART","mate/l:der","mate/p:ART","mate/m:case:dat","mate/m:number:pl","mate/m:gender:*",">:mate/d:NK$<i>429","xip/p:DET","xip/l:der","<>:xip/const:DET#2469-2472$<i>429","<>:xip/const:MC#2469-2521$<i>435<b>1","<>:xip/const:NP#2469-2481$<i>430<b>2",">:xip/d:DETERM$<i>429"],["s:Deftones","i:deftones","_429#2473-2481","opennlp/p:NN","cnx/l:deftones","cnx/p:N","cnx/syn:@NH","<>:cnx/const:np#2473-2481$<i>430","tt/p:NE","tt/p:NN","mate/l:deftone","mate/p:NN","mate/m:case:dat","mate/m:number:pl","mate/m:gender:*","<:mate/d:NK$<i>428",">:mate/d:NK$<i>427","<:mate/d:CD$<i>430","xip/p:NOUN","xip/l:Deftones","<>:xip/const:NOUN#2473-2481$<i>430","<>:xip/const:NPA#2473-2481$<i>430<b>3","<:xip/d:DETERM$<i>428",">:xip/d:OBJ$<i>433","<:xip/d:COORD$<i>430"],["s:und","i:und","_430#2482-2485","opennlp/p:KON","cnx/l:und","cnx/p:CC","cnx/syn:@CC","tt/l:und","tt/p:KON","mate/l:und","mate/p:KON",">:mate/d:CD$<i>429","<:mate/d:CJ$<i>431","xip/p:CONJ","xip/l:und","<>:xip/const:CONJ#2482-2485$<i>431",">:xip/d:COORD$<i>429",">:xip/d:COORD$<i>431"],["s:Soundgarden","i:soundgarden","_431#2486-2497","opennlp/p:NN","cnx/l:Soundgarden","cnx/p:N","cnx/m:Prop","cnx/syn:@NH","<>:cnx/const:np#2486-2497$<i>432","tt/l:Soundgarde","tt/p:NN","mate/l:soundgarde","mate/p:NN","mate/m:case:dat","mate/m:number:pl","mate/m:gender:fem",">:mate/d:CJ$<i>430","xip/p:NOUN","xip/l:Sound","xip/l:Garde","xip/l:Soundgarde","<>:xip/const:NP#2486-2497$<i>432<b>2","<>:xip/const:NPA#2486-2497$<i>432<b>3","<>:xip/const:NOUN#2486-2497$<i>432","<:xip/d:COORD$<i>430",">:xip/d:OBJ$<i>433"],["s:zusammen","i:zusammen","_432#2498-2506","opennlp/p:ADV","cnx/l:zusammen","cnx/p:ADV","cnx/syn:@ADVL","tt/l:zusammen","tt/p:ADV","tt/l:zusammen","tt/p:PTKVZ","mate/l:zusammen","mate/p:ADV",">:mate/d:MO$<i>433","xip/p:ADV","xip/l:zusammen","<>:xip/const:ADV#2498-2506$<i>433",">:xip/d:VMOD$<i>433"],["s:gearbeitet","i:gearbeitet","_433#2507-2517","opennlp/p:VVPP","cnx/l:arbeiten","cnx/p:V","cnx/m:PCP","cnx/m:PERF","cnx/syn:@MAIN","tt/l:arbeiten","tt/p:VVPP","mate/l:arbeiten","mate/p:VVPP","<:mate/d:MO$<i>426","<:mate/d:MO$<i>427","<:mate/d:MO$<i>432",">:mate/d:OC$<i>434","xip/p:VERB","xip/l:arbeiten","<>:xip/const:VERB#2507-2517$<i>434","<:xip/d:OBJ$<i>429","<:xip/d:OBJ$<i>431","<:xip/d:VMOD$<i>432",">:xip/d:AUXIL$<i>434","xip/d:VMAIN"],["s:hat","i:hat","_434#2518-2521","opennlp/p:VAFIN","cnx/l:haben","cnx/p:V","cnx/m:IND","cnx/m:PRES","cnx/syn:@MAIN","tt/l:haben","tt/p:VAFIN","mate/l:haben","mate/p:VAFIN","mate/m:number:sg","mate/m:person:3","mate/m:tense:pres","mate/m:mood:ind","<:mate/d:SB$<i>425","<:mate/d:OC$<i>433",">:mate/d:RC$<i>424","xip/p:VERB","xip/l:haben","<>:xip/const:VERB#2518-2521$<i>435","<:xip/d:AUXIL$<i>433"],["s:4.","i:4.","_435#2523-2525","<>:s#2523-2541$<i>438","opennlp/p:ADJA","cnx/l:4.","cnx/p:NUM","cnx/syn:@PREMOD","tt/l:4.","tt/p:ADJA","xip/p:NUM","xip/l:4.","<>:xip/const:TOP#2523-2619$<i>451","<>:xip/const:MC#2523-2618$<i>451<b>1","<>:xip/const:NP#2523-2536$<i>437<b>2","<>:xip/const:NPA#2523-2536$<i>437<b>3","<>:xip/const:NUM#2523-2525$<i>436"],["s:Mitglieder","i:mitglieder","_436#2526-2536","opennlp/p:NN","cnx/l:mitglied","cnx/p:N","cnx/m:PL","cnx/syn:@NH","<>:cnx/const:np#2526-2536$<i>437","tt/l:Mitglied","tt/p:NN","mate/l:mitglied","mate/p:NN","mate/m:case:nom","mate/m:number:pl","mate/m:gender:neut","xip/p:NOUN","xip/l:Mitglied","<>:xip/const:NOUN#2526-2536$<i>437",">:xip/d:PRED$<i>447","<:xip/d:NMOD$<i>437"],["s:4.1.","i:4.1.","_437#2537-2541","opennlp/p:$.","xip/p:NUM","xip/l:4.1.","<>:xip/const:NP#2537-2541$<i>438<b>2","<>:xip/const:NPA#2537-2541$<i>438<b>3","<>:xip/const:NOUN#2537-2541$<i>438<b>4","<>:xip/const:NUM#2537-2541$<i>438","xip/d:DATE",">:xip/d:NMOD$<i>436"],["s:Jason","i:jason","_438#2542-2547","<>:s#2542-2619$<i>451","opennlp/p:NE","corenlp/ne_dewac_175m_600:I-PER","corenlp/ne_hgc_175m_600:I-PER","cnx/l:Jason","cnx/p:N","cnx/m:Prop","cnx/syn:@PREMOD","<>:cnx/const:np#2542-2565$<i>442","tt/l:Jason","tt/p:NE","mate/l:jason","mate/p:NE","mate/m:case:nom","mate/m:number:sg","mate/m:gender:masc",">:mate/d:PNC$<i>439","xip/p:NOUN","xip/l:Jason","<>:xip/const:NOUN#2542-2547$<i>439","<>:xip/const:NP#2542-2565$<i>442<b>2","<>:xip/const:NPA#2542-2565$<i>442<b>3","<>:xip/const:NOUN#2542-2565$<i>442<b>4"],["s:Perry","i:perry","_439#2548-2553","opennlp/p:NE","corenlp/ne_dewac_175m_600:I-PER","corenlp/ne_hgc_175m_600:I-PER","cnx/l:Perry","cnx/p:N","cnx/m:Prop","cnx/syn:@PREMOD","tt/l:Perry","tt/p:NE","mate/l:perry","mate/p:NE","mate/m:case:nom","mate/m:number:sg","mate/m:gender:masc","<:mate/d:PNC$<i>438","xip/p:NOUN","xip/l:Perry","<>:xip/const:NOUN#2548-2553$<i>440"],["s:Jason","i:jason","_440#2554-2559","<>:p#2554-2752$<i>471","opennlp/p:NE","corenlp/ne_dewac_175m_600:I-PER","corenlp/ne_hgc_175m_600:I-PER","cnx/l:Jason","cnx/p:N","cnx/m:Prop","cnx/syn:@PREMOD","tt/l:Jason","tt/p:NE","mate/l:jason","mate/p:NE","mate/m:case:nom","mate/m:number:sg","mate/m:gender:masc",">:mate/d:PNC$<i>441","xip/p:NOUN","xip/l:Jason","<>:xip/const:NOUN#2554-2559$<i>441"],["s:Perry","i:perry","_441#2560-2565","opennlp/p:NE","corenlp/ne_dewac_175m_600:I-PER","corenlp/ne_hgc_175m_600:I-PER","cnx/l:Perry","cnx/p:N","cnx/m:Prop","cnx/syn:@NH","tt/l:Perry","tt/p:NE","mate/l:perry","mate/p:NE","mate/m:case:nom","mate/m:number:sg","mate/m:gender:masc","<:mate/d:PNC$<i>440",">:mate/d:SB$<i>447","<:mate/d:PAR$<i>443","xip/p:NOUN","xip/l:Perry","<>:xip/const:NOUN#2560-2565$<i>442"],["s:29.","i:29.","_442#2569-2572","opennlp/p:ADJA","cnx/l:29.","cnx/p:NUM","cnx/m:ORD","cnx/syn:@PREMOD","<>:cnx/const:np#2569-2581$<i>444","tt/l:29.","tt/p:ADJA","xip/p:NUM","xip/l:29.","<>:xip/const:INS#2566-2598$<i>447<b>2","<>:xip/const:NUM#2569-2572$<i>443"],["s:Dezember","i:dezember","_443#2573-2581","opennlp/p:NN","cnx/l:dezember","cnx/p:N","cnx/syn:@NH","tt/l:Dezember","tt/p:NN","mate/l:dezember","mate/p:NN","mate/m:case:nom","mate/m:number:sg","mate/m:gender:masc",">:mate/d:PAR$<i>441","<:mate/d:NK$<i>444","<:mate/d:MO$<i>445","xip/p:NOUN","xip/l:Dezember","<>:xip/const:NOUN#2573-2581$<i>444"],["s:1969","i:1969","_444#2582-2586","opennlp/p:CARD","cnx/l:1969","cnx/p:NUM","cnx/syn:@NH","tt/l:@card@","tt/p:CARD","mate/l:1969","mate/p:CARD",">:mate/d:NK$<i>443","xip/p:NUM","xip/l:1969","<>:xip/const:NUM#2582-2586$<i>445"],["s:in","i:in","_445#2587-2589","opennlp/p:APPR","cnx/l:in","cnx/p:PREP","cnx/syn:@PREMARK","tt/l:in","tt/p:APPR","mate/l:in","mate/p:APPR",">:mate/d:MO$<i>443","<:mate/d:NK$<i>446","xip/p:PREP","xip/l:in","<>:xip/const:PREP#2587-2589$<i>446"],["s:Suffolk","i:suffolk","_446#2590-2597","opennlp/p:NE","corenlp/ne_dewac_175m_600:I-LOC","corenlp/ne_hgc_175m_600:I-LOC","cnx/l:suff","cnx/l:folk","cnx/p:N","cnx/syn:@NH","<>:cnx/const:np#2590-2597$<i>447","tt/l:Suffolk","tt/p:NN","mate/l:suffolk","mate/p:NE","mate/m:case:dat","mate/m:number:sg","mate/m:gender:neut",">:mate/d:NK$<i>445","xip/p:NOUN","xip/l:Suff","xip/l:Folk","xip/l:Sufffolk","<>:xip/const:NOUN#2590-2597$<i>447"],["s:ist","i:ist","_447#2599-2602","opennlp/p:VAFIN","cnx/l:sein","cnx/p:V","cnx/m:IND","cnx/m:PRES","cnx/syn:@MAIN","tt/l:sein","tt/p:VAFIN","mate/l:sein","mate/p:VAFIN","mate/m:number:sg","mate/m:person:3","mate/m:tense:pres","mate/m:mood:ind","<:mate/d:SB$<i>441","<:mate/d:PD$<i>448","<:mate/d:CJ$<i>456","xip/p:VERB","xip/l:sein","<>:xip/const:VERB#2599-2602$<i>448","<:xip/d:PRED$<i>436","xip/d:VMAIN","<:xip/d:SUBJ$<i>448"],["s:Sänger","i:sänger","_448#2603-2609","opennlp/p:NN","cnx/l:sänger","cnx/p:N","cnx/syn:@NH","<>:cnx/const:np#2603-2609$<i>449","tt/l:Sänger","tt/p:NN","mate/l:sänger","mate/p:NN","mate/m:case:nom","mate/m:number:sg","mate/m:gender:masc",">:mate/d:PD$<i>447","<:mate/d:AG$<i>450","xip/p:NOUN","xip/l:Sänger","<>:xip/const:NP#2603-2609$<i>449<b>2","<>:xip/const:NPA#2603-2609$<i>449<b>3","<>:xip/const:NOUN#2603-2609$<i>449",">:xip/d:SUBJ$<i>447","<:xip/d:NMOD$<i>450"],["s:der","i:der","_449#2610-2613","opennlp/p:ART","cnx/l:der","cnx/p:DET","cnx/syn:@PREMOD","tt/l:die","tt/p:ART","mate/l:der","mate/p:ART","mate/m:case:nom","mate/m:number:sg","mate/m:gender:masc",">:mate/d:NK$<i>450","xip/p:DET","xip/l:der","<>:xip/const:NP#2610-2618$<i>451<b>2","<>:xip/const:DET#2610-2613$<i>450",">:xip/d:DETERM$<i>450"],["s:Band","i:band","_450#2614-2618","opennlp/p:NN","cnx/l:band","cnx/p:N","cnx/syn:@NH","<>:cnx/const:np#2614-2618$<i>451","tt/l:Band","tt/p:NN","mate/l:band","mate/p:NN","mate/m:case:nom","mate/m:number:sg","mate/m:gender:masc","<:mate/d:NK$<i>449",">:mate/d:AG$<i>448","xip/p:NOUN","xip/l:Band","<>:xip/const:NPA#2614-2618$<i>451<b>3","<>:xip/const:NOUN#2614-2618$<i>451","<:xip/d:DETERM$<i>449",">:xip/d:NMOD$<i>448"],["s:Während","i:während","_451#2620-2627","<>:s#2620-2709$<i>465","opennlp/p:KOUS","cnx/l:während","cnx/p:CS","cnx/syn:@PREMARK","tt/l:während","tt/p:KOUS","tt/l:während","tt/p:APPR","mate/l:während","mate/p:APPR",">:mate/d:MO$<i>456","<:mate/d:NK$<i>453","xip/p:ADJ","xip/l:währen","<>:xip/const:TOP#2620-2709$<i>465","<>:xip/const:MC#2620-2687$<i>462<b>1","<>:xip/const:AP#2620-2627$<i>452<b>2","<>:xip/const:ADJ#2620-2627$<i>452",">:xip/d:VMOD$<i>456"],["s:der","i:der","_452#2628-2631","opennlp/p:ART","cnx/l:die","cnx/p:DET","cnx/syn:@PREMOD","tt/l:die","tt/p:ART","mate/l:der","mate/p:ART","mate/m:case:gen","mate/m:number:pl","mate/m:gender:masc",">:mate/d:NK$<i>453","xip/p:DET","xip/l:der","<>:xip/const:DET#2628-2631$<i>453","<>:xip/const:NP#2628-2639$<i>454<b>2",">:xip/d:DETERM$<i>453"],["s:Anfänge","i:anfänge","_453#2632-2639","opennlp/p:NN","cnx/l:anfang","cnx/p:N","cnx/m:PL","cnx/syn:@NH","<>:cnx/const:np#2632-2639$<i>454","tt/l:Anfang","tt/p:NN","mate/l:anfang","mate/p:NN","mate/m:case:gen","mate/m:number:pl","mate/m:gender:masc","<:mate/d:NK$<i>452",">:mate/d:NK$<i>451","<:mate/d:AG$<i>455","xip/p:NOUN","xip/l:Anfang","<>:xip/const:NPA#2632-2639$<i>454<b>3","<>:xip/const:NOUN#2632-2639$<i>454","<:xip/d:DETERM$<i>452",">:xip/d:OBJ$<i>456","<:xip/d:NMOD$<i>455"],["s:der","i:der","_454#2640-2643","opennlp/p:ART","cnx/l:die","cnx/p:DET","cnx/syn:@PREMOD","tt/l:die","tt/p:ART","mate/l:der","mate/p:ART","mate/m:case:gen","mate/m:number:pl","mate/m:gender:masc",">:mate/d:NK$<i>455","xip/p:DET","xip/l:der","<>:xip/const:NP#2640-2648$<i>456<b>2","<>:xip/const:DET#2640-2643$<i>455",">:xip/d:DETERM$<i>455"],["s:Band","i:band","_455#2644-2648","opennlp/p:NN","cnx/l:band","cnx/p:N","cnx/syn:@NH","<>:cnx/const:np#2644-2648$<i>456","tt/l:Band","tt/p:NN","mate/l:band","mate/p:NN","mate/m:case:gen","mate/m:number:pl","mate/m:gender:masc","<:mate/d:NK$<i>454",">:mate/d:AG$<i>453","xip/p:NOUN","xip/l:Band","<>:xip/const:NPA#2644-2648$<i>456<b>3","<>:xip/const:NOUN#2644-2648$<i>456","<:xip/d:DETERM$<i>454",">:xip/d:NMOD$<i>453"],["s:produzierte","i:produzierte","_456#2649-2660","opennlp/p:VVFIN","cnx/l:produzieren","cnx/p:V","cnx/m:IND","cnx/m:PAST","cnx/syn:@MAIN","tt/l:produzieren","tt/p:VVFIN","mate/l:produzieren","mate/p:VVFIN","mate/m:number:sg","mate/m:person:3","mate/m:tense:past","mate/m:mood:ind","<:mate/d:MO$<i>451",">:mate/d:CJ$<i>447","<:mate/d:SB$<i>457","<:mate/d:OA$<i>464","xip/p:VERB","xip/l:produzieren","<>:xip/const:VERB#2649-2660$<i>457","<:xip/d:VMOD$<i>451","<:xip/d:OBJ$<i>453","xip/d:VMAIN","<:xip/d:SUBJ$<i>457","<:xip/d:OBJ$<i>458","<:xip/d:VMOD$<i>461"],["s:er","i:er","_457#2661-2663","opennlp/p:PPER","cnx/l:er","cnx/p:PRON","cnx/syn:@NH","tt/l:er","tt/p:PPER","mate/l:er","mate/p:PPER","mate/m:case:nom","mate/m:number:sg","mate/m:gender:masc","mate/m:person:3",">:mate/d:SB$<i>456","xip/p:PRON","xip/l:er","<>:xip/const:PRON#2661-2663$<i>458","<>:xip/const:NP#2661-2663$<i>458<b>2",">:xip/d:SUBJ$<i>456"],["s:einige","i:einige","_458#2664-2670","opennlp/p:PIS","cnx/l:einigen","cnx/p:V","cnx/m:SUB","cnx/m:PRES","cnx/syn:@MAIN","tt/l:einige","tt/p:PIAT","tt/l:einige","tt/p:PIS","mate/l:einiger","mate/p:PIS","mate/m:case:acc","mate/m:number:pl","mate/m:gender:fem",">:mate/d:NK$<i>464","<:mate/d:AG$<i>460","<:mate/d:MNR$<i>461","<:mate/d:CD$<i>462","xip/p:PRON","xip/l:einige","<>:xip/const:NP#2664-2670$<i>459<b>2","<>:xip/const:PRON#2664-2670$<i>459",">:xip/d:OBJ$<i>456","<:xip/d:NMOD$<i>460"],["s:der","i:der","_459#2671-2674","opennlp/p:ART","cnx/l:die","cnx/p:DET","cnx/syn:@PREMOD","tt/l:die","tt/p:ART","mate/l:der","mate/p:ART","mate/m:case:gen","mate/m:number:pl","mate/m:gender:masc",">:mate/d:NK$<i>460","xip/p:DET","xip/l:der","<>:xip/const:NP#2671-2680$<i>461<b>2","<>:xip/const:DET#2671-2674$<i>460",">:xip/d:DETERM$<i>460"],["s:Songs","i:songs","_460#2675-2680","opennlp/p:NN","cnx/l:song","cnx/p:N","cnx/m:PL","cnx/syn:@NH","<>:cnx/const:np#2675-2680$<i>461","tt/l:Song","tt/p:NN","mate/l:song","mate/p:NN","mate/m:case:gen","mate/m:number:pl","mate/m:gender:masc","<:mate/d:NK$<i>459",">:mate/d:AG$<i>458","xip/p:NOUN","xip/l:Song","<>:xip/const:NPA#2675-2680$<i>461<b>3","<>:xip/const:NOUN#2675-2680$<i>461","<:xip/d:DETERM$<i>459",">:xip/d:NMOD$<i>458"],["s:selbst","i:selbst","_461#2681-2687","opennlp/p:ADV","cnx/l:selbst","cnx/p:PRON","cnx/syn:@NH","tt/l:selbst","tt/p:ADV","mate/l:selbst","mate/p:ADV",">:mate/d:MNR$<i>458","xip/p:ADV","xip/l:selbst","<>:xip/const:ADV#2681-2687$<i>462",">:xip/d:VMOD$<i>456"],["s:und","i:und","_462#2688-2691","opennlp/p:KON","cnx/l:und","cnx/p:CC","cnx/syn:@CC","tt/l:und","tt/p:KON","mate/l:und","mate/p:KON",">:mate/d:CD$<i>458","<:mate/d:CJ$<i>463","xip/p:CONJ","xip/l:und","<>:xip/const:MC#2688-2708$<i>465<b>1","<>:xip/const:CONJ#2688-2691$<i>463"],["s:erstellte","i:erstellte","_463#2692-2701","opennlp/p:ADJA","cnx/l:erstellen","cnx/p:V","cnx/m:IND","cnx/m:PAST","cnx/syn:@MAIN","tt/l:erstellt","tt/p:ADJA","tt/l:erstellen","tt/p:VVFIN","mate/l:erstellt","mate/p:ADJA","mate/m:case:nom","mate/m:number:sg","mate/m:gender:fem","mate/m:degree:pos",">:mate/d:CJ$<i>462","xip/p:VERB","xip/l:erstellen","<>:xip/const:VERB#2692-2701$<i>464","xip/d:VMAIN","<:xip/d:SUBJ$<i>464"],["s:Remixe","i:remixe","_464#2702-2708","opennlp/p:NN","cnx/l:Remixe","cnx/p:N","cnx/m:Prop","cnx/syn:@NH","<>:cnx/const:np#2702-2708$<i>465","tt/l:Remix","tt/p:NN","mate/l:remixe","mate/p:NN","mate/m:case:nom","mate/m:number:sg","mate/m:gender:fem","<:mate/d:NK$<i>458",">:mate/d:OA$<i>456","xip/p:NOUN","xip/l:Remixe","<>:xip/const:NP#2702-2708$<i>465<b>2","<>:xip/const:NPA#2702-2708$<i>465<b>3","<>:xip/const:NOUN#2702-2708$<i>465",">:xip/d:SUBJ$<i>463"],["s:Mittlerweile","i:mittlerweile","_465#2710-2722","<>:s#2710-2752$<i>471","opennlp/p:ADV","cnx/l:mittlerweile","cnx/p:ADV","cnx/syn:@ADVL","tt/l:mittlerweile","tt/p:ADV","mate/l:mittlerweile","mate/p:ADV",">:mate/d:MO$<i>466","xip/p:ADV","xip/l:mittlerweile","<>:xip/const:ADV#2710-2722$<i>466","<>:xip/const:TOP#2710-2752$<i>471","<>:xip/const:MC#2710-2729$<i>468<b>1",">:xip/d:VMOD$<i>466"],["s:ist","i:ist","_466#2723-2726","opennlp/p:VAFIN","cnx/l:sein","cnx/p:V","cnx/m:IND","cnx/m:PRES","cnx/syn:@MAIN","tt/l:sein","tt/p:VAFIN","mate/l:sein","mate/p:VAFIN","mate/m:number:sg","mate/m:person:3","mate/m:tense:pres","mate/m:mood:ind","<:mate/d:MO$<i>465","<:mate/d:SB$<i>467","<:mate/d:PD$<i>468","xip/p:VERB","xip/l:sein","<>:xip/const:VERB#2723-2726$<i>467","<:xip/d:VMOD$<i>465","xip/d:VMAIN","<:xip/d:SUBJ$<i>467"],["s:er","i:er","_467#2727-2729","opennlp/p:PPER","cnx/l:er","cnx/p:PRON","cnx/syn:@NH","tt/l:er","tt/p:PPER","mate/l:er","mate/p:PPER","mate/m:case:nom","mate/m:number:sg","mate/m:gender:masc","mate/m:person:3",">:mate/d:SB$<i>466","xip/p:PRON","xip/l:er","<>:xip/const:NP#2727-2729$<i>468<b>2","<>:xip/const:PRON#2727-2729$<i>468",">:xip/d:SUBJ$<i>466"],["s:verheiratet","i:verheiratet","_468#2730-2741","opennlp/p:VVPP","cnx/l:verheiraten","cnx/p:V","cnx/m:IND","cnx/m:PRES","cnx/syn:@MAIN","tt/l:verheiratet","tt/p:ADJD","tt/l:verheiraten","tt/p:VVPP","mate/l:verheiraten","mate/p:VVPP",">:mate/d:PD$<i>466","<:mate/d:CD$<i>469","xip/p:VERB","xip/l:verheiraten","<>:xip/const:MC#2730-2751$<i>471<b>1","<>:xip/const:VERB#2730-2741$<i>469","xip/d:VMAIN","<:xip/d:SUBJ$<i>470"],["s:und","i:und","_469#2742-2745","opennlp/p:KON","cnx/l:und","cnx/p:CC","cnx/syn:@CC","tt/l:und","tt/p:KON","mate/l:und","mate/p:KON",">:mate/d:CD$<i>468","<:mate/d:CJ$<i>470","xip/p:CONJ","xip/l:und","<>:xip/const:CONJ#2742-2745$<i>470"],["s:Vater","i:vater","_470#2746-2751","opennlp/p:NN","cnx/l:vater","cnx/p:N","cnx/syn:@NH","<>:cnx/const:np#2746-2751$<i>471","tt/l:Vater","tt/p:NN","mate/l:vater","mate/p:NN","mate/m:case:nom","mate/m:number:sg","mate/m:gender:masc",">:mate/d:CJ$<i>469","xip/p:NOUN","xip/l:Vater","<>:xip/const:NP#2746-2751$<i>471<b>2","<>:xip/const:NPA#2746-2751$<i>471<b>3","<>:xip/const:NOUN#2746-2751$<i>471",">:xip/d:SUBJ$<i>468"],["s:4.2.","i:4.2.","_471#2753-2757","<>:s#2753-2757$<i>472","opennlp/p:KOUS","xip/p:NUM","xip/l:4.2.","<>:xip/const:TOP#2753-2839$<i>485","<>:xip/const:MC#2753-2838$<i>485<b>1","<>:xip/const:NP#2753-2757$<i>472<b>2","<>:xip/const:NPA#2753-2757$<i>472<b>3","<>:xip/const:NOUN#2753-2757$<i>472<b>4","<>:xip/const:NUM#2753-2757$<i>472","xip/d:DATE",">:xip/d:SUBJ$<i>481"],["s:Mark","i:mark","_472#2758-2762","<>:s#2758-2839$<i>485","opennlp/p:NN","cnx/l:Mark","cnx/p:N","cnx/m:Prop","cnx/syn:@PREMOD","<>:cnx/const:np#2758-2783$<i>476","tt/l:Mark","tt/p:NN","tt/l:Mark","tt/p:NE","mate/l:mark","mate/p:NN","mate/m:case:nom","mate/m:number:sg","mate/m:gender:masc",">:mate/d:PNC$<i>473","xip/p:NOUN","xip/l:Mark","<>:xip/const:NP#2758-2783$<i>476<b>2","<>:xip/const:NPA#2758-2783$<i>476<b>3","<>:xip/const:NOUN#2758-2783$<i>476<b>4","<>:xip/const:NOUN#2758-2762$<i>473"],["s:Chapman","i:chapman","_473#2763-2770","opennlp/p:NE","corenlp/ne_dewac_175m_600:I-PER","corenlp/ne_hgc_175m_600:I-PER","cnx/l:Chapman","cnx/p:N","cnx/m:Prop","cnx/syn:@PREMOD","tt/p:NE","mate/l:chapman","mate/p:NE","mate/m:case:nom","mate/m:number:sg","mate/m:gender:masc","<:mate/d:PNC$<i>472","xip/p:NOUN","xip/l:Chapman","<>:xip/const:NOUN#2763-2770$<i>474"],["s:Mark","i:mark","_474#2771-2775","<>:p#2771-2934$<i>500","opennlp/p:NE","corenlp/ne_dewac_175m_600:I-PER","corenlp/ne_hgc_175m_600:I-PER","cnx/l:Mark","cnx/p:N","cnx/m:Prop","cnx/syn:@PREMOD","tt/l:Mark","tt/p:NE","tt/l:Mark","tt/p:NN","mate/l:mark","mate/p:NN","mate/m:case:nom","mate/m:number:sg","mate/m:gender:masc",">:mate/d:SB$<i>481","<:mate/d:NK$<i>475","<:mate/d:PAR$<i>477","xip/p:NOUN","xip/l:Mark","<>:xip/const:NOUN#2771-2775$<i>475"],["s:Chapman","i:chapman","_475#2776-2783","opennlp/p:NE","corenlp/ne_dewac_175m_600:I-PER","corenlp/ne_hgc_175m_600:I-PER","cnx/l:Chapman","cnx/p:N","cnx/m:Prop","cnx/syn:@NH","tt/p:NE","mate/l:chapman","mate/p:NE","mate/m:case:nom","mate/m:number:sg","mate/m:gender:masc",">:mate/d:NK$<i>474","xip/p:NOUN","xip/l:Chapman","<>:xip/const:NOUN#2776-2783$<i>476"],["s:17.","i:17.","_476#2787-2790","opennlp/p:ADJA","cnx/l:17.","cnx/p:NUM","cnx/m:ORD","cnx/syn:@PREMOD","<>:cnx/const:np#2787-2798$<i>478","tt/l:@ord@","tt/p:ADJA","xip/p:NUM","xip/l:17.","<>:xip/const:INS#2784-2815$<i>481<b>2","<>:xip/const:NUM#2787-2790$<i>477"],["s:Oktober","i:oktober","_477#2791-2798","opennlp/p:NN","cnx/l:oktober","cnx/p:N","cnx/syn:@NH","tt/l:Oktober","tt/p:NN","mate/l:oktober","mate/p:NN","mate/m:case:*","mate/m:number:sg","mate/m:gender:masc",">:mate/d:PAR$<i>474","<:mate/d:NK$<i>478","<:mate/d:MO$<i>479","xip/p:NOUN","xip/l:Oktober","<>:xip/const:NOUN#2791-2798$<i>478"],["s:1969","i:1969","_478#2799-2803","opennlp/p:CARD","cnx/l:1969","cnx/p:NUM","cnx/syn:@NH","tt/l:@card@","tt/p:CARD","mate/l:1969","mate/p:CARD",">:mate/d:NK$<i>477","xip/p:NUM","xip/l:1969","<>:xip/const:NUM#2799-2803$<i>479"],["s:in","i:in","_479#2804-2806","opennlp/p:APPR","cnx/l:in","cnx/p:PREP","cnx/syn:@PREMARK","tt/l:in","tt/p:APPR","mate/l:in","mate/p:APPR",">:mate/d:MO$<i>477","<:mate/d:NK$<i>480","xip/p:PREP","xip/l:in","<>:xip/const:PREP#2804-2806$<i>480"],["s:Suffolk","i:suffolk","_480#2807-2814","opennlp/p:NE","corenlp/ne_dewac_175m_600:I-LOC","corenlp/ne_hgc_175m_600:I-LOC","cnx/l:suff","cnx/l:folk","cnx/p:N","cnx/syn:@NH","<>:cnx/const:np#2807-2814$<i>481","tt/l:Suffolk","tt/p:NN","mate/l:suffolk","mate/p:NE","mate/m:case:dat","mate/m:number:sg","mate/m:gender:neut",">:mate/d:NK$<i>479","xip/p:NOUN","xip/l:Suff","xip/l:Folk","xip/l:Sufffolk","<>:xip/const:NOUN#2807-2814$<i>481"],["s:ist","i:ist","_481#2816-2819","opennlp/p:VAFIN","cnx/l:sein","cnx/p:V","cnx/m:IND","cnx/m:PRES","cnx/syn:@MAIN","tt/l:sein","tt/p:VAFIN","mate/l:sein","mate/p:VAFIN","mate/m:number:sg","mate/m:person:3","mate/m:tense:pres","mate/m:mood:ind","<:mate/d:SB$<i>474","<:mate/d:PD$<i>482","<:mate/d:CJ$<i>486","xip/p:VERB","xip/l:sein","<>:xip/const:VERB#2816-2819$<i>482","<:xip/d:SUBJ$<i>471","xip/d:VMAIN","<:xip/d:PRED$<i>482"],["s:Gitarrist","i:gitarrist","_482#2820-2829","opennlp/p:NN","cnx/l:gitarrist","cnx/p:N","cnx/syn:@NH","<>:cnx/const:np#2820-2829$<i>483","tt/l:Gitarrist","tt/p:NN","mate/l:gitarrist","mate/p:NN","mate/m:case:nom","mate/m:number:sg","mate/m:gender:masc",">:mate/d:PD$<i>481","<:mate/d:AG$<i>484","xip/p:NOUN","xip/l:Gitarrist","<>:xip/const:NP#2820-2829$<i>483<b>2","<>:xip/const:NPA#2820-2829$<i>483<b>3","<>:xip/const:NOUN#2820-2829$<i>483",">:xip/d:PRED$<i>481","<:xip/d:NMOD$<i>484"],["s:der","i:der","_483#2830-2833","opennlp/p:ART","cnx/l:der","cnx/p:DET","cnx/syn:@PREMOD","tt/l:die","tt/p:ART","mate/l:der","mate/p:ART","mate/m:case:nom","mate/m:number:sg","mate/m:gender:masc",">:mate/d:NK$<i>484","xip/p:DET","xip/l:der","<>:xip/const:NP#2830-2838$<i>485<b>2","<>:xip/const:DET#2830-2833$<i>484",">:xip/d:DETERM$<i>484"],["s:Band","i:band","_484#2834-2838","opennlp/p:NN","cnx/l:band","cnx/p:N","cnx/syn:@NH","<>:cnx/const:np#2834-2838$<i>485","tt/l:Band","tt/p:NN","mate/l:band","mate/p:NN","mate/m:case:nom","mate/m:number:sg","mate/m:gender:masc","<:mate/d:NK$<i>483",">:mate/d:AG$<i>482","xip/p:NOUN","xip/l:Band","<>:xip/const:NPA#2834-2838$<i>485<b>3","<>:xip/const:NOUN#2834-2838$<i>485","<:xip/d:DETERM$<i>483",">:xip/d:NMOD$<i>482"],["s:Er","i:er","_485#2840-2842","<>:s#2840-2907$<i>497","opennlp/p:PPER","cnx/l:er","cnx/p:PRON","cnx/syn:@NH","tt/l:er","tt/p:PPER","mate/l:er","mate/p:PPER","mate/m:case:nom","mate/m:number:sg","mate/m:gender:masc","mate/m:person:3",">:mate/d:SB$<i>486","xip/p:PRON","xip/l:er","<>:xip/const:TOP#2840-2934$<i>500","<>:xip/const:MC#2840-2933$<i>500<b>1","<>:xip/const:NP#2840-2842$<i>486<b>2","<>:xip/const:PRON#2840-2842$<i>486",">:xip/d:SUBJ$<i>486"],["s:macht","i:macht","_486#2843-2848","opennlp/p:VVFIN","cnx/l:machen","cnx/p:V","cnx/m:IND","cnx/m:PRES","cnx/syn:@MAIN","tt/l:machen","tt/p:VVFIN","mate/l:machen","mate/p:VVFIN","mate/m:number:sg","mate/m:person:3","mate/m:tense:pres","mate/m:mood:ind","<:mate/d:SB$<i>485",">:mate/d:CJ$<i>481","<:mate/d:MO$<i>487","<:mate/d:MO$<i>494","<:mate/d:OA$<i>499","xip/p:VERB","xip/l:machen","<>:xip/const:VERB#2843-2848$<i>487","<:xip/d:SUBJ$<i>485","xip/d:VMAIN","<:xip/d:VMOD$<i>493","<:xip/d:VMOD$<i>498","<:xip/d:OBJ$<i>499"],["s:mit","i:mit","_487#2849-2852","opennlp/p:APPR","cnx/l:mit","cnx/p:PREP","cnx/syn:@PREMARK","tt/l:mit","tt/p:APPR","mate/l:mit","mate/p:APPR",">:mate/d:MO$<i>486","<:mate/d:NK$<i>490","xip/p:PREP","xip/l:mit","<>:xip/const:PREP#2849-2852$<i>488","<>:xip/const:PP#2849-2876$<i>491<b>2"],["s:den","i:den","_488#2853-2856","opennlp/p:ART","cnx/l:die","cnx/p:DET","cnx/syn:@PREMOD","tt/l:die","tt/p:ART","mate/l:der","mate/p:ART","mate/m:case:dat","mate/m:number:pl","mate/m:gender:neut",">:mate/d:NK$<i>490","xip/p:DET","xip/l:der","<>:xip/const:NP#2853-2876$<i>491<b>3","<>:xip/const:DET#2853-2856$<i>489",">:xip/d:DETERM$<i>490"],["s:anderen","i:anderen","_489#2857-2864","opennlp/p:ADJA","cnx/l:andere","cnx/p:PRON","cnx/syn:@PREMOD","tt/l:ander","tt/p:ADJA","mate/l:anderer","mate/p:ADJA","mate/m:case:dat","mate/m:number:pl","mate/m:gender:neut","mate/m:degree:pos",">:mate/d:NK$<i>490","xip/p:ADJ","xip/l:andere","<>:xip/const:NPA#2857-2876$<i>491<b>4","<>:xip/const:AP#2857-2864$<i>490<b>5","<>:xip/const:ADJ#2857-2864$<i>490",">:xip/d:NMOD$<i>490"],["s:Mitgliedern","i:mitgliedern","_490#2865-2876","opennlp/p:NN","cnx/l:mitglied","cnx/p:N","cnx/m:PL","cnx/syn:@NH","<>:cnx/const:np#2865-2876$<i>491","tt/l:Mitglied","tt/p:NN","mate/l:mitglied","mate/p:NN","mate/m:case:dat","mate/m:number:pl","mate/m:gender:neut","<:mate/d:NK$<i>488","<:mate/d:NK$<i>489",">:mate/d:NK$<i>487","<:mate/d:AG$<i>492","xip/p:NOUN","xip/l:mitgliedern","<>:xip/const:NOUN#2865-2876$<i>491","<:xip/d:DETERM$<i>488","<:xip/d:NMOD$<i>489","<:xip/d:NMOD$<i>492"],["s:der","i:der","_491#2877-2880","opennlp/p:ART","cnx/l:die","cnx/p:DET","cnx/syn:@PREMOD","tt/l:die","tt/p:ART","mate/l:der","mate/p:ART","mate/m:case:gen","mate/m:number:sg","mate/m:gender:fem",">:mate/d:NK$<i>492","xip/p:DET","xip/l:der","<>:xip/const:NP#2877-2885$<i>493<b>2","<>:xip/const:DET#2877-2880$<i>492",">:xip/d:DETERM$<i>492"],["s:Band","i:band","_492#2881-2885","opennlp/p:NN","cnx/l:band","cnx/p:N","cnx/syn:@NH","<>:cnx/const:np#2881-2885$<i>493","tt/l:Band","tt/p:NN","mate/l:band","mate/p:NN","mate/m:case:gen","mate/m:number:sg","mate/m:gender:fem","<:mate/d:NK$<i>491",">:mate/d:AG$<i>490","xip/p:NOUN","xip/l:Band","<>:xip/const:NPA#2881-2885$<i>493<b>3","<>:xip/const:NOUN#2881-2885$<i>493","<:xip/d:DETERM$<i>491",">:xip/d:NMOD$<i>490"],["s:schon","i:schon","_493#2886-2891","opennlp/p:ADV","cnx/l:schon","cnx/p:ADV","cnx/syn:@ADVL","tt/l:schon","tt/p:ADV","mate/l:schon","mate/p:ADV",">:mate/d:MO$<i>494","xip/p:ADV","xip/l:schon","<>:xip/const:ADV#2886-2891$<i>494",">:xip/d:VMOD$<i>486"],["s:seit","i:seit","_494#2892-2896","opennlp/p:APPR","cnx/l:seit","cnx/p:PREP","cnx/syn:@PREMARK","tt/l:seit","tt/p:APPR","mate/l:seit","mate/p:APPR","<:mate/d:MO$<i>493",">:mate/d:MO$<i>486","xip/p:PREP","xip/l:seit","<>:xip/const:PP#2892-2918$<i>498<b>2","<>:xip/const:PREP#2892-2896$<i>495"],["s:seinem","i:seinem","_495#2897-2903","opennlp/p:PPOSAT","cnx/l:sein","cnx/p:PRON","cnx/syn:@PREMOD","tt/l:sein","tt/p:PPOSAT","mate/l:sein","mate/p:PPOSAT","mate/m:case:dat","mate/m:number:sg","mate/m:gender:masc",">:mate/d:NK$<i>499","xip/p:DET","xip/l:sein","<>:xip/const:NP#2897-2918$<i>498<b>3","<>:xip/const:DET#2897-2903$<i>496",">:xip/d:DETERM$<i>497"],["s:13.","i:13.","_496#2904-2907","opennlp/p:ADJA","cnx/l:13.","cnx/p:NUM","cnx/syn:@PREMOD","tt/l:13.","tt/p:ADJA","xip/p:NUM","xip/l:13.","<>:xip/const:NUM#2904-2907$<i>497","<>:xip/const:NPA#2904-2918$<i>498<b>4"],["s:Lebensjahr","i:lebensjahr","_497#2908-2918","<>:s#2908-2934$<i>500","opennlp/p:NN","cnx/l:leben","cnx/l:jahr","cnx/p:N","cnx/syn:@NH","<>:cnx/const:np#2908-2918$<i>498","tt/l:Lebensjahr","tt/p:NN","mate/l:lebensjahr","mate/p:NN","mate/m:case:nom","mate/m:number:sg","mate/m:gender:fem",">:mate/d:MO$<i>498","xip/p:NOUN","xip/l:leben","xip/l:Jahr","xip/l:Lebensjahr","<>:xip/const:NOUN#2908-2918$<i>498","<:xip/d:DETERM$<i>495"],["s:zusammen","i:zusammen","_498#2919-2927","opennlp/p:ADV","cnx/l:zusammen","cnx/p:ADV","cnx/syn:@ADVL","tt/l:zusammen","tt/p:PTKVZ","tt/l:zusammen","tt/p:ADV","mate/l:zusammen","mate/p:ADJA","<:mate/d:MO$<i>497",">:mate/d:NK$<i>499","xip/p:ADV","xip/l:zusammen","<>:xip/const:ADV#2919-2927$<i>499",">:xip/d:VMOD$<i>486"],["s:Musik","i:musik","_499#2928-2933","opennlp/p:NN","cnx/l:musik","cnx/p:N","cnx/syn:@NH","<>:cnx/const:np#2928-2933$<i>500","tt/l:Musik","tt/p:NN","mate/l:musik","mate/p:NN","mate/m:case:nom","mate/m:number:sg","mate/m:gender:fem","<:mate/d:NK$<i>495","<:mate/d:NK$<i>498",">:mate/d:OA$<i>486","xip/p:NOUN","xip/l:Musik","<>:xip/const:NP#2928-2933$<i>500<b>2","<>:xip/const:NPA#2928-2933$<i>500<b>3","<>:xip/const:NOUN#2928-2933$<i>500",">:xip/d:OBJ$<i>486"],["s:4.3.","i:4.3.","_500#2935-2939","<>:s#2935-2939$<i>501","opennlp/p:KOUS","xip/p:NUM","xip/l:4.3.","<>:xip/const:NUM#2935-2939$<i>501","<>:xip/const:TOP#2935-3011$<i>514","<>:xip/const:MC#2935-3010$<i>514<b>1","<>:xip/const:NP#2935-2939$<i>501<b>2","<>:xip/const:NPA#2935-2939$<i>501<b>3","<>:xip/const:NOUN#2935-2939$<i>501<b>4","xip/d:DATE",">:xip/d:SUBJ$<i>508"],["s:Giles","i:giles","_501#2940-2945","<>:s#2940-3011$<i>514","opennlp/p:NE","corenlp/ne_dewac_175m_600:I-PER","corenlp/ne_hgc_175m_600:I-PER","cnx/l:Giles","cnx/p:N","cnx/m:Prop","cnx/syn:@PREMOD","<>:cnx/const:np#2940-2963$<i>505","tt/p:NE","mate/l:giles","mate/p:NE","mate/m:case:*","mate/m:number:*","mate/m:gender:*",">:mate/d:PNC$<i>502","xip/p:NOUN","xip/l:Giles","<>:xip/const:NOUN#2940-2945$<i>502","<>:xip/const:NP#2940-2963$<i>505<b>2","<>:xip/const:NPA#2940-2963$<i>505<b>3","<>:xip/const:NOUN#2940-2963$<i>505<b>4"],["s:Perry","i:perry","_502#2946-2951","opennlp/p:NE","corenlp/ne_dewac_175m_600:I-PER","corenlp/ne_hgc_175m_600:I-PER","cnx/l:Perry","cnx/p:N","cnx/m:Prop","cnx/syn:@PREMOD","tt/l:Perry","tt/p:NE","mate/l:perry","mate/p:NE","mate/m:case:nom","mate/m:number:sg","mate/m:gender:*","<:mate/d:PNC$<i>501","xip/p:NOUN","xip/l:Perry","<>:xip/const:NOUN#2946-2951$<i>503"],["s:Giles","i:giles","_503#2952-2957","<>:p#2952-3142$<i>533","opennlp/p:NE","corenlp/ne_dewac_175m_600:I-PER","corenlp/ne_hgc_175m_600:I-PER","cnx/l:Giles","cnx/p:N","cnx/m:Prop","cnx/syn:@PREMOD","tt/p:NE","mate/l:giles","mate/p:NE","mate/m:case:nom","mate/m:number:sg","mate/m:gender:masc",">:mate/d:PNC$<i>504","xip/p:NOUN","xip/l:Giles","<>:xip/const:NOUN#2952-2957$<i>504"],["s:Perry","i:perry","_504#2958-2963","opennlp/p:NE","corenlp/ne_dewac_175m_600:I-PER","corenlp/ne_hgc_175m_600:I-PER","cnx/l:Perry","cnx/p:N","cnx/m:Prop","cnx/syn:@NH","tt/l:Perry","tt/p:NE","mate/l:perry","mate/p:NE","mate/m:case:nom","mate/m:number:sg","mate/m:gender:masc","<:mate/d:PNC$<i>503",">:mate/d:SB$<i>508","<:mate/d:CJ$<i>506","xip/p:NOUN","xip/l:Perry","<>:xip/const:NOUN#2958-2963$<i>505"],["s:15.","i:15.","_505#2967-2970","opennlp/p:ADJA","cnx/l:15.","cnx/p:NUM","cnx/m:ORD","cnx/syn:@PREMOD","<>:cnx/const:np#2967-2974$<i>507","tt/l:15.","tt/p:ADJA","xip/p:NUM","xip/l:15.","<>:xip/const:NUM#2967-2970$<i>506","<>:xip/const:INS#2964-2980$<i>508<b>2"],["s:Mai","i:mai","_506#2971-2974","opennlp/p:NN","cnx/l:mai","cnx/p:N","cnx/syn:@NH","tt/l:Mai","tt/p:NN","mate/l:mai","mate/p:NN","mate/m:case:nom","mate/m:number:sg","mate/m:gender:masc",">:mate/d:CJ$<i>504","<:mate/d:NK$<i>507","xip/p:NOUN","xip/l:Mai","<>:xip/const:NOUN#2971-2974$<i>507"],["s:1973","i:1973","_507#2975-2979","opennlp/p:CARD","cnx/l:1973","cnx/p:NUM","cnx/syn:@NH","tt/l:@card@","tt/p:CARD","mate/l:1973","mate/p:CARD",">:mate/d:NK$<i>506","xip/p:NUM","xip/l:1973","<>:xip/const:NUM#2975-2979$<i>508"],["s:steht","i:steht","_508#2981-2986","opennlp/p:VVFIN","cnx/l:stehen","cnx/p:V","cnx/m:IND","cnx/m:PRES","cnx/syn:@MAIN","tt/l:stehen","tt/p:VVFIN","mate/l:stehen","mate/p:VVFIN","mate/m:number:sg","mate/m:person:3","mate/m:tense:pres","mate/m:mood:ind","<:mate/d:SB$<i>504","<:mate/d:MO$<i>509","xip/p:VERB","xip/l:stehen","<>:xip/const:VERB#2981-2986$<i>509","<:xip/d:SUBJ$<i>500","xip/d:VMAIN"],["s:in","i:in","_509#2987-2989","opennlp/p:APPR","cnx/l:in","cnx/p:PREP","cnx/syn:@PREMARK","tt/l:in","tt/p:APPR","mate/l:in","mate/p:APPR",">:mate/d:MO$<i>508","<:mate/d:NK$<i>511","xip/p:PREP","xip/l:in","<>:xip/const:PREP#2987-2989$<i>510","<>:xip/const:PP#2987-2998$<i>512<b>2"],["s:der","i:der","_510#2990-2993","opennlp/p:ART","cnx/l:die","cnx/p:DET","cnx/syn:@PREMOD","tt/l:die","tt/p:ART","mate/l:der","mate/p:ART","mate/m:case:dat","mate/m:number:sg","mate/m:gender:fem",">:mate/d:NK$<i>511","xip/p:DET","xip/l:der","<>:xip/const:DET#2990-2993$<i>511","<>:xip/const:NP#2990-2998$<i>512<b>3",">:xip/d:DETERM$<i>511"],["s:Band","i:band","_511#2994-2998","opennlp/p:NN","cnx/l:band","cnx/p:N","cnx/syn:@NH","<>:cnx/const:np#2994-2998$<i>512","tt/l:Band","tt/p:NN","mate/l:band","mate/p:NN","mate/m:case:dat","mate/m:number:sg","mate/m:gender:fem","<:mate/d:NK$<i>510",">:mate/d:NK$<i>509","<:mate/d:MNR$<i>512","xip/p:NOUN","xip/l:Band","<>:xip/const:NOUN#2994-2998$<i>512","<>:xip/const:NPA#2994-2998$<i>512<b>4","<:xip/d:DETERM$<i>510"],["s:am","i:am","_512#2999-3001","opennlp/p:APPRART","tt/l:am","tt/p:APPRART","mate/l:an","mate/p:APPRART","mate/m:case:dat","mate/m:number:sg","mate/m:gender:masc",">:mate/d:MNR$<i>511","<:mate/d:NK$<i>513","xip/p:PREP","xip/l:an","<>:xip/const:PREP#2999-3001$<i>513","<>:xip/const:PP#2999-3010$<i>514<b>2"],["s:Keyboard","i:keyboard","_513#3002-3010","opennlp/p:NN","corenlp/ne_dewac_175m_600:I-LOC","cnx/l:keyboard","cnx/p:N","cnx/syn:@NH","<>:cnx/const:np#3002-3010$<i>514","tt/l:Keyboard","tt/p:NN","mate/l:keyboard","mate/p:NN","mate/m:case:dat","mate/m:number:sg","mate/m:gender:masc",">:mate/d:NK$<i>512","xip/p:NOUN","xip/l:Keyboard","<>:xip/const:NOUN#3002-3010$<i>514","<>:xip/const:NP#3002-3010$<i>514<b>3","<>:xip/const:NPA#3002-3010$<i>514<b>4"],["s:Zu","i:zu","_514#3012-3014","<>:s#3012-3142$<i>533","opennlp/p:APPR","cnx/l:zu","cnx/p:PREP","cnx/syn:@PREMARK","tt/l:zu","tt/p:APPR","mate/l:zu","mate/p:APPR",">:mate/d:OP$<i>517","<:mate/d:NK$<i>516","xip/p:PREP","xip/l:zu","<>:xip/const:TOP#3012-3142$<i>533","<>:xip/const:MC#3012-3053$<i>521<b>1","<>:xip/const:PP#3012-3021$<i>516<b>2","<>:xip/const:PREP#3012-3014$<i>515"],["s:seinen","i:seinen","_515#3015-3021","opennlp/p:PPOSAT","cnx/l:sein","cnx/p:PRON","cnx/syn:@PREMOD","tt/l:sein","tt/p:PPOSAT","mate/l:sein","mate/p:PPOSAT","mate/m:case:dat","mate/m:number:pl","mate/m:gender:fem",">:mate/d:NK$<i>516","xip/p:NOUN","xip/l:sein","<>:xip/const:NP#3015-3021$<i>516<b>3","<>:xip/const:NPA#3015-3021$<i>516<b>4","<>:xip/const:NOUN#3015-3021$<i>516","xip/d:PERSON"],["s:Hobbies","i:hobbies","_516#3022-3029","opennlp/p:NN","cnx/l:hobbies","cnx/p:N","cnx/syn:@NH","<>:cnx/const:np#3022-3029$<i>517","tt/p:NN","tt/p:NE","mate/l:hobbies","mate/p:NN","mate/m:case:dat","mate/m:number:pl","mate/m:gender:fem","<:mate/d:NK$<i>515",">:mate/d:NK$<i>514","xip/p:NOUN","xip/l:Hobby","<>:xip/const:NP#3022-3029$<i>517<b>2","<>:xip/const:NPA#3022-3029$<i>517<b>3","<>:xip/const:NOUN#3022-3029$<i>517",">:xip/d:OBJ$<i>517"],["s:zählt","i:zählt","_517#3030-3035","opennlp/p:VVFIN","cnx/l:zählen","cnx/p:V","cnx/m:IND","cnx/m:PRES","cnx/syn:@MAIN","tt/l:zählen","tt/p:VVFIN","mate/l:zählen","mate/p:VVFIN","mate/m:number:sg","mate/m:person:3","mate/m:tense:pres","mate/m:mood:ind","<:mate/d:OP$<i>514","<:mate/d:MO$<i>522","xip/p:VERB","xip/l:zählen","<>:xip/const:VERB#3030-3035$<i>518","<:xip/d:OBJ$<i>516","xip/d:VMAIN","<:xip/d:SUBJ$<i>520"],["s:unter","i:unter","_518#3036-3041","opennlp/p:APPR","cnx/l:unter","cnx/p:ADV","cnx/syn:@ADVL","tt/l:unter","tt/p:APPR","mate/l:unter","mate/p:APPR",">:mate/d:MO$<i>522","<:mate/d:NK$<i>519","<:mate/d:NK$<i>521","xip/p:PREP","xip/l:unter","<>:xip/const:ADV#3036-3049$<i>520<b>2","<>:xip/const:PREP#3036-3041$<i>519"],["s:anderem","i:anderem","_519#3042-3049","opennlp/p:PIS","cnx/l:andere","cnx/p:PRON","cnx/syn:@NH","tt/l:andere","tt/p:PIS","mate/l:anderer","mate/p:PIS","mate/m:case:dat","mate/m:number:sg","mate/m:gender:neut",">:mate/d:NK$<i>518","xip/p:PRON","xip/l:andere","<>:xip/const:PRON#3042-3049$<i>520"],["s:das","i:das","_520#3050-3053","opennlp/p:ART","cnx/l:das","cnx/p:PRON","cnx/syn:@NH","tt/l:die","tt/p:PDS","mate/l:der","mate/p:ART","mate/m:case:acc","mate/m:number:sg","mate/m:gender:neut",">:mate/d:SB$<i>521","xip/p:PRON","xip/l:das","<>:xip/const:NP#3050-3053$<i>521<b>2","<>:xip/const:PRON#3050-3053$<i>521",">:xip/d:SUBJ$<i>517"],["s:drehen","i:drehen","_521#3054-3060","opennlp/p:VVFIN","cnx/l:drehen","cnx/p:V","cnx/m:IND","cnx/m:PRES","cnx/syn:@MAIN","tt/l:drehen","tt/p:VVINF","tt/l:drehen","tt/p:VVFIN","mate/l:drehen","mate/p:PPOSS","<:mate/d:SB$<i>520",">:mate/d:NK$<i>518","xip/p:VERB","xip/l:drehen","<>:xip/const:MC#3054-3092$<i>527<b>1","<>:xip/const:VERB#3054-3060$<i>522","xip/d:VMAIN","<:xip/d:VMOD$<i>524","<:xip/d:OBJ$<i>526"],["s:von","i:von","_522#3061-3064","opennlp/p:APPR","cnx/l:von","cnx/p:PREP","cnx/syn:@PREMARK","tt/l:von","tt/p:APPR","mate/l:von","mate/p:APPR","<:mate/d:MO$<i>518",">:mate/d:MO$<i>517","<:mate/d:NK$<i>523","xip/p:PREP","xip/l:von","<>:xip/const:PREP#3061-3064$<i>523","<>:xip/const:PP#3061-3071$<i>524<b>2"],["s:Videos","i:videos","_523#3065-3071","opennlp/p:NN","cnx/l:video","cnx/p:N","cnx/m:PL","cnx/syn:@NH","<>:cnx/const:np#3065-3071$<i>524","tt/l:Video","tt/p:NN","mate/l:video","mate/p:NN","mate/m:case:dat","mate/m:number:pl","mate/m:gender:neut",">:mate/d:NK$<i>522","<:mate/d:MNR$<i>524","xip/p:NOUN","xip/l:Video","<>:xip/const:NOUN#3065-3071$<i>524","<>:xip/const:NP#3065-3071$<i>524<b>3","<>:xip/const:NPA#3065-3071$<i>524<b>4"],["s:während","i:während","_524#3072-3079","opennlp/p:APPR","cnx/l:während","cnx/p:PREP","cnx/syn:@PREMARK","tt/l:während","tt/p:APPR","mate/l:während","mate/p:APPR",">:mate/d:MNR$<i>523","<:mate/d:NK$<i>526","xip/p:ADJ","xip/l:währen","<>:xip/const:ADJ#3072-3079$<i>525","<>:xip/const:AP#3072-3079$<i>525<b>2",">:xip/d:VMOD$<i>521"],["s:der","i:der","_525#3080-3083","opennlp/p:ART","cnx/l:die","cnx/p:DET","cnx/syn:@PREMOD","tt/l:die","tt/p:ART","mate/l:der","mate/p:ART","mate/m:case:gen","mate/m:number:pl","mate/m:gender:fem",">:mate/d:NK$<i>526","xip/p:DET","xip/l:der","<>:xip/const:DET#3080-3083$<i>526","<>:xip/const:NP#3080-3092$<i>527<b>2",">:xip/d:DETERM$<i>526"],["s:Tourneen","i:tourneen","_526#3084-3092","opennlp/p:NN","cnx/l:tournee","cnx/p:N","cnx/m:PL","cnx/syn:@NH","<>:cnx/const:np#3084-3092$<i>527","tt/l:Tournee","tt/p:NN","mate/l:tournee","mate/p:NN","mate/m:case:gen","mate/m:number:pl","mate/m:gender:fem","<:mate/d:NK$<i>525",">:mate/d:NK$<i>524","<:mate/d:RC$<i>532","xip/p:NOUN","xip/l:Tournee","<>:xip/const:NOUN#3084-3092$<i>527","<>:xip/const:NPA#3084-3092$<i>527<b>3","<:xip/d:DETERM$<i>525",">:xip/d:OBJ$<i>521"],["s:welche","i:welche","_527#3094-3100","opennlp/p:PRELS","cnx/l:welcher","cnx/p:PRON","cnx/syn:@NH","tt/l:welche","tt/p:PRELS","mate/l:welcher","mate/p:PRELS","mate/m:case:nom","mate/m:number:pl","mate/m:gender:fem",">:mate/d:SB$<i>532","xip/p:DET","xip/l:welch","<>:xip/const:MC#3094-3141$<i>533<b>1","<>:xip/const:NP#3094-3110$<i>529<b>2","<>:xip/const:DET#3094-3100$<i>528",">:xip/d:DETERM$<i>528"],["s:teilweise","i:teilweise","_528#3101-3110","opennlp/p:ADV","cnx/l:teilweise","cnx/p:ADV","cnx/syn:@ADVL","tt/l:teilweise","tt/p:ADV","mate/l:teilweise","mate/p:ADV",">:mate/d:MO$<i>531","xip/p:ADJ","xip/l:teilweise","<>:xip/const:AP#3101-3110$<i>529<b>3","<>:xip/const:ADJ#3101-3110$<i>529","<:xip/d:DETERM$<i>527",">:xip/d:OBJ$<i>531"],["s:als","i:als","_529#3111-3114","opennlp/p:APPR","cnx/l:als","cnx/p:PREP","cnx/syn:@PREMARK","tt/l:als","tt/p:KOKOM","mate/l:als","mate/p:APPR",">:mate/d:MO$<i>531","<:mate/d:NK$<i>530","xip/p:PREP","xip/l:als","<>:xip/const:PP#3111-3119$<i>531<b>2","<>:xip/const:PREP#3111-3114$<i>530"],["s:DVDs","i:dvds","_530#3115-3119","opennlp/p:NN","cnx/l:dvd","cnx/p:N","cnx/m:PL","cnx/syn:@NH","<>:cnx/const:np#3115-3119$<i>531","tt/l:DVD","tt/p:NN","mate/l:dvds","mate/p:NN","mate/m:case:acc","mate/m:number:sg","mate/m:gender:masc",">:mate/d:NK$<i>529","xip/p:NOUN","xip/l:DVD","<>:xip/const:NOUN#3115-3119$<i>531","<>:xip/const:NP#3115-3119$<i>531<b>3","<>:xip/const:NPA#3115-3119$<i>531<b>4","xip/d:ORG"],["s:veröffentlicht","i:veröffentlicht","_531#3120-3134","opennlp/p:VVPP","cnx/l:veröffentlichen","cnx/p:V","cnx/m:PCP","cnx/m:PERF","cnx/syn:@MAIN","tt/l:veröffentlichen","tt/p:VVPP","mate/l:veröffentlichen","mate/p:VVPP","<:mate/d:MO$<i>528","<:mate/d:MO$<i>529",">:mate/d:OC$<i>532","xip/p:VERB","xip/l:veröffentlichen","<>:xip/const:VERB#3120-3134$<i>532","<:xip/d:OBJ$<i>528",">:xip/d:AUXIL$<i>532","xip/d:VMAIN"],["s:wurden","i:wurden","_532#3135-3141","opennlp/p:VAFIN","cnx/l:werden","cnx/p:V","cnx/m:IND","cnx/m:PAST","cnx/syn:@AUX","tt/l:werden","tt/p:VAFIN","mate/l:werden","mate/p:VAFIN","mate/m:number:pl","mate/m:person:3","mate/m:tense:past","mate/m:mood:ind","<:mate/d:SB$<i>527","<:mate/d:OC$<i>531",">:mate/d:RC$<i>526","xip/p:VERB","xip/l:werden","<>:xip/const:VERB#3135-3141$<i>533","<:xip/d:AUXIL$<i>531"],["s:4.4.","i:4.4.","_533#3143-3147","<>:s#3143-3147$<i>534","opennlp/p:KOUS","xip/p:NUM","xip/l:4.4.","<>:xip/const:NUM#3143-3147$<i>534","<>:xip/const:TOP#3143-3284$<i>556","<>:xip/const:MC#3143-3283$<i>556<b>1","<>:xip/const:NP#3143-3147$<i>534<b>2","<>:xip/const:NPA#3143-3147$<i>534<b>3","<>:xip/const:NOUN#3143-3147$<i>534<b>4","xip/d:DATE",">:xip/d:SUBJ$<i>543"],["s:Adam","i:adam","_534#3148-3152","<>:s#3148-3284$<i>556","opennlp/p:NE","corenlp/ne_dewac_175m_600:I-PER","corenlp/ne_hgc_175m_600:I-PER","cnx/l:Adam","cnx/p:N","cnx/m:Prop","cnx/syn:@PREMOD","<>:cnx/const:np#3148-3169$<i>538","tt/l:Adam","tt/p:NE","mate/l:adam","mate/p:NE","mate/m:case:nom","mate/m:number:sg","mate/m:gender:masc",">:mate/d:PNC$<i>535","xip/p:NOUN","xip/l:Adam","<>:xip/const:NOUN#3148-3152$<i>535","<>:xip/const:NP#3148-3169$<i>538<b>2","<>:xip/const:NPA#3148-3169$<i>538<b>3","<>:xip/const:NOUN#3148-3169$<i>538<b>4"],["s:Perry","i:perry","_535#3153-3158","opennlp/p:NE","corenlp/ne_dewac_175m_600:I-PER","corenlp/ne_hgc_175m_600:I-PER","cnx/l:Perry","cnx/p:N","cnx/m:Prop","cnx/syn:@PREMOD","tt/l:Perry","tt/p:NE","mate/l:perry","mate/p:NE","mate/m:case:nom","mate/m:number:sg","mate/m:gender:masc","<:mate/d:PNC$<i>534","xip/p:NOUN","xip/l:Perry","<>:xip/const:NOUN#3153-3158$<i>536"],["s:Adam","i:adam","_536#3159-3163","<>:p#3159-3328$<i>563","opennlp/p:NE","corenlp/ne_dewac_175m_600:I-PER","corenlp/ne_hgc_175m_600:I-PER","cnx/l:Adam","cnx/p:N","cnx/m:Prop","cnx/syn:@PREMOD","tt/l:Adam","tt/p:NE","mate/l:adam","mate/p:NE","mate/m:case:nom","mate/m:number:sg","mate/m:gender:masc",">:mate/d:PNC$<i>537","xip/p:NOUN","xip/l:Adam","<>:xip/const:NOUN#3159-3163$<i>537"],["s:Perry","i:perry","_537#3164-3169","opennlp/p:NE","corenlp/ne_dewac_175m_600:I-PER","corenlp/ne_hgc_175m_600:I-PER","cnx/l:Perry","cnx/p:N","cnx/m:Prop","cnx/syn:@NH","tt/l:Perry","tt/p:NE","mate/l:perry","mate/p:NE","mate/m:case:nom","mate/m:number:sg","mate/m:gender:masc","<:mate/d:PNC$<i>536",">:mate/d:SB$<i>543","<:mate/d:PAR$<i>539","xip/p:NOUN","xip/l:Perry","<>:xip/const:NOUN#3164-3169$<i>538"],["s:29.","i:29.","_538#3173-3176","opennlp/p:ADJA","cnx/l:29.","cnx/p:NUM","cnx/m:ORD","cnx/syn:@PREMOD","<>:cnx/const:np#3173-3185$<i>540","tt/l:29.","tt/p:ADJA","xip/p:NUM","xip/l:29.","<>:xip/const:NUM#3173-3176$<i>539","<>:xip/const:INS#3170-3202$<i>543<b>2"],["s:Dezember","i:dezember","_539#3177-3185","opennlp/p:NN","cnx/l:dezember","cnx/p:N","cnx/syn:@NH","tt/l:Dezember","tt/p:NN","mate/l:dezember","mate/p:NN","mate/m:case:nom","mate/m:number:sg","mate/m:gender:masc",">:mate/d:PAR$<i>537","<:mate/d:NK$<i>540","<:mate/d:MO$<i>541","xip/p:NOUN","xip/l:Dezember","<>:xip/const:NOUN#3177-3185$<i>540"],["s:1969","i:1969","_540#3186-3190","opennlp/p:CARD","cnx/l:1969","cnx/p:NUM","cnx/syn:@NH","tt/l:@card@","tt/p:CARD","mate/l:1969","mate/p:CARD",">:mate/d:NK$<i>539","xip/p:NUM","xip/l:1969","<>:xip/const:NUM#3186-3190$<i>541"],["s:in","i:in","_541#3191-3193","opennlp/p:APPR","cnx/l:in","cnx/p:PREP","cnx/syn:@PREMARK","tt/l:in","tt/p:APPR","mate/l:in","mate/p:APPR",">:mate/d:MO$<i>539","<:mate/d:NK$<i>542","<:mate/d:CD$<i>547","xip/p:PREP","xip/l:in","<>:xip/const:PREP#3191-3193$<i>542"],["s:Suffolk","i:suffolk","_542#3194-3201","opennlp/p:NE","corenlp/ne_dewac_175m_600:I-LOC","corenlp/ne_hgc_175m_600:I-LOC","cnx/l:suff","cnx/l:folk","cnx/p:N","cnx/syn:@NH","<>:cnx/const:np#3194-3201$<i>543","tt/l:Suffolk","tt/p:NN","mate/l:suffolk","mate/p:NE","mate/m:case:dat","mate/m:number:sg","mate/m:gender:neut",">:mate/d:NK$<i>541","xip/p:NOUN","xip/l:Suff","xip/l:Folk","xip/l:Sufffolk","<>:xip/const:NOUN#3194-3201$<i>543"],["s:ist","i:ist","_543#3203-3206","opennlp/p:VAFIN","cnx/l:sein","cnx/p:V","cnx/m:IND","cnx/m:PRES","cnx/syn:@MAIN","tt/l:sein","tt/p:VAFIN","mate/l:sein","mate/p:VAFIN","mate/m:number:sg","mate/m:person:3","mate/m:tense:pres","mate/m:mood:ind","<:mate/d:SB$<i>537","<:mate/d:PD$<i>544","<:mate/d:PD$<i>550","<:mate/d:MO$<i>551","xip/p:VERB","xip/l:sein","<>:xip/const:VERB#3203-3206$<i>544","<:xip/d:SUBJ$<i>533","xip/d:VMAIN","<:xip/d:PRED$<i>544","<:xip/d:PRED$<i>550"],["s:Schlagzeuger","i:schlagzeuger","_544#3207-3219","opennlp/p:NN","cnx/l:schlag","cnx/l:zeuger","cnx/p:N","cnx/syn:@NH","<>:cnx/const:np#3207-3219$<i>545","tt/l:Schlagzeuger","tt/p:NN","mate/l:schlagzeuger","mate/p:NN","mate/m:case:nom","mate/m:number:sg","mate/m:gender:masc",">:mate/d:PD$<i>543","<:mate/d:AG$<i>546","xip/p:NOUN","xip/l:Schlagzeuger","<>:xip/const:NOUN#3207-3219$<i>545","<>:xip/const:NP#3207-3219$<i>545<b>2","<>:xip/const:NPA#3207-3219$<i>545<b>3",">:xip/d:PRED$<i>543","<:xip/d:NMOD$<i>546"],["s:der","i:der","_545#3220-3223","opennlp/p:ART","cnx/l:der","cnx/p:DET","cnx/syn:@PREMOD","tt/l:die","tt/p:ART","mate/l:der","mate/p:ART","mate/m:case:nom","mate/m:number:sg","mate/m:gender:masc",">:mate/d:NK$<i>546","xip/p:DET","xip/l:der","<>:xip/const:DET#3220-3223$<i>546","<>:xip/const:NP#3220-3228$<i>547<b>2",">:xip/d:DETERM$<i>546"],["s:Band","i:band","_546#3224-3228","opennlp/p:NN","cnx/l:band","cnx/p:N","cnx/syn:@NH","<>:cnx/const:np#3224-3228$<i>547","tt/l:Band","tt/p:NN","mate/l:band","mate/p:NN","mate/m:case:nom","mate/m:number:sg","mate/m:gender:masc","<:mate/d:NK$<i>545",">:mate/d:AG$<i>544","xip/p:NOUN","xip/l:Band","<>:xip/const:NOUN#3224-3228$<i>547","<>:xip/const:NPA#3224-3228$<i>547<b>3","<:xip/d:DETERM$<i>545",">:xip/d:NMOD$<i>544"],["s:und","i:und","_547#3229-3232","opennlp/p:KON","cnx/l:und","cnx/p:CC","cnx/syn:@CC","tt/l:und","tt/p:KON","mate/l:und","mate/p:KON",">:mate/d:CD$<i>541","<:mate/d:CJ$<i>548","xip/p:CONJ","xip/l:und","<>:xip/const:CONJ#3229-3232$<i>548"],["s:als","i:als","_548#3233-3236","opennlp/p:APPR","cnx/l:als","cnx/p:CS","cnx/syn:@PREMARK","tt/l:als","tt/p:KOKOM","tt/l:als","tt/p:KOUS","mate/l:als","mate/p:APPR",">:mate/d:CJ$<i>547","<:mate/d:NK$<i>549","xip/p:PREP","xip/l:als","<>:xip/const:PREP#3233-3236$<i>549","<>:xip/const:PP#3233-3244$<i>550<b>2"],["s:solcher","i:solcher","_549#3237-3244","opennlp/p:PIAT","cnx/l:solcher","cnx/p:PRON","cnx/syn:@PREMOD","tt/l:solche","tt/p:PIS","tt/l:solche","tt/p:PIAT","mate/l:solcher","mate/p:PIS","mate/m:case:nom","mate/m:number:sg","mate/m:gender:masc",">:mate/d:NK$<i>548","xip/p:ADJ","xip/l:solch","<>:xip/const:ADJ#3237-3244$<i>550","<>:xip/const:NP#3237-3244$<i>550<b>3","<>:xip/const:AP#3237-3244$<i>550<b>4"],["s:bekannt","i:bekannt","_550#3245-3252","opennlp/p:ADJD","cnx/l:bekannt","cnx/p:A","cnx/syn:@NH","tt/l:bekannt","tt/p:ADJD","mate/l:bekannt","mate/p:ADJD","mate/m:degree:pos",">:mate/d:PD$<i>543","xip/p:ADJ","xip/l:bekannt","<>:xip/const:ADJ#3245-3252$<i>551","<>:xip/const:AP#3245-3252$<i>551<b>2",">:xip/d:PRED$<i>543"],["s:unter","i:unter","_551#3253-3258","opennlp/p:APPR","cnx/l:unter","cnx/p:PREP","cnx/syn:@PREMARK","tt/l:unter","tt/p:APPR","mate/l:unter","mate/p:APPR",">:mate/d:MO$<i>543","<:mate/d:NK$<i>553","xip/p:PREP","xip/l:unter","<>:xip/const:PREP#3253-3258$<i>552","<>:xip/const:PP#3253-3273$<i>554<b>2"],["s:dem","i:dem","_552#3259-3262","opennlp/p:ART","cnx/l:der","cnx/p:DET","cnx/syn:@PREMOD","tt/l:die","tt/p:ART","mate/l:der","mate/p:ART","mate/m:case:dat","mate/m:number:sg","mate/m:gender:neut",">:mate/d:NK$<i>553","xip/p:DET","xip/l:der","<>:xip/const:NP#3259-3273$<i>554<b>3","<>:xip/const:DET#3259-3262$<i>553",">:xip/d:DETERM$<i>553"],["s:Spitznamen","i:spitznamen","_553#3263-3273","opennlp/p:NN","cnx/l:spitz","cnx/l:name","cnx/p:N","cnx/syn:@NH","<>:cnx/const:np#3263-3273$<i>554","tt/l:Spitzname","tt/p:NN","mate/l:spitzname","mate/p:NN","mate/m:case:dat","mate/m:number:sg","mate/m:gender:neut","<:mate/d:NK$<i>552",">:mate/d:NK$<i>551","<:mate/d:NK$<i>557","xip/p:NOUN","xip/l:spitzen","xip/l:Name","xip/l:Spitzenname","<>:xip/const:NOUN#3263-3273$<i>554","<>:xip/const:NPA#3263-3273$<i>554<b>4","<:xip/d:DETERM$<i>552"],["s:'The","i:'the","_554#3274-3278","opennlp/p:NN","tt/p:NE"],["s:Yin'","i:yin'","_555#3279-3283","opennlp/p:NE","xip/p:NOUN","xip/l:Yin'","<>:xip/const:NOUN#3279-3283$<i>556"],["s:Er","i:er","_556#3285-3287","<>:s#3285-3328$<i>563","opennlp/p:PPER","cnx/l:er","cnx/p:PRON","cnx/syn:@NH","tt/l:er","tt/p:PPER","mate/l:er","mate/p:PPER","mate/m:case:nom","mate/m:number:sg","mate/m:gender:masc","mate/m:person:3","xip/p:PRON","xip/l:er","<>:xip/const:TOP#3285-3328$<i>563","<>:xip/const:MC#3285-3327$<i>563<b>1","<>:xip/const:NP#3285-3287$<i>557<b>2","<>:xip/const:PRON#3285-3287$<i>557",">:xip/d:SUBJ$<i>557"],["s:ist","i:ist","_557#3288-3291","opennlp/p:VAFIN","cnx/l:sein","cnx/p:V","cnx/m:IND","cnx/m:PRES","cnx/syn:@MAIN","tt/l:sein","tt/p:VAFIN","mate/l:sein","mate/p:VAFIN","mate/m:number:sg","mate/m:person:3","mate/m:tense:pres","mate/m:mood:ind",">:mate/d:NK$<i>553","<:mate/d:PD$<i>559","xip/p:VERB","xip/l:sein","<>:xip/const:VERB#3288-3291$<i>558","<:xip/d:SUBJ$<i>556","xip/d:VMAIN","<:xip/d:PRED$<i>559"],["s:der","i:der","_558#3292-3295","opennlp/p:ART","cnx/l:der","cnx/p:DET","cnx/syn:@PREMOD","tt/l:die","tt/p:ART","mate/l:der","mate/p:ART","mate/m:case:nom","mate/m:number:sg","mate/m:gender:masc",">:mate/d:NK$<i>559","xip/p:DET","xip/l:der","<>:xip/const:NP#3292-3311$<i>560<b>2","<>:xip/const:DET#3292-3295$<i>559",">:xip/d:DETERM$<i>559"],["s:Zwillingsbruder","i:zwillingsbruder","_559#3296-3311","opennlp/p:NN","cnx/l:zwilling","cnx/l:bruder","cnx/p:N","cnx/syn:@NH","<>:cnx/const:np#3296-3327$<i>563","tt/l:Zwillingsbruder","tt/p:NN","mate/l:zwillingsbruder","mate/p:NN","mate/m:case:nom","mate/m:number:sg","mate/m:gender:masc","<:mate/d:NK$<i>558",">:mate/d:PD$<i>557","<:mate/d:PG$<i>560","xip/p:NOUN","xip/l:Zwilling","xip/l:Bruder","xip/l:Zwillingsbruder","<>:xip/const:NPA#3296-3311$<i>560<b>3","<>:xip/const:NOUN#3296-3311$<i>560","<:xip/d:DETERM$<i>558",">:xip/d:PRED$<i>557"],["s:von","i:von","_560#3312-3315","opennlp/p:APPR","cnx/l:von","cnx/p:PREP","cnx/syn:@POSTMOD","tt/l:von","tt/p:APPR","mate/l:von","mate/p:APPR",">:mate/d:PG$<i>559","<:mate/d:NK$<i>562","xip/p:PREP","xip/l:von","<>:xip/const:PP#3312-3327$<i>563<b>2","<>:xip/const:PREP#3312-3315$<i>561"],["s:Jason","i:jason","_561#3316-3321","opennlp/p:NE","corenlp/ne_dewac_175m_600:I-PER","corenlp/ne_hgc_175m_600:I-PER","cnx/l:Jason","cnx/p:N","cnx/m:Prop","cnx/syn:@PREMOD","tt/l:Jason","tt/p:NE","mate/l:jason","mate/p:NE","mate/m:case:nom","mate/m:number:sg","mate/m:gender:masc",">:mate/d:PNC$<i>562","xip/p:NOUN","xip/l:Jason","<>:xip/const:NP#3316-3327$<i>563<b>3","<>:xip/const:NPA#3316-3327$<i>563<b>4","<>:xip/const:NOUN#3316-3327$<i>563<b>5","<>:xip/const:NOUN#3316-3321$<i>562"],["s:Perry","i:perry","_562#3322-3327","opennlp/p:NE","corenlp/ne_dewac_175m_600:I-PER","corenlp/ne_hgc_175m_600:I-PER","cnx/l:Perry","cnx/p:N","cnx/m:Prop","cnx/syn:@NH","tt/l:Perry","tt/p:NE","mate/l:perry","mate/p:NE","mate/m:case:dat","mate/m:number:sg","mate/m:gender:masc","<:mate/d:PNC$<i>561",">:mate/d:NK$<i>560","xip/p:NOUN","xip/l:Perry","<>:xip/const:NOUN#3322-3327$<i>563"],["s:4.5.","i:4.5.","_563#3329-3333","<>:s#3329-3333$<i>564","opennlp/p:KOUS","xip/p:NUM","xip/l:4.5.","<>:xip/const:NUM#3329-3333$<i>564","<>:xip/const:TOP#3329-3433$<i>581","<>:xip/const:NP#3329-3333$<i>564<b>1","<>:xip/const:NPA#3329-3333$<i>564<b>2","<>:xip/const:NOUN#3329-3333$<i>564<b>3","xip/d:DATE","xip/d:THEMA"],["s:Dan","i:dan","_564#3334-3337","<>:s#3334-3433$<i>581","opennlp/p:NE","corenlp/ne_dewac_175m_600:I-PER","corenlp/ne_hgc_175m_600:I-PER","cnx/l:Dan","cnx/p:N","cnx/m:Prop","cnx/syn:@PREMOD","<>:cnx/const:np#3334-3361$<i>570","tt/l:Dan","tt/p:NE","mate/l:dan","mate/p:XY","xip/p:NOUN","xip/l:Dan","<>:xip/const:NP#3334-3347$<i>567<b>1","<>:xip/const:NPA#3334-3347$<i>567<b>2","<>:xip/const:NOUN#3334-3347$<i>567<b>3","<>:xip/const:NOUN#3334-3337$<i>565"],["s:P.","i:p.","_565#3338-3340","opennlp/p:NE","corenlp/ne_dewac_175m_600:I-PER","corenlp/ne_hgc_175m_600:I-PER","cnx/l:P.","cnx/p:N","cnx/syn:@PREMOD","tt/l:P.","tt/p:NE","xip/p:SYMBOL","xip/l:P.","<>:xip/const:SYMBOL#3338-3340$<i>566"],["s:Carter","i:carter","_566#3341-3347","opennlp/p:NE","corenlp/ne_dewac_175m_600:I-PER","corenlp/ne_hgc_175m_600:I-PER","cnx/l:Carter","cnx/p:N","cnx/m:Prop","cnx/syn:@PREMOD","tt/l:Carter","tt/p:NE","mate/l:carter","mate/p:NN","mate/m:case:acc","mate/m:number:sg","mate/m:gender:masc","xip/p:NOUN","xip/l:Carter","<>:xip/const:NOUN#3341-3347$<i>567"],["s:Dan","i:dan","_567#3348-3351","<>:p#3348-3473$<i>588","opennlp/p:NE","corenlp/ne_dewac_175m_600:I-PER","corenlp/ne_hgc_175m_600:I-PER","cnx/l:Dan","cnx/p:N","cnx/m:Prop","cnx/syn:@PREMOD","tt/l:Dan","tt/p:NE","mate/l:dan","mate/p:XY","xip/p:NOUN","xip/l:Dan","<>:xip/const:NP#3348-3361$<i>570<b>1","<>:xip/const:NPA#3348-3361$<i>570<b>2","<>:xip/const:NOUN#3348-3361$<i>570<b>3","<>:xip/const:NOUN#3348-3351$<i>568"],["s:P.","i:p.","_568#3352-3354","opennlp/p:NE","corenlp/ne_dewac_175m_600:I-PER","corenlp/ne_hgc_175m_600:I-PER","cnx/l:P.","cnx/p:N","cnx/syn:@PREMOD","tt/l:P.","tt/p:NE","xip/p:SYMBOL","xip/l:P.","<>:xip/const:SYMBOL#3352-3354$<i>569"],["s:Carter","i:carter","_569#3355-3361","opennlp/p:NE","corenlp/ne_dewac_175m_600:I-PER","corenlp/ne_hgc_175m_600:I-PER","cnx/l:Carter","cnx/p:N","cnx/m:Prop","cnx/syn:@NH","tt/l:Carter","tt/p:NE","mate/l:carter","mate/p:NN","mate/m:case:nom","mate/m:number:pl","mate/m:gender:masc","<:mate/d:PAR$<i>575","xip/p:NOUN","xip/l:Carter","<>:xip/const:NOUN#3355-3361$<i>570"],["s:17.","i:17.","_570#3365-3368","opennlp/p:ADJA","cnx/l:17.","cnx/p:NUM","cnx/m:ORD","cnx/syn:@PREMOD","<>:cnx/const:np#3365-3377$<i>572","tt/l:@ord@","tt/p:ADJA","xip/p:NUM","xip/l:17.","<>:xip/const:NUM#3365-3368$<i>571","<>:xip/const:INS#3362-3383$<i>573<b>1"],["s:November","i:november","_571#3369-3377","opennlp/p:NN","cnx/l:november","cnx/p:N","cnx/syn:@NH","tt/l:November","tt/p:NN","mate/l:november","mate/p:NN","mate/m:case:dat","mate/m:number:sg","mate/m:gender:masc","<:mate/d:NK$<i>572","xip/p:NOUN","xip/l:November","<>:xip/const:NOUN#3369-3377$<i>572"],["s:1972","i:1972","_572#3378-3382","opennlp/p:CARD","cnx/l:1972","cnx/p:NUM","cnx/syn:@NH","tt/l:1972","tt/p:CARD","mate/l:1972","mate/p:CARD",">:mate/d:NK$<i>571","xip/p:NUM","xip/l:1972","<>:xip/const:NUM#3378-3382$<i>573"],["s:ersetzte","i:ersetzte","_573#3384-3392","opennlp/p:VVFIN","cnx/l:ersetzen","cnx/p:V","cnx/m:IND","cnx/m:PAST","cnx/syn:@MAIN","tt/l:ersetzen","tt/p:VVFIN","tt/l:ersetzt","tt/p:ADJA","mate/l:ersetzen","mate/p:ADJA","mate/m:case:nom","mate/m:number:sg","mate/m:gender:fem","mate/m:degree:pos",">:mate/d:MO$<i>574","xip/p:ADJ","xip/l:ersetzen","<>:xip/const:ADJ#3384-3392$<i>574","<>:xip/const:NP#3384-3411$<i>577<b>1","<>:xip/const:NPA#3384-3411$<i>577<b>2","<>:xip/const:AP#3384-3392$<i>574<b>3"],["s:1997","i:1997","_574#3393-3397","opennlp/p:CARD","cnx/l:1997","cnx/p:NUM","cnx/syn:@PREMOD","tt/l:1997","tt/p:CARD","mate/l:1997","mate/p:CARD","<:mate/d:MO$<i>573",">:mate/d:NK$<i>575","xip/p:NUM","xip/l:1997","<>:xip/const:NUM#3393-3397$<i>575","<>:xip/const:NUM#3393-3397$<i>575<b>3"],["s:Steve","i:steve","_575#3398-3403","opennlp/p:NE","corenlp/ne_dewac_175m_600:I-PER","corenlp/ne_hgc_175m_600:I-PER","cnx/l:Steve","cnx/p:N","cnx/m:Prop","cnx/syn:@PREMOD","<>:cnx/const:np#3398-3411$<i>577","tt/l:Steve","tt/p:NE","mate/l:steve","mate/p:NE","mate/m:case:nom","mate/m:number:sg","mate/m:gender:fem","<:mate/d:NK$<i>574",">:mate/d:PAR$<i>569","<:mate/d:PNC$<i>576","<:mate/d:MNR$<i>577","xip/p:NOUN","xip/l:Steve","<>:xip/const:NOUN#3398-3403$<i>576","<>:xip/const:NOUN#3398-3411$<i>577<b>3"],["s:Swindon","i:swindon","_576#3404-3411","opennlp/p:NE","corenlp/ne_dewac_175m_600:I-PER","corenlp/ne_hgc_175m_600:I-PER","cnx/l:Swindon","cnx/p:N","cnx/m:Prop","cnx/syn:@NH","tt/p:NE","mate/l:swindon","mate/p:NE","mate/m:case:nom","mate/m:number:sg","mate/m:gender:fem",">:mate/d:PNC$<i>575","xip/p:NOUN","xip/l:Swindon","<>:xip/const:NOUN#3404-3411$<i>577"],["s:als","i:als","_577#3412-3415","opennlp/p:APPR","cnx/l:als","cnx/p:PREP","cnx/syn:@PREMARK","tt/l:als","tt/p:KOKOM","tt/l:als","tt/p:KON","mate/l:als","mate/p:APPR",">:mate/d:MNR$<i>575","<:mate/d:NK$<i>578","xip/p:PREP","xip/l:als","<>:xip/const:PP#3412-3423$<i>579<b>1","<>:xip/const:PREP#3412-3415$<i>578"],["s:Bassist","i:bassist","_578#3416-3423","opennlp/p:NN","cnx/l:bassist","cnx/p:N","cnx/syn:@NH","<>:cnx/const:np#3416-3423$<i>579","tt/l:Bassist","tt/p:NN","mate/l:bassist","mate/p:NN","mate/m:case:nom","mate/m:number:sg","mate/m:gender:masc",">:mate/d:NK$<i>577","<:mate/d:AG$<i>580","xip/p:NOUN","xip/l:Bassist","<>:xip/const:NP#3416-3423$<i>579<b>2","<>:xip/const:NPA#3416-3423$<i>579<b>3","<>:xip/const:NOUN#3416-3423$<i>579","<:xip/d:NMOD$<i>580"],["s:der","i:der","_579#3424-3427","opennlp/p:ART","cnx/l:der","cnx/p:DET","cnx/syn:@PREMOD","tt/l:die","tt/p:ART","mate/l:der","mate/p:ART","mate/m:case:gen","mate/m:number:sg","mate/m:gender:fem",">:mate/d:NK$<i>580","xip/p:DET","xip/l:der","<>:xip/const:NP#3424-3432$<i>581<b>1","<>:xip/const:DET#3424-3427$<i>580",">:xip/d:DETERM$<i>580"],["s:Band","i:band","_580#3428-3432","opennlp/p:NN","cnx/l:band","cnx/p:N","cnx/syn:@NH","<>:cnx/const:np#3428-3432$<i>581","tt/l:Band","tt/p:NN","mate/l:band","mate/p:NN","mate/m:case:gen","mate/m:number:sg","mate/m:gender:fem","<:mate/d:NK$<i>579",">:mate/d:AG$<i>578","xip/p:NOUN","xip/l:Band","<>:xip/const:NPA#3428-3432$<i>581<b>2","<>:xip/const:NOUN#3428-3432$<i>581","<:xip/d:DETERM$<i>579",">:xip/d:NMOD$<i>578"],["s:Seine","i:seine","_581#3434-3439","<>:s#3434-3473$<i>588","opennlp/p:PPOSAT","cnx/l:sein","cnx/p:PRON","cnx/syn:@PREMOD","tt/l:sein","tt/p:PPOSAT","mate/l:sein","mate/p:PPOSAT","mate/m:case:acc","mate/m:number:sg","mate/m:gender:fem",">:mate/d:NK$<i>583","xip/p:NOUN","xip/l:Seine","<>:xip/const:NOUN#3434-3439$<i>582","<>:xip/const:TOP#3434-3473$<i>588","<>:xip/const:MC#3434-3472$<i>588<b>1","<>:xip/const:NP#3434-3439$<i>582<b>2","<>:xip/const:NPA#3434-3439$<i>582<b>3","xip/d:LOC",">:xip/d:SUBJ$<i>584"],["s:zweite","i:zweite","_582#3440-3446","opennlp/p:ADJA","cnx/l:zweite","cnx/p:NUM","cnx/m:ORD","cnx/syn:@PREMOD","<>:cnx/const:np#3440-3451$<i>584","tt/l:zweit","tt/p:ADJA","mate/l:zweiter","mate/p:ADJA","mate/m:case:acc","mate/m:number:sg","mate/m:gender:fem","mate/m:degree:pos",">:mate/d:NK$<i>583","xip/p:ADJ","xip/l:zwei","<>:xip/const:ADJ#3440-3446$<i>583","<>:xip/const:NP#3440-3451$<i>584<b>2","<>:xip/const:NPA#3440-3451$<i>584<b>3","<>:xip/const:AP#3440-3446$<i>583<b>4",">:xip/d:NMOD$<i>583"],["s:Band","i:band","_583#3447-3451","opennlp/p:NN","cnx/l:band","cnx/p:N","cnx/syn:@NH","tt/l:Band","tt/p:NN","mate/l:band","mate/p:NN","mate/m:case:acc","mate/m:number:sg","mate/m:gender:fem","<:mate/d:NK$<i>581","<:mate/d:NK$<i>582",">:mate/d:MO$<i>584","xip/p:NOUN","xip/l:Band","<>:xip/const:NOUN#3447-3451$<i>584","<:xip/d:NMOD$<i>582",">:xip/d:OBJ$<i>584"],["s:heißt","i:heißt","_584#3452-3457","opennlp/p:VVFIN","cnx/l:heissen","cnx/p:V","cnx/m:IND","cnx/m:PRES","cnx/syn:@MAIN","tt/l:heißen","tt/p:VVFIN","mate/l:heißen","mate/p:VVFIN","mate/m:number:sg","mate/m:person:3","mate/m:tense:pres","mate/m:mood:ind","<:mate/d:MO$<i>583","<:mate/d:MO$<i>587","xip/p:VERB","xip/l:heißen","<>:xip/const:VERB#3452-3457$<i>585","<:xip/d:SUBJ$<i>581","<:xip/d:OBJ$<i>583","xip/d:VMAIN"],["s:The","i:the","_585#3458-3461","opennlp/p:NE","corenlp/ne_hgc_175m_600:I-MISC","cnx/l:The","cnx/p:N","cnx/m:Prop","cnx/syn:@PREMOD","<>:cnx/const:np#3458-3472$<i>588","tt/l:The","tt/p:FM","mate/l:The","mate/p:NE","mate/m:case:*","mate/m:number:*","mate/m:gender:*",">:mate/d:PNC$<i>587","xip/p:NOUN","xip/l:The","<>:xip/const:NOUN#3458-3461$<i>586","<>:xip/const:NP#3458-3472$<i>588<b>2","<>:xip/const:NPA#3458-3472$<i>588<b>3","<>:xip/const:NOUN#3458-3472$<i>588<b>4"],["s:Lucky","i:lucky","_586#3462-3467","opennlp/p:NE","corenlp/ne_dewac_175m_600:I-ORG","corenlp/ne_hgc_175m_600:I-MISC","cnx/l:Lucky","cnx/p:N","cnx/m:Prop","cnx/syn:@PREMOD","tt/l:Lucky","tt/p:NE","mate/l:lucky","mate/p:NE","mate/m:case:*","mate/m:number:*","mate/m:gender:*",">:mate/d:PNC$<i>587","xip/p:NOUN","xip/l:Lucky","<>:xip/const:NOUN#3462-3467$<i>587"],["s:Nine","i:nine","_587#3468-3472","opennlp/p:NE","corenlp/ne_dewac_175m_600:I-ORG","corenlp/ne_hgc_175m_600:I-MISC","cnx/l:Nine","cnx/p:N","cnx/m:Prop","cnx/syn:@NH","tt/l:Nine","tt/p:NE","mate/l:nine","mate/p:NE","mate/m:case:nom","mate/m:number:sg","mate/m:gender:*","<:mate/d:PNC$<i>585","<:mate/d:PNC$<i>586",">:mate/d:MO$<i>584","xip/p:NOUN","xip/l:Nine","<>:xip/const:NOUN#3468-3472$<i>588"],["s:5.","i:5.","_588#3474-3476","<>:s#3474-3602$<i>609","opennlp/p:ADV","cnx/l:5.","cnx/p:NUM","cnx/syn:@PREMOD","tt/l:5.","tt/p:ADJA","xip/p:NUM","xip/l:5.","<>:xip/const:TOP#3474-3551$<i>599","<>:xip/const:NP#3474-3497$<i>591<b>1","<>:xip/const:NPA#3474-3497$<i>591<b>2","<>:xip/const:NUM#3474-3476$<i>589"],["s:Ehemalige","i:ehemalige","_589#3477-3486","opennlp/p:ADJA","cnx/l:ehe","cnx/l:malig","cnx/p:A","cnx/syn:@PREMOD","<>:cnx/const:np#3477-3497$<i>591","tt/l:ehemalig","tt/p:ADJA","tt/l:Ehemalige","tt/p:NN","mate/l:ehemalig","mate/p:ADJA","mate/m:case:nom","mate/m:number:pl","mate/m:gender:neut","mate/m:degree:pos",">:mate/d:NK$<i>590","xip/p:ADJ","xip/l:ehemalig","<>:xip/const:AP#3477-3486$<i>590<b>3","<>:xip/const:ADJ#3477-3486$<i>590",">:xip/d:NMOD$<i>590"],["s:Mitglieder","i:mitglieder","_590#3487-3497","opennlp/p:NN","cnx/l:mitglied","cnx/p:N","cnx/m:PL","cnx/syn:@NH","tt/l:Mitglied","tt/p:NN","mate/l:mitglied","mate/p:NN","mate/m:case:nom","mate/m:number:pl","mate/m:gender:neut","<:mate/d:NK$<i>589","xip/p:NOUN","xip/l:Mitglied","<>:xip/const:NOUN#3487-3497$<i>591","<:xip/d:NMOD$<i>589","xip/d:THEMA"],["s:Steve","i:steve","_591#3498-3503","<>:p#3498-3530$<i>596","opennlp/p:NE","corenlp/ne_dewac_175m_600:I-PER","corenlp/ne_hgc_175m_600:I-PER","cnx/l:Steve","cnx/p:N","cnx/m:Prop","cnx/syn:@PREMOD","<>:cnx/const:np#3498-3511$<i>593","tt/l:Steve","tt/p:NE","mate/l:steve","mate/p:NE","mate/m:case:nom","mate/m:number:sg","mate/m:gender:masc",">:mate/d:PNC$<i>592","xip/p:NOUN","xip/l:Steve","<>:xip/const:NOUN#3498-3503$<i>592","<>:xip/const:NP#3498-3511$<i>593<b>1","<>:xip/const:NPA#3498-3511$<i>593<b>2","<>:xip/const:NOUN#3498-3511$<i>593<b>3"],["s:Swindon","i:swindon","_592#3504-3511","opennlp/p:NE","corenlp/ne_dewac_175m_600:I-PER","corenlp/ne_hgc_175m_600:I-PER","cnx/l:Swindon","cnx/p:N","cnx/m:Prop","cnx/syn:@NH","tt/p:NE","mate/l:swindon","mate/p:NE","mate/m:case:nom","mate/m:number:sg","mate/m:gender:masc","<:mate/d:PNC$<i>591","xip/p:NOUN","xip/l:Swindon","<>:xip/const:NOUN#3504-3511$<i>593"],["s:Bassist","i:bassist","_593#3513-3520","opennlp/p:NE","cnx/l:bassist","cnx/p:N","cnx/syn:@NH","<>:cnx/const:np#3513-3520$<i>594","tt/l:Bassist","tt/p:NN","mate/l:bassist","mate/p:NE","mate/m:case:nom","mate/m:number:sg","mate/m:gender:masc","xip/p:NOUN","xip/l:Bassist","<>:xip/const:INS#3512-3530$<i>596<b>1","<>:xip/const:NP#3513-3520$<i>594<b>2","<>:xip/const:NPA#3513-3520$<i>594<b>3","<>:xip/const:NOUN#3513-3520$<i>594"],["s:bis","i:bis","_594#3521-3524","opennlp/p:APPR","cnx/l:bis","cnx/p:CC","cnx/syn:@CC","tt/l:bis","tt/p:APPR","mate/l:bis","mate/p:APPR","<:mate/d:NK$<i>595","xip/p:PREP","xip/l:bis","<>:xip/const:PP#3521-3529$<i>596<b>2","<>:xip/const:PREP#3521-3524$<i>595"],["s:1997","i:1997","_595#3525-3529","opennlp/p:CARD","cnx/l:1997","cnx/p:NUM","cnx/syn:@NH","tt/l:1997","tt/p:CARD","mate/l:1997","mate/p:CARD",">:mate/d:NK$<i>594","xip/p:NUM","xip/l:1997","<>:xip/const:NUM#3525-3529$<i>596","<>:xip/const:NP#3525-3529$<i>596<b>3","<>:xip/const:NPA#3525-3529$<i>596<b>4","<>:xip/const:NUM#3525-3529$<i>596<b>5","xip/d:DATE"],["s:6.","i:6.","_596#3531-3533","opennlp/p:ADJA","cnx/l:6.","cnx/p:NUM","cnx/syn:@PREMOD","tt/l:6.","tt/p:ADJA","xip/p:NUM","xip/l:6.","<>:xip/const:NP#3531-3545$<i>598<b>1","<>:xip/const:NPA#3531-3545$<i>598<b>2","<>:xip/const:NUM#3531-3533$<i>597"],["s:Diskografie","i:diskografie","_597#3534-3545","opennlp/p:NN","cnx/l:disko","cnx/l:grafie","cnx/p:N","cnx/syn:@NH","<>:cnx/const:np#3534-3545$<i>598","tt/p:NN","tt/p:NE","mate/l:diskografie","mate/p:NN","mate/m:case:nom","mate/m:number:sg","mate/m:gender:fem","xip/p:NOUN","xip/l:Disko","xip/l:Grafie","xip/l:Diskografie","<>:xip/const:NOUN#3534-3545$<i>598","xip/d:THEMA","<:xip/d:NMOD$<i>598"],["s:1997","i:1997","_598#3546-3550","<>:p#3546-3573$<i>603","opennlp/p:CARD","cnx/l:1997","cnx/p:NUM","cnx/syn:@NH","tt/l:1997","tt/p:CARD","mate/l:1997","mate/p:CARD","xip/p:NUM","xip/l:1997","<>:xip/const:NP#3546-3550$<i>599<b>1","<>:xip/const:NPA#3546-3550$<i>599<b>2","<>:xip/const:NUM#3546-3550$<i>599<b>3","<>:xip/const:NUM#3546-3550$<i>599","xip/d:DATE",">:xip/d:NMOD$<i>597"],["s:How","i:how","_599#3552-3555","opennlp/p:FM","cnx/l:How","cnx/p:N","cnx/m:Prop","cnx/syn:@PREMOD","<>:cnx/const:np#3552-3563$<i>602","tt/l:how","tt/p:FM","tt/p:NE","mate/p:NE","<:mate/d:UC$<i>600","<:mate/d:UC$<i>601","<:mate/d:UC$<i>602","xip/p:ADV","xip/l:how","<>:xip/const:TOP#3552-3579$<i>604","<>:xip/const:ADV#3552-3555$<i>600"],["s:ace","i:ace","_600#3556-3559","opennlp/p:FM","cnx/l:ace","cnx/p:N","cnx/syn:@PREMOD","tt/l:ace","tt/p:FM","tt/l:ace","tt/p:NE","mate/l:ace","mate/p:NE",">:mate/d:UC$<i>599","xip/p:ADV","xip/l:ace","<>:xip/const:ADV#3556-3559$<i>601"],["s:are","i:are","_601#3560-3563","opennlp/p:FM","cnx/l:are","cnx/p:N","cnx/syn:@NH","tt/l:are","tt/p:FM","tt/l:are","tt/p:NE","mate/p:NE",">:mate/d:UC$<i>599","xip/p:ADV","xip/l:are","<>:xip/const:ADV#3560-3563$<i>602"],["s:buildings","i:buildings","_602#3564-3573","opennlp/p:FM","cnx/l:building","cnx/p:N","cnx/m:PL","cnx/syn:@NH","<>:cnx/const:np#3564-3573$<i>603","tt/p:NN","tt/p:ADV","tt/p:NE","mate/l:buildings","mate/p:ADV",">:mate/d:UC$<i>599","xip/p:ADV","xip/l:buildings","<>:xip/const:ADV#3564-3573$<i>603"],["s:1998","i:1998","_603#3574-3578","<>:p#3574-3590$<i>606","opennlp/p:CARD","cnx/l:1998","cnx/p:NUM","cnx/syn:@NH","tt/l:1998","tt/p:CARD","mate/l:1998","mate/p:CARD","xip/p:NUM","xip/l:1998","<>:xip/const:NP#3574-3578$<i>604<b>1","<>:xip/const:NPA#3574-3578$<i>604<b>2","<>:xip/const:NUM#3574-3578$<i>604<b>3","<>:xip/const:NUM#3574-3578$<i>604","xip/d:DATE"],["s:Number","i:number","_604#3580-3586","opennlp/p:NN","cnx/l:Number","cnx/p:N","cnx/m:Prop","cnx/syn:@PREMOD","tt/p:NE","mate/l:number","mate/p:NN","xip/p:ADV","xip/l:number","<>:xip/const:ADV#3580-3586$<i>605","<>:xip/const:TOP#3580-3596$<i>607"],["s:one","i:one","_605#3587-3590","opennlp/p:NE","cnx/l:one","cnx/p:N","cnx/syn:@NH","tt/l:one","tt/p:NE","mate/l:on","mate/p:XY","xip/p:ADV","xip/l:one","<>:xip/const:ADV#3587-3590$<i>606"],["s:2000","i:2000","_606#3591-3595","<>:p#3591-3614$<i>611","opennlp/p:CARD","cnx/l:2000","cnx/p:NUM","cnx/syn:@NH","tt/l:2000","tt/p:CARD","mate/l:2000","mate/p:CARD","xip/p:NUM","xip/l:2000","<>:xip/const:NUM#3591-3595$<i>607","<>:xip/const:NP#3591-3595$<i>607<b>1","<>:xip/const:NPA#3591-3595$<i>607<b>2","<>:xip/const:NUM#3591-3595$<i>607<b>3","xip/d:DATE"],["s:A","i:a","_607#3597-3598","opennlp/p:NE","cnx/l:a","cnx/p:PREP","cnx/syn:@PREMARK","tt/l:A","tt/p:FM","tt/l:A","tt/p:NN","mate/p:XY","xip/p:SYMBOL","xip/l:A","<>:xip/const:SYMBOL#3597-3598$<i>608","<>:xip/const:TOP#3597-3602$<i>609","<>:xip/const:NP#3597-3598$<i>608<b>1","<>:xip/const:NPA#3597-3598$<i>608<b>2","<>:xip/const:NOUN#3597-3598$<i>608<b>3","xip/d:THEMA"],["s:vs","i:vs","_608#3599-3601","opennlp/p:NE","cnx/l:vs","cnx/p:N","cnx/m:Abbr","cnx/syn:@NH","<>:cnx/const:np#3599-3601$<i>609","tt/l:vs","tt/p:FM","tt/l:vs","tt/p:NE","mate/p:XY","xip/p:ADV","xip/l:vs","<>:xip/const:ADV#3599-3601$<i>609"],["s:Monkey","i:monkey","_609#3603-3609","<>:s#3603-3842$<i>635","opennlp/p:NE","corenlp/ne_dewac_175m_600:I-PER","corenlp/ne_hgc_175m_600:I-PER","cnx/l:Monkey","cnx/p:N","cnx/m:Prop","cnx/syn:@PREMOD","<>:cnx/const:np#3603-3614$<i>611","tt/p:NE","mate/l:monkey","mate/p:NE","mate/m:case:nom","mate/m:number:sg","mate/m:gender:masc",">:mate/d:PNC$<i>610","xip/p:NOUN","xip/l:Monkey","<>:xip/const:NOUN#3603-3609$<i>610","<>:xip/const:TOP#3603-3620$<i>612","<>:xip/const:NP#3603-3614$<i>611<b>1","<>:xip/const:NPA#3603-3614$<i>611<b>2","<>:xip/const:NOUN#3603-3614$<i>611<b>3"],["s:Kong","i:kong","_610#3610-3614","opennlp/p:NE","corenlp/ne_dewac_175m_600:I-PER","corenlp/ne_hgc_175m_600:I-PER","cnx/l:Kong","cnx/p:N","cnx/m:Prop","cnx/syn:@NH","tt/l:Kong","tt/p:NE","mate/l:kong","mate/p:NE","mate/m:case:nom","mate/m:number:sg","mate/m:gender:masc","<:mate/d:PNC$<i>609","xip/p:NOUN","xip/l:Kong","<>:xip/const:NOUN#3610-3614$<i>611"],["s:2002","i:2002","_611#3615-3619","<>:p#3615-3634$<i>614","opennlp/p:CARD","cnx/l:2002","cnx/p:NUM","cnx/syn:@NH","tt/l:@card@","tt/p:CARD","mate/l:2002","mate/p:CARD","xip/p:NUM","xip/l:2002","<>:xip/const:NUM#3615-3619$<i>612","<>:xip/const:NP#3615-3619$<i>612<b>1","<>:xip/const:NPA#3615-3619$<i>612<b>2","<>:xip/const:NUM#3615-3619$<i>612<b>3","xip/d:DATE"],["s:Hi-Fi","i:hi-fi","_612#3621-3626","opennlp/p:NE","cnx/l:Hi-fi","cnx/p:N","cnx/m:Prop","cnx/syn:@PREMOD","<>:cnx/const:np#3621-3646$<i>616","tt/p:NE","tt/p:NN","mate/l:hi-fi","mate/p:NE","mate/m:case:nom","mate/m:number:sg","mate/m:gender:masc",">:mate/d:PNC$<i>613","xip/p:NOUN","xip/l:Hi-Fi","<>:xip/const:NOUN#3621-3626$<i>613","<>:xip/const:TOP#3621-3893$<i>641","<>:xip/const:NP#3621-3626$<i>613<b>1","<>:xip/const:NPA#3621-3626$<i>613<b>2","xip/d:THEMA"],["s:serious","i:serious","_613#3627-3634","opennlp/p:ADJA","cnx/l:serious","cnx/p:N","cnx/syn:@NH","tt/p:NE","tt/p:NN","mate/l:serious","mate/p:NE","mate/m:case:nom","mate/m:number:sg","mate/m:gender:masc","<:mate/d:PNC$<i>612","xip/p:ADV","xip/l:serious","<>:xip/const:ADV#3627-3634$<i>614"],["s:7.","i:7.","_614#3635-3637","opennlp/p:ADJA","cnx/l:7.","cnx/p:NUM","cnx/syn:@PREMOD","tt/l:7.","tt/p:ADJA","xip/p:NUM","xip/l:7.","<>:xip/const:NP#3635-3646$<i>616<b>1","<>:xip/const:NPA#3635-3646$<i>616<b>2","<>:xip/const:NUM#3635-3637$<i>615"],["s:Weblinks","i:weblinks","_615#3638-3646","opennlp/p:NN","cnx/l:web","cnx/l:link","cnx/p:N","cnx/m:PL","cnx/syn:@NH","tt/l:weblinks","tt/p:ADJD","mate/l:weblinks","mate/p:FM","xip/p:NOUN","xip/l:Weblinks","<>:xip/const:NOUN#3638-3646$<i>616","xip/d:THEMA"],["s:http://www.a-communication.com/","i:http://www.a-communication.com/","_616#3647-3678","<>:p#3647-3723$<i>623","opennlp/p:NE","cnx/l:http://www.a-communication.com/","cnx/p:N","cnx/syn:@NH","<>:cnx/const:np#3647-3678$<i>617","xip/p:TRUNC","xip/l:http://www.a-communication.com/","<>:xip/const:TRUNC#3647-3678$<i>617"],["s:Offizielle","i:offizielle","_617#3681-3691","opennlp/p:NN","cnx/l:Offizielle","cnx/p:N","cnx/m:Prop","cnx/syn:@PREMOD","<>:cnx/const:np#3681-3699$<i>619","tt/l:offiziell","tt/p:ADJA","mate/l:offiziell","mate/p:ADJA","mate/m:case:nom","mate/m:number:pl","mate/m:gender:neut","mate/m:degree:pos",">:mate/d:NK$<i>618","xip/p:ADJ","xip/l:offiziell","<>:xip/const:ADJ#3681-3691$<i>618","<>:xip/const:NP#3679-3699$<i>619<b>1","<>:xip/const:NPA#3679-3699$<i>619<b>2","<>:xip/const:AP#3679-3691$<i>618<b>3",">:xip/d:NMOD$<i>618"],["s:Website","i:website","_618#3692-3699","opennlp/p:NN","cnx/l:Website","cnx/p:N","cnx/m:Prop","cnx/syn:@NH","tt/l:Website","tt/p:NN","mate/l:website","mate/p:NN","mate/m:case:nom","mate/m:number:pl","mate/m:gender:neut","<:mate/d:NK$<i>617","<:mate/d:AG$<i>620","<:mate/d:MO$<i>621","xip/p:NOUN","xip/l:Website","<>:xip/const:NOUN#3692-3699$<i>619","<:xip/d:NMOD$<i>617","xip/d:THEMA","<:xip/d:NMOD$<i>620"],["s:der","i:der","_619#3700-3703","opennlp/p:ART","cnx/l:der","cnx/p:DET","cnx/syn:@PREMOD","tt/l:die","tt/p:ART","mate/l:der","mate/p:ART","mate/m:case:gen","mate/m:number:sg","mate/m:gender:fem",">:mate/d:NK$<i>620","xip/p:DET","xip/l:der","<>:xip/const:DET#3700-3703$<i>620","<>:xip/const:NP#3700-3708$<i>621<b>1",">:xip/d:DETERM$<i>620"],["s:Band","i:band","_620#3704-3708","opennlp/p:NN","cnx/l:band","cnx/p:N","cnx/syn:@NH","<>:cnx/const:np#3704-3708$<i>621","tt/l:Band","tt/p:NN","mate/l:band","mate/p:NN","mate/m:case:gen","mate/m:number:sg","mate/m:gender:fem","<:mate/d:NK$<i>619",">:mate/d:AG$<i>618","xip/p:NOUN","xip/l:Band","<>:xip/const:NOUN#3704-3708$<i>621","<>:xip/const:NPA#3704-3708$<i>621<b>2","<:xip/d:DETERM$<i>619",">:xip/d:NMOD$<i>618"],["s:auf","i:auf","_621#3710-3713","opennlp/p:APPR","cnx/l:auf","cnx/p:PREP","cnx/syn:@PREMARK","tt/l:auf","tt/p:APPR","mate/l:auf","mate/p:APPR",">:mate/d:MO$<i>618","<:mate/d:NK$<i>622","xip/p:PREP","xip/l:auf","<>:xip/const:PREP#3710-3713$<i>622","<>:xip/const:INS#3709-3723$<i>623<b>1"],["s:englisch","i:englisch","_622#3714-3722","opennlp/p:ADJD","corenlp/ne_dewac_175m_600:I-MISC","corenlp/ne_hgc_175m_600:I-MISC","cnx/l:englisch","cnx/p:A","cnx/syn:@NH","tt/l:englisch","tt/p:ADJD","mate/l:englisch","mate/p:ADJD","mate/m:degree:pos",">:mate/d:NK$<i>621","xip/p:ADJ","xip/l:englisch","<>:xip/const:ADJ#3714-3722$<i>623","<>:xip/const:AP#3714-3722$<i>623<b>2"],["s:http://amagazin","i:http://amagazin","_623#3724-3739","<>:p#3724-3811$<i>633","opennlp/p:NN","<>:cnx/const:np#3724-3760$<i>626","<>:xip/const:TRUNC#3724-3760$<i>626"],["s:.takethepowerback","i:.takethepowerback","_624#3739-3756","opennlp/p:FM"],["s:.de/","i:.de/","_625#3756-3760","opennlp/p:FM"],["s:Inoffizielle","i:inoffizielle","_626#3763-3775","opennlp/p:NN","cnx/l:Inoffizielle","cnx/p:N","cnx/m:Prop","cnx/syn:@PREMOD","<>:cnx/const:np#3763-3797$<i>631","tt/l:inoffiziell","tt/p:ADJA","mate/l:inoffiziell","mate/p:NN","mate/m:case:nom","mate/m:number:sg","mate/m:gender:*","<:mate/d:NK$<i>627","<:mate/d:MNR$<i>628","<:mate/d:UC$<i>631","xip/p:ADJ","xip/l:inoffiziell","<>:xip/const:ADJ#3763-3775$<i>627","<>:xip/const:NP#3761-3783$<i>628<b>1","<>:xip/const:NPA#3761-3783$<i>628<b>2","<>:xip/const:AP#3761-3775$<i>627<b>3",">:xip/d:NMOD$<i>627"],["s:Website","i:website","_627#3776-3783","opennlp/p:NN","cnx/l:Website","cnx/p:N","cnx/m:Prop","cnx/syn:@NH","tt/l:Website","tt/p:NN","mate/l:website","mate/p:NE","mate/m:case:nom","mate/m:number:sg","mate/m:gender:*",">:mate/d:NK$<i>626","xip/p:NOUN","xip/l:Website","<>:xip/const:NOUN#3776-3783$<i>628","<:xip/d:NMOD$<i>626","xip/d:THEMA"],["s:über","i:über","_628#3784-3788","opennlp/p:APPR","cnx/l:über","cnx/p:PREP","cnx/syn:@POSTMOD","tt/l:über","tt/p:APPR","mate/l:über","mate/p:APPR",">:mate/d:MNR$<i>626","<:mate/d:NK$<i>630","xip/p:PREP","xip/l:über","<>:xip/const:PREP#3784-3788$<i>629","<>:xip/const:PP#3784-3797$<i>631<b>1"],["s:die","i:die","_629#3789-3792","opennlp/p:ART","cnx/l:die","cnx/p:DET","cnx/syn:@PREMOD","tt/l:die","tt/p:ART","mate/l:der","mate/p:ART","mate/m:case:acc","mate/m:number:sg","mate/m:gender:fem",">:mate/d:NK$<i>630","xip/p:DET","xip/l:die","<>:xip/const:NP#3789-3797$<i>631<b>2","<>:xip/const:DET#3789-3792$<i>630",">:xip/d:DETERM$<i>630"],["s:Band","i:band","_630#3793-3797","opennlp/p:NN","cnx/l:band","cnx/p:N","cnx/syn:@NH","tt/l:Band","tt/p:NN","mate/l:band","mate/p:NN","mate/m:case:acc","mate/m:number:sg","mate/m:gender:fem","<:mate/d:NK$<i>629",">:mate/d:NK$<i>628","xip/p:NOUN","xip/l:Band","<>:xip/const:NOUN#3793-3797$<i>631","<>:xip/const:NPA#3793-3797$<i>631<b>3","<:xip/d:DETERM$<i>629"],["s:auf","i:auf","_631#3799-3802","opennlp/p:APPR","cnx/l:auf","cnx/p:PREP","cnx/syn:@PREMARK","tt/l:auf","tt/p:APPR","mate/l:auf","mate/p:APPR",">:mate/d:UC$<i>626","<:mate/d:NK$<i>632","xip/p:PREP","xip/l:auf","<>:xip/const:INS#3798-3811$<i>633<b>1","<>:xip/const:PREP#3799-3802$<i>632"],["s:deutsch","i:deutsch","_632#3803-3810","opennlp/p:ADJD","corenlp/ne_dewac_175m_600:I-MISC","corenlp/ne_hgc_175m_600:I-MISC","cnx/l:deutsch","cnx/p:A","cnx/syn:@NH","tt/l:deutsch","tt/p:ADJD","mate/l:deutsch","mate/p:ADJD","mate/m:degree:pos",">:mate/d:NK$<i>631","xip/p:ADJ","xip/l:deutsch","<>:xip/const:ADJ#3803-3810$<i>633","<>:xip/const:AP#3803-3810$<i>633<b>2"],["s:http://www.howacearea.cjb","i:http://www.howacearea.cjb","_633#3812-3837","<>:p#3812-3893$<i>641","opennlp/p:XY","<>:cnx/const:np#3812-3842$<i>635","<>:xip/const:TRUNC#3812-3842$<i>635"],["s:.net/","i:.net/","_634#3837-3842","opennlp/p:XY"],["s:Inoffizille","i:inoffizille","_635#3845-3856","<>:s#3843-3893$<i>641","opennlp/p:NN","cnx/l:Inoffizille","cnx/p:N","cnx/m:Prop","cnx/syn:@PREMOD","<>:cnx/const:np#3845-3878$<i>640","tt/p:NN","tt/p:NE","mate/l:inoffizill","mate/p:NE","mate/m:case:nom","mate/m:number:sg","mate/m:gender:*",">:mate/d:PNC$<i>636","xip/p:NOUN","xip/l:Inoffizille","<>:xip/const:NOUN#3845-3856$<i>636","<>:xip/const:NP#3845-3864$<i>637<b>1","<>:xip/const:NPA#3845-3864$<i>637<b>2","<>:xip/const:NOUN#3845-3864$<i>637<b>3"],["s:Website","i:website","_636#3857-3864","opennlp/p:NN","cnx/l:web","cnx/l:site","cnx/p:N","cnx/syn:@NH","tt/l:Website","tt/p:NN","mate/l:website","mate/p:NE","mate/m:case:nom","mate/m:number:sg","mate/m:gender:*","<:mate/d:PNC$<i>635","<:mate/d:MNR$<i>637","<:mate/d:PAR$<i>640","xip/p:NOUN","xip/l:Website","<>:xip/const:NOUN#3857-3864$<i>637"],["s:über","i:über","_637#3865-3869","opennlp/p:APPR","cnx/l:über","cnx/p:PREP","cnx/syn:@POSTMOD","tt/l:über","tt/p:APPR","mate/l:über","mate/p:APPR",">:mate/d:MNR$<i>636","<:mate/d:NK$<i>639","xip/p:PREP","xip/l:über","<>:xip/const:PREP#3865-3869$<i>638","<>:xip/const:PP#3865-3878$<i>640<b>1"],["s:die","i:die","_638#3870-3873","opennlp/p:ART","cnx/l:die","cnx/p:DET","cnx/syn:@PREMOD","tt/l:die","tt/p:ART","mate/l:der","mate/p:ART","mate/m:case:acc","mate/m:number:sg","mate/m:gender:fem",">:mate/d:NK$<i>639","xip/p:DET","xip/l:die","<>:xip/const:DET#3870-3873$<i>639","<>:xip/const:NP#3870-3878$<i>640<b>2",">:xip/d:DETERM$<i>639"],["s:Band","i:band","_639#3874-3878","opennlp/p:NN","cnx/l:band","cnx/p:N","cnx/syn:@NH","tt/l:Band","tt/p:NN","mate/l:band","mate/p:NN","mate/m:case:acc","mate/m:number:sg","mate/m:gender:fem","<:mate/d:NK$<i>638",">:mate/d:NK$<i>637","xip/p:NOUN","xip/l:Band","<>:xip/const:NOUN#3874-3878$<i>640","<>:xip/const:NPA#3874-3878$<i>640<b>3","<:xip/d:DETERM$<i>638"],["s:auf","i:auf","_640#3880-3883","opennlp/p:APPR","cnx/l:auf","cnx/p:PREP","cnx/syn:@PREMARK","tt/l:auf","tt/p:APPR","mate/l:auf","mate/p:APPR",">:mate/d:PAR$<i>636","<:mate/d:NK$<i>641","xip/p:PREP","xip/l:auf","<>:xip/const:PREP#3880-3883$<i>641","<>:xip/const:INS#3879-3893$<i>641<b>1"],["s:englisch","i:englisch","_641#3884-3892","opennlp/p:ADJD","corenlp/ne_dewac_175m_600:I-MISC","corenlp/ne_hgc_175m_600:I-MISC","cnx/l:englisch","cnx/p:A","cnx/syn:@NH","tt/l:englisch","tt/p:ADJD","mate/l:englisch","mate/p:ADJD","mate/m:degree:pos",">:mate/d:NK$<i>640","xip/p:ADJ","xip/l:englisch","<>:xip/const:AP#3884-3892$<i>642<b>2","<>:xip/const:ADJ#3884-3892$<i>642"]],"name":"tokens"}],"title":"Wikipedia"}
\ No newline at end of file
diff --git a/trunk/src/test/resources/wiki/00003.json.gz b/trunk/src/test/resources/wiki/00003.json.gz
new file mode 100644
index 0000000..7ce2877
--- /dev/null
+++ b/trunk/src/test/resources/wiki/00003.json.gz
Binary files differ
diff --git a/trunk/src/test/resources/wiki/00004.json b/trunk/src/test/resources/wiki/00004.json
new file mode 100644
index 0000000..e4f2e46
--- /dev/null
+++ b/trunk/src/test/resources/wiki/00004.json
@@ -0,0 +1 @@
+{"author":"","pubDate":"20050328","corpusID":"WPD","textClass":"wissenschaft,populaerwissenschaft","title":"Wikipedia","subTitle":"Die freie Enzyklopädie","fields":[{"primaryData":"A bezeichnet den ersten Buchstaben des lateinischen Wortes affirmo. In der formalen Logik ist A die symbolische Bezeichnung für ein allgemein bejahendes Urteil, d.h. eine Aussage, die Wissen darüber zum Ausdruck bringt, dass jedem Element irgend einer Menge oder Klasse eine oder mehrere bestimmte Eigenschaften zukommen, z.B. \"Alle Gase sind komprimierbar\", \"Alle Metalle besitzen unter Normalbedingungen eine elektrische Leitfähigkeit und Wärmeleitfähigkeit\". Solche Buchstabenbezeichnungen verwendet man wegen der kurzen Schreibweise zur Charakterisierung eines Schlusses, der aus mehreren Urteilen besteht. Beispiel: Der Schluss (A) \"Alle Elementarteilchen sind gegenwärtig unzerlegbar angenommene Mikroobjekte\" (A) \"Alle Photonen sind Elementarteilchen\" (A) \"Alle Photonen sind gegenwärtig unzerlegbar angenommene Mikroobjekte\" wird durch die drei Buchstaben AAA bezeichnet. Das bedeutet, dass alle Urteile, die in diesem Schluss enthalten sind, allgemein bejahende Urteile sind. In der Syllogistik wird mit dem Buchstaben A die logische Konstante oder der Funktor bezeichnet, der die Wörter \"jedes ....ist ......\" ausdrückt. Der Buchstabe \"a\" als erster Vokal des lateinischen Alphabetes ging in die Bezeichnung der Modi des Syllogismus ein, in denen ein allgemein bejahendes Urteil enthalten ist. Der erste Modus der ersten Schlussfigur des einfachen kategorischen Syllogismus, der aus drei allgemein bejahenden Urteilen besteht, wurde z.B. mit dem Wort Barbara\" bezeichnet, das dreimal den Buchstaben a enthält, aber an und für sich keinen weiteren Sinn enthält, obgleich es zufällig in der Schreibung mit dem Vornamen Barbara übereinstimmt. Es sagt nur aus, dass alle drei Urteile, die den ersten Modus der ersten Schlussfigur des Syllogismus eingehen, allgemein bejahende Urteile sind. Der zweite Modus der ersten Schlussfigur des einfachen kategorischen Syllogismus wird mit dem Wort Celarent bezeichnet. Diese Bezeichnung deutet an, dass dieser Modus nur ein allgemein bejahendes Urteil, und zwar als zweite Prämisse enthält, weil die zweite Silbe la den Buchstabenb a enthält. Die übrigen zwei Silben Ce- und -rent kennzeichnen durch den darin enthaltenen Vokal e, dass die Prämisse maior und die Konklusion allgemein verneinende Urteile sind. Erstmals wurden derartige symbolische Buchstabenbezeichnungen für Quantität und Qualität von Aussagen im 11. Jahrhundert von Michael Psellos verwendet. Die allgemein bejahenden Urteile bezeichnete er mit α, dem griechischen Buchstaben Alpha."},{"data":[["s:A","i:a","_0#0-1","-:t$<i>341","<>:s#0-67$<i>9","-:s$<i>17","<>:p#0-67$<i>9","-:p$<i>8","opennlp/p:NE","cnx/l:a","cnx/p:PREP","cnx/syn:@PREMARK","tt/l:A","tt/p:NN","mate/p:XY","mate/m:case:nom","mate/m:number:sg","mate/m:gender:*","xip/p:SYMBOL","xip/l:A","<>:xip/const:TOP#0-67$<i>9","<>:xip/const:MC#0-66$<i>9<b>1",">:xip/d:SUBJ$<i>1"],["s:bezeichnet","i:bezeichnet","_1#2-12","opennlp/p:VVFIN","cnx/l:bezeichnen","cnx/p:V","cnx/m:IND","cnx/m:PRES","cnx/syn:@MAIN","tt/l:bezeichnen","tt/p:VVFIN","tt/l:bezeichnen","tt/p:VVPP","mate/l:bezeichnen","mate/p:VVFIN","mate/m:number:sg","mate/m:person:3","mate/m:tense:pres","mate/m:mood:ind","<:mate/d:DA$<i>4","xip/p:VERB","xip/l:bezeichnen","<>:xip/const:VERB#2-12$<i>2","<:xip/d:SUBJ$<i>0","xip/d:VMAIN","<:xip/d:OBJ$<i>4","<:xip/d:VMOD$<i>8"],["s:den","i:den","_2#13-16","opennlp/p:ART","cnx/l:die","cnx/p:DET","cnx/syn:@PREMOD","tt/l:die","tt/p:ART","mate/l:der","mate/p:ART","mate/m:case:acc","mate/m:number:sg","mate/m:gender:masc",">:mate/d:NK$<i>4","xip/p:DET","xip/l:der","<>:xip/const:DET#13-16$<i>3",">:xip/d:DETERM$<i>4"],["s:ersten","i:ersten","_3#17-23","opennlp/p:ADJA","cnx/l:erste","cnx/p:NUM","cnx/m:ORD","cnx/syn:@PREMOD","<>:cnx/const:np#17-34$<i>5","tt/l:erst","tt/p:ADJA","mate/l:erster","mate/p:ADJA","mate/m:case:acc","mate/m:number:sg","mate/m:gender:masc","mate/m:degree:pos",">:mate/d:NK$<i>4","xip/p:ADJ","xip/l:ein","<>:xip/const:ADJ#17-23$<i>4",">:xip/d:NMOD$<i>4"],["s:Buchstaben","i:buchstaben","_4#24-34","opennlp/p:NN","cnx/l:buchstabe","cnx/p:N","cnx/m:PL","cnx/syn:@NH","tt/l:Buchstabe","tt/p:NN","mate/l:buchstabe","mate/p:NN","mate/m:case:acc","mate/m:number:sg","mate/m:gender:masc","<:mate/d:NK$<i>2","<:mate/d:NK$<i>3",">:mate/d:DA$<i>1","<:mate/d:AG$<i>7","xip/p:NOUN","xip/l:Buchstabe","<>:xip/const:NOUN#24-34$<i>5","<:xip/d:DETERM$<i>2","<:xip/d:NMOD$<i>3",">:xip/d:OBJ$<i>1","<:xip/d:NMOD$<i>7"],["s:des","i:des","_5#35-38","opennlp/p:ART","cnx/l:das","cnx/p:DET","cnx/syn:@PREMOD","tt/l:die","tt/p:ART","mate/l:der","mate/p:ART","mate/m:case:gen","mate/m:number:sg","mate/m:gender:neut",">:mate/d:NK$<i>7","xip/p:DET","xip/l:der","<>:xip/const:DET#35-38$<i>6",">:xip/d:DETERM$<i>7"],["s:lateinischen","i:lateinischen","_6#39-51","opennlp/p:ADJA","cnx/l:lateinisch","cnx/p:A","cnx/syn:@PREMOD","<>:cnx/const:np#39-66$<i>9","tt/l:lateinisch","tt/p:ADJA","mate/l:lateinisch","mate/p:ADJA","mate/m:case:gen","mate/m:number:sg","mate/m:gender:neut","mate/m:degree:pos",">:mate/d:NK$<i>7","xip/p:ADJ","xip/l:lateinisch","<>:xip/const:ADJ#39-51$<i>7",">:xip/d:NMOD$<i>7"],["s:Wortes","i:wortes","_7#52-58","opennlp/p:NN","cnx/l:wort","cnx/p:N","cnx/syn:@PREMOD","tt/l:Wort","tt/p:NN","mate/l:wort","mate/p:NN","mate/m:case:gen","mate/m:number:sg","mate/m:gender:neut","<:mate/d:NK$<i>5","<:mate/d:NK$<i>6",">:mate/d:AG$<i>4","<:mate/d:NK$<i>8","xip/p:NOUN","xip/l:Wort","<>:xip/const:NOUN#52-58$<i>8","<:xip/d:DETERM$<i>5","<:xip/d:NMOD$<i>6",">:xip/d:NMOD$<i>4"],["s:affirmo","i:affirmo","_8#59-66","opennlp/p:NE","cnx/l:affirmo","cnx/p:N","cnx/syn:@NH","tt/p:VVINF","tt/p:NE","tt/p:NN","tt/p:VVFIN","tt/p:VVPP","tt/p:ADJD","mate/l:affirmo","mate/p:NE","mate/m:case:nom","mate/m:number:sg","mate/m:gender:*",">:mate/d:NK$<i>7","xip/p:ADV","xip/l:affirmo","<>:xip/const:ADV#59-66$<i>9",">:xip/d:VMOD$<i>1"],["s:In","i:in","_9#68-70","<>:s#68-165$<i>24","<>:p#68-610$<i>78","opennlp/p:APPR","cnx/l:in","cnx/p:PREP","cnx/syn:@PREMARK","tt/l:in","tt/p:APPR","mate/l:in","mate/p:APPR",">:mate/d:MO$<i>13","<:mate/d:NK$<i>12","xip/p:PREP","xip/l:in","<>:xip/const:TOP#68-461$<i>61","<>:xip/const:MC#68-159$<i>23<b>1","<>:xip/const:PP#68-89$<i>13<b>2","<>:xip/const:PREP#68-70$<i>10"],["s:der","i:der","_10#71-74","opennlp/p:ART","cnx/l:die","cnx/p:DET","cnx/syn:@PREMOD","tt/l:die","tt/p:ART","mate/l:der","mate/p:ART","mate/m:case:dat","mate/m:number:sg","mate/m:gender:fem",">:mate/d:NK$<i>12","xip/p:DET","xip/l:der","<>:xip/const:NP#71-89$<i>13<b>3","<>:xip/const:DET#71-74$<i>11",">:xip/d:DETERM$<i>12"],["s:formalen","i:formalen","_11#75-83","opennlp/p:ADJA","cnx/l:formal","cnx/p:A","cnx/syn:@PREMOD","<>:cnx/const:np#75-89$<i>13","tt/l:formal","tt/p:ADJA","mate/l:formal","mate/p:ADJA","mate/m:case:dat","mate/m:number:sg","mate/m:gender:fem","mate/m:degree:pos",">:mate/d:NK$<i>12","xip/p:ADJ","xip/l:formal","<>:xip/const:NPA#75-89$<i>13<b>4","<>:xip/const:AP#75-83$<i>12<b>5","<>:xip/const:ADJ#75-83$<i>12",">:xip/d:NMOD$<i>12"],["s:Logik","i:logik","_12#84-89","opennlp/p:NN","cnx/l:logik","cnx/p:N","cnx/syn:@NH","tt/l:Logik","tt/p:NN","mate/l:logik","mate/p:NN","mate/m:case:dat","mate/m:number:sg","mate/m:gender:fem","<:mate/d:NK$<i>10","<:mate/d:NK$<i>11",">:mate/d:NK$<i>9","xip/p:NOUN","xip/l:Logik","<>:xip/const:NOUN#84-89$<i>13","<:xip/d:DETERM$<i>10","<:xip/d:NMOD$<i>11"],["s:ist","i:ist","_13#90-93","opennlp/p:VAFIN","cnx/l:sein","cnx/p:V","cnx/m:IND","cnx/m:PRES","cnx/syn:@MAIN","tt/l:sein","tt/p:VAFIN","mate/l:sein","mate/p:VAFIN","mate/m:number:sg","mate/m:person:3","mate/m:tense:pres","mate/m:mood:ind","<:mate/d:MO$<i>9","<:mate/d:SB$<i>14","<:mate/d:PD$<i>17","<:mate/d:DM$<i>23","<:mate/d:PD$<i>25","<:mate/d:CJ$<i>49","xip/p:VERB","xip/l:sein","<>:xip/const:VERB#90-93$<i>14","xip/d:VMAIN","<:xip/d:SUBJ$<i>14","<:xip/d:PRED$<i>17"],["s:A","i:a","_14#94-95","opennlp/p:NE","cnx/l:a","cnx/p:PREP","cnx/syn:@PREMARK","tt/l:A","tt/p:NN","mate/p:NE","mate/m:case:nom","mate/m:number:sg","mate/m:gender:fem",">:mate/d:SB$<i>13","xip/p:SYMBOL","xip/l:A","<>:xip/const:NP#94-95$<i>15<b>2","<>:xip/const:NPA#94-95$<i>15<b>3","<>:xip/const:NOUN#94-95$<i>15<b>4","<>:xip/const:SYMBOL#94-95$<i>15",">:xip/d:SUBJ$<i>13"],["s:die","i:die","_15#96-99","opennlp/p:ART","cnx/l:die","cnx/p:DET","cnx/syn:@PREMOD","tt/l:die","tt/p:ART","mate/l:der","mate/p:ART","mate/m:case:nom","mate/m:number:sg","mate/m:gender:fem",">:mate/d:NK$<i>17","xip/p:DET","xip/l:die","<>:xip/const:NP#96-123$<i>18<b>2","<>:xip/const:DET#96-99$<i>16",">:xip/d:DETERM$<i>17"],["s:symbolische","i:symbolische","_16#100-111","opennlp/p:ADJA","cnx/l:symbolisch","cnx/p:A","cnx/syn:@PREMOD","<>:cnx/const:np#100-159$<i>23","tt/l:symbolisch","tt/p:ADJA","mate/l:symbolisch","mate/p:ADJA","mate/m:case:nom","mate/m:number:sg","mate/m:gender:fem","mate/m:degree:pos",">:mate/d:NK$<i>17","xip/p:ADJ","xip/l:symbolisch","<>:xip/const:NPA#100-123$<i>18<b>3","<>:xip/const:AP#100-111$<i>17<b>4","<>:xip/const:ADJ#100-111$<i>17",">:xip/d:NMOD$<i>17"],["s:Bezeichnung","i:bezeichnung","_17#112-123","opennlp/p:NN","cnx/l:bezeichnung","cnx/p:N","cnx/syn:@NH","tt/l:Bezeichnung","tt/p:NN","mate/l:bezeichnung","mate/p:NN","mate/m:case:nom","mate/m:number:sg","mate/m:gender:fem","<:mate/d:NK$<i>15","<:mate/d:NK$<i>16",">:mate/d:PD$<i>13","<:mate/d:MNR$<i>18","xip/p:NOUN","xip/l:Bezeichnung","<>:xip/const:NOUN#112-123$<i>18","<:xip/d:DETERM$<i>15","<:xip/d:NMOD$<i>16",">:xip/d:PRED$<i>13"],["s:für","i:für","_18#124-127","opennlp/p:APPR","cnx/l:für","cnx/p:PREP","cnx/syn:@POSTMOD","tt/l:für","tt/p:APPR","mate/l:für","mate/p:APPR",">:mate/d:MNR$<i>17","<:mate/d:NK$<i>22","xip/p:PREP","xip/l:für","<>:xip/const:PP#124-159$<i>23<b>2","<>:xip/const:PREP#124-127$<i>19"],["s:ein","i:ein","_19#128-131","opennlp/p:ART","cnx/l:ein","cnx/p:DET","cnx/syn:@PREMOD","tt/l:eine","tt/p:ART","mate/l:ein","mate/p:ART","mate/m:case:acc","mate/m:number:sg","mate/m:gender:neut",">:mate/d:NK$<i>22","xip/p:DET","xip/l:ein","<>:xip/const:NP#128-159$<i>23<b>3","<>:xip/const:DET#128-131$<i>20",">:xip/d:DETERM$<i>22"],["s:allgemein","i:allgemein","_20#132-141","opennlp/p:ADJD","cnx/l:all","cnx/l:gemein","cnx/p:A","cnx/syn:@PREMOD","tt/l:allgemein","tt/p:ADJD","mate/l:allgemein","mate/p:ADJD","mate/m:degree:pos",">:mate/d:MO$<i>21","xip/p:ADJ","xip/l:allgemein","<>:xip/const:NPA#132-159$<i>23<b>4","<>:xip/const:AP#132-152$<i>22<b>5","<>:xip/const:ADJ#132-141$<i>21",">:xip/d:ADJMOD$<i>21"],["s:bejahendes","i:bejahendes","_21#142-152","opennlp/p:ADJA","cnx/l:bejahend","cnx/p:A","cnx/syn:@PREMOD","tt/l:bejahend","tt/p:ADJA","mate/l:bejahend","mate/p:ADJA","mate/m:case:acc","mate/m:number:sg","mate/m:gender:neut","mate/m:degree:pos","<:mate/d:MO$<i>20",">:mate/d:NK$<i>22","xip/p:ADJ","xip/l:bejahen","<>:xip/const:ADJ#142-152$<i>22","<:xip/d:ADJMOD$<i>20",">:xip/d:NMOD$<i>22"],["s:Urteil","i:urteil","_22#153-159","opennlp/p:NN","cnx/l:urteil","cnx/p:N","cnx/syn:@NH","tt/l:Urteil","tt/p:NN","mate/l:urteil","mate/p:NN","mate/m:case:acc","mate/m:number:sg","mate/m:gender:neut","<:mate/d:NK$<i>19","<:mate/d:NK$<i>21",">:mate/d:NK$<i>18","xip/p:NOUN","xip/l:Urteil","<>:xip/const:NOUN#153-159$<i>23","<:xip/d:DETERM$<i>19","<:xip/d:NMOD$<i>21"],["s:d.h","i:d.h","_23#161-164","opennlp/p:NE","mate/l:d.h","mate/p:ITJ","mate/m:case:nom","mate/m:number:sg","mate/m:gender:*",">:mate/d:DM$<i>13","<>:xip/const:MC#161-357$<i>51<b>1","<>:xip/const:ADV#161-165$<i>24"],["s:eine","i:eine","_24#166-170","<>:s#166-326$<i>47","opennlp/p:ART","cnx/l:eine","cnx/p:DET","cnx/syn:@PREMOD","tt/l:eine","tt/p:ART","mate/l:ein","mate/p:ART","mate/m:case:nom","mate/m:number:sg","mate/m:gender:fem",">:mate/d:NK$<i>25","xip/p:DET","xip/l:ein","<>:xip/const:NP#166-178$<i>26<b>2","<>:xip/const:DET#166-170$<i>25",">:xip/d:DETERM$<i>25"],["s:Aussage","i:aussage","_25#171-178","opennlp/p:NN","cnx/l:aussage","cnx/p:N","cnx/syn:@NH","<>:cnx/const:np#171-178$<i>26","tt/l:Aussage","tt/p:NN","mate/l:aussage","mate/p:NN","mate/m:case:nom","mate/m:number:sg","mate/m:gender:fem","<:mate/d:NK$<i>24",">:mate/d:PD$<i>13","<:mate/d:RC$<i>31","xip/p:NOUN","xip/l:Aussage","<>:xip/const:NOUN#171-178$<i>26","<>:xip/const:NPA#171-178$<i>26<b>3","<:xip/d:DETERM$<i>24",">:xip/d:PRED$<i>49"],["s:die","i:die","_26#180-183","opennlp/p:PRELS","cnx/l:die","cnx/p:PRON","cnx/syn:@NH","tt/l:die","tt/p:ART","tt/l:die","tt/p:PRELS","mate/l:der","mate/p:ART","mate/m:case:acc","mate/m:number:pl","mate/m:gender:fem",">:mate/d:SB$<i>31","xip/p:PRON","xip/l:die","<>:xip/const:SC#180-218$<i>32","<>:xip/const:NP#180-183$<i>27<b>1","<>:xip/const:PRON#180-183$<i>27",">:xip/d:SUBJ$<i>31"],["s:Wissen","i:wissen","_27#184-190","opennlp/p:NN","cnx/l:wissen","cnx/p:N","cnx/syn:@NH","<>:cnx/const:np#184-190$<i>28","tt/l:Wissen","tt/p:NN","mate/l:wissen","mate/p:NN","mate/m:case:acc","mate/m:number:pl","mate/m:gender:fem",">:mate/d:OA$<i>31","<:mate/d:OP$<i>28","xip/p:NOUN","xip/l:wissen","<>:xip/const:NOUN#184-190$<i>28","<>:xip/const:NP#184-190$<i>28<b>1","<>:xip/const:NPA#184-190$<i>28<b>2",">:xip/d:OBJ$<i>31"],["s:darüber","i:darüber","_28#191-198","opennlp/p:PROAV","cnx/l:darüber","cnx/p:ADV","cnx/syn:@ADVL","tt/l:darüber","tt/p:PROAV","mate/l:darüber","mate/p:PROAV",">:mate/d:OP$<i>27","<:mate/d:RE$<i>45","xip/p:ADV","xip/l:darüber","<>:xip/const:ADV#191-198$<i>29",">:xip/d:VMOD$<i>31"],["s:zum","i:zum","_29#199-202","opennlp/p:APPRART","tt/l:zum","tt/p:APPRART","mate/l:zu","mate/p:APPRART","mate/m:case:dat","mate/m:number:sg","mate/m:gender:masc",">:mate/d:CVC$<i>31","<:mate/d:NK$<i>30","xip/p:PREP","xip/l:zu","<>:xip/const:PP#199-211$<i>31<b>1","<>:xip/const:PREP#199-202$<i>30"],["s:Ausdruck","i:ausdruck","_30#203-211","opennlp/p:NN","cnx/l:ausdruck","cnx/p:N","cnx/syn:@NH","<>:cnx/const:np#203-211$<i>31","tt/l:Ausdruck","tt/p:NN","mate/l:ausdruck","mate/p:NN","mate/m:case:dat","mate/m:number:sg","mate/m:gender:masc",">:mate/d:NK$<i>29","xip/p:NOUN","xip/l:Ausdruck","<>:xip/const:NP#203-211$<i>31<b>2","<>:xip/const:NPA#203-211$<i>31<b>3","<>:xip/const:NOUN#203-211$<i>31"],["s:bringt","i:bringt","_31#212-218","opennlp/p:VVFIN","cnx/l:bringen","cnx/p:V","cnx/m:IND","cnx/m:PRES","cnx/syn:@MAIN","tt/l:bringen","tt/p:VVFIN","mate/l:bringen","mate/p:VVFIN","mate/m:number:sg","mate/m:person:3","mate/m:tense:pres","mate/m:mood:ind","<:mate/d:SB$<i>26","<:mate/d:OA$<i>27","<:mate/d:CVC$<i>29",">:mate/d:RC$<i>25","xip/p:VERB","xip/l:bringen","<>:xip/const:VERB#212-218$<i>32","<:xip/d:SUBJ$<i>26","<:xip/d:OBJ$<i>27","<:xip/d:VMOD$<i>28","xip/d:VMAIN"],["s:dass","i:dass","_32#220-224","opennlp/p:KOUS","cnx/l:dass","cnx/p:CS","cnx/syn:@PREMARK","tt/l:dass","tt/p:KOUS","mate/l:dass","mate/p:KOUS",">:mate/d:CP$<i>45","xip/p:CONJ","xip/l:dass","<>:xip/const:CONJ#220-224$<i>33",">:xip/d:CONNECT$<i>45"],["s:jedem","i:jedem","_33#225-230","opennlp/p:PIAT","cnx/l:jeder","cnx/p:PRON","cnx/syn:@PREMOD","tt/l:jede","tt/p:PIAT","mate/l:jeder","mate/p:PIAT","mate/m:case:dat","mate/m:number:sg","mate/m:gender:masc",">:mate/d:NK$<i>34","xip/p:DET","xip/l:jede","<>:xip/const:DET#225-230$<i>34",">:xip/d:DETERM$<i>34"],["s:Element","i:element","_34#231-238","opennlp/p:NN","cnx/l:element","cnx/p:N","cnx/syn:@NH","<>:cnx/const:np#231-238$<i>35","tt/l:Element","tt/p:NN","mate/l:element","mate/p:NN","mate/m:case:dat","mate/m:number:sg","mate/m:gender:masc","<:mate/d:NK$<i>33",">:mate/d:SB$<i>45","xip/p:NOUN","xip/l:Element","<>:xip/const:NOUN#231-238$<i>35","<:xip/d:DETERM$<i>33",">:xip/d:OBJ$<i>45"],["s:irgend","i:irgend","_35#239-245","opennlp/p:ADV","cnx/l:irgend","cnx/p:ADV","cnx/syn:@ADVL","tt/l:irgend","tt/p:ADV","mate/l:irgend","mate/p:ADV",">:mate/d:MO$<i>37","xip/p:ADV","xip/l:irgend","<>:xip/const:ADV#239-245$<i>36",">:xip/d:VMOD$<i>45"],["s:einer","i:einer","_36#246-251","opennlp/p:ART","cnx/l:eine","cnx/p:DET","cnx/syn:@PREMOD","tt/l:eine","tt/p:ART","mate/l:ein","mate/p:ART","mate/m:case:dat","mate/m:number:sg","mate/m:gender:fem",">:mate/d:NK$<i>37","xip/p:DET","xip/l:ein","<>:xip/const:DET#246-251$<i>37",">:xip/d:DETERM$<i>37"],["s:Menge","i:menge","_37#252-257","opennlp/p:NN","cnx/l:menge","cnx/p:N","cnx/syn:@NH","<>:cnx/const:np#252-257$<i>38","tt/l:Menge","tt/p:NN","mate/l:menge","mate/p:NN","mate/m:case:dat","mate/m:number:sg","mate/m:gender:fem","<:mate/d:MO$<i>35","<:mate/d:NK$<i>36",">:mate/d:OA$<i>45","<:mate/d:CD$<i>38","<:mate/d:AG$<i>44","xip/p:NOUN","xip/l:Menge","<>:xip/const:NOUN#252-257$<i>38","<:xip/d:DETERM$<i>36",">:xip/d:OBJ$<i>45","<:xip/d:COORD$<i>38"],["s:oder","i:oder","_38#258-262","opennlp/p:KON","cnx/l:oder","cnx/p:CC","cnx/syn:@CC","tt/l:oder","tt/p:KON","mate/l:oder","mate/p:KON",">:mate/d:CD$<i>37","<:mate/d:CJ$<i>39","xip/p:CONJ","xip/l:oder","<>:xip/const:CONJ#258-262$<i>39",">:xip/d:COORD$<i>37",">:xip/d:COORD$<i>39"],["s:Klasse","i:klasse","_39#263-269","opennlp/p:NN","cnx/l:klasse","cnx/p:N","cnx/syn:@NH","<>:cnx/const:np#263-269$<i>40","tt/l:Klasse","tt/p:NN","mate/l:klasse","mate/p:NN","mate/m:case:nom","mate/m:number:sg","mate/m:gender:fem",">:mate/d:CJ$<i>38","xip/p:NOUN","xip/l:Klasse","<>:xip/const:NOUN#263-269$<i>40","<:xip/d:COORD$<i>38",">:xip/d:OBJ$<i>45"],["s:eine","i:eine","_40#270-274","opennlp/p:ART","cnx/l:einer","cnx/p:PRON","cnx/syn:@NH","tt/l:eine","tt/p:ART","tt/l:eine","tt/p:PIS","mate/l:ein","mate/p:ART","mate/m:case:nom","mate/m:number:sg","mate/m:gender:fem",">:mate/d:NK$<i>44","<:mate/d:CD$<i>41","xip/p:PRON","xip/l:ein","<>:xip/const:PRON#270-274$<i>41",">:xip/d:SUBJ$<i>45","<:xip/d:COORD$<i>41"],["s:oder","i:oder","_41#275-279","opennlp/p:ADJA","cnx/l:oder","cnx/p:CC","cnx/syn:@CC","tt/l:oder","tt/p:KON","mate/l:oder","mate/p:KON",">:mate/d:CD$<i>40","<:mate/d:CJ$<i>43","xip/p:CONJ","xip/l:oder","<>:xip/const:CONJ#275-279$<i>42",">:xip/d:COORD$<i>40",">:xip/d:COORD$<i>44"],["s:mehrere","i:mehrere","_42#280-287","opennlp/p:PIAT","cnx/l:mehrere","cnx/p:PRON","cnx/syn:@PREMOD","tt/l:mehrere","tt/p:PIAT","mate/l:mehrere","mate/p:PIAT","mate/m:case:acc","mate/m:number:pl","mate/m:gender:fem",">:mate/d:MO$<i>43","xip/p:ADJ","xip/l:mehrere","<>:xip/const:ADJ#280-287$<i>43",">:xip/d:NMOD$<i>44"],["s:bestimmte","i:bestimmte","_43#288-297","opennlp/p:ADJA","cnx/l:bestimmt","cnx/p:A","cnx/syn:@PREMOD","<>:cnx/const:np#288-311$<i>45","tt/l:bestimmt","tt/p:ADJA","mate/l:bestimmt","mate/p:ADJA","mate/m:case:acc","mate/m:number:pl","mate/m:gender:fem","mate/m:degree:pos","<:mate/d:MO$<i>42",">:mate/d:CJ$<i>41","xip/p:ADJ","xip/l:bestimmt","<>:xip/const:ADJ#288-297$<i>44",">:xip/d:NMOD$<i>44"],["s:Eigenschaften","i:eigenschaften","_44#298-311","opennlp/p:NN","cnx/l:eigenschaft","cnx/p:N","cnx/m:PL","cnx/syn:@NH","tt/l:Eigenschaft","tt/p:NN","mate/l:eigenschaft","mate/p:NN","mate/m:case:acc","mate/m:number:pl","mate/m:gender:fem","<:mate/d:NK$<i>40",">:mate/d:AG$<i>37","xip/p:NOUN","xip/l:Eigenschaft","<>:xip/const:NOUN#298-311$<i>45","<:xip/d:COORD$<i>41","<:xip/d:NMOD$<i>42","<:xip/d:NMOD$<i>43",">:xip/d:SUBJ$<i>45"],["s:zukommen","i:zukommen","_45#312-320","opennlp/p:VVINF","cnx/l:zukommen","cnx/p:V","cnx/m:IND","cnx/m:PRES","cnx/syn:@MAIN","tt/l:zukommen","tt/p:VVINF","mate/l:zukommen","mate/p:VVINF","<:mate/d:CP$<i>32","<:mate/d:SB$<i>34","<:mate/d:OA$<i>37",">:mate/d:RE$<i>28","xip/p:VERB","xip/l:zukommen","<>:xip/const:VERB#312-320$<i>46","<:xip/d:CONNECT$<i>32","<:xip/d:OBJ$<i>34","<:xip/d:VMOD$<i>35","<:xip/d:OBJ$<i>37","<:xip/d:OBJ$<i>39","<:xip/d:SUBJ$<i>40","<:xip/d:SUBJ$<i>44","xip/d:VMAIN"],["s:z.B.","i:z.b.","_46#322-326","opennlp/p:KOUS","cnx/l:z.B.","cnx/p:ADV","cnx/syn:@ADVL","xip/p:ADV","xip/l:z.B.","<>:xip/const:ADV#322-326$<i>47",">:xip/d:VMOD$<i>49"],["s:\"Alle","i:\"alle","_47#327-332","<>:s#327-461$<i>61","opennlp/p:ADJA"],["s:Gase","i:gase","_48#333-337","opennlp/p:NN","cnx/l:gas","cnx/p:N","cnx/m:PL","cnx/syn:@NH","<>:cnx/const:np#333-337$<i>49","tt/l:Gas","tt/p:NN","mate/l:gas","mate/p:NN","mate/m:case:nom","mate/m:number:pl","mate/m:gender:masc",">:mate/d:SB$<i>49","xip/p:NOUN","xip/l:Gas","<>:xip/const:NOUN#333-337$<i>49",">:xip/d:SUBJ$<i>49"],["s:sind","i:sind","_49#338-342","opennlp/p:VAFIN","cnx/l:sein","cnx/p:V","cnx/m:IND","cnx/m:PRES","cnx/syn:@MAIN","tt/l:sein","tt/p:VAFIN","mate/l:sein","mate/p:VAFIN","mate/m:number:pl","mate/m:person:3","mate/m:tense:pres","mate/m:mood:ind","<:mate/d:SB$<i>48",">:mate/d:CJ$<i>13","<:mate/d:MO$<i>53","xip/p:VERB","xip/l:sein","<>:xip/const:VERB#338-342$<i>50","<:xip/d:PRED$<i>25","<:xip/d:VMOD$<i>46","<:xip/d:SUBJ$<i>48","xip/d:VMAIN"],["s:komprimierbar\"","i:komprimierbar\"","_50#343-357","opennlp/p:ADJD"],["s:\"Alle","i:\"alle","_51#359-364","opennlp/p:NN","<>:xip/const:MC#359-460$<i>61<b>1"],["s:Metalle","i:metalle","_52#365-372","opennlp/p:NN","cnx/l:metall","cnx/p:N","cnx/m:PL","cnx/syn:@NH","<>:cnx/const:np#365-372$<i>53","tt/l:Metall","tt/p:NN","mate/l:metall","mate/p:NN","mate/m:case:nom","mate/m:number:pl","mate/m:gender:neut",">:mate/d:SB$<i>53","xip/p:NOUN","xip/l:Metall","<>:xip/const:NOUN#365-372$<i>53",">:xip/d:SUBJ$<i>53"],["s:besitzen","i:besitzen","_53#373-381","opennlp/p:VVFIN","cnx/l:besitzen","cnx/p:V","cnx/m:IND","cnx/m:PRES","cnx/syn:@MAIN","tt/l:besitzen","tt/p:VVFIN","mate/l:besitzen","mate/p:VVFIN","mate/m:number:pl","mate/m:person:3","mate/m:tense:pres","mate/m:mood:ind","<:mate/d:SB$<i>52",">:mate/d:MO$<i>49","<:mate/d:MO$<i>54","<:mate/d:OA$<i>58","xip/p:VERB","xip/l:besitzen","<>:xip/const:VERB#373-381$<i>54","<:xip/d:SUBJ$<i>52","xip/d:VMAIN","<:xip/d:OBJ$<i>58"],["s:unter","i:unter","_54#382-387","opennlp/p:APPR","cnx/l:unter","cnx/p:ADV","cnx/syn:@ADVL","tt/l:unter","tt/p:APPR","mate/l:unter","mate/p:APPR",">:mate/d:MO$<i>53","<:mate/d:NK$<i>55","xip/p:PREP","xip/l:unter","<>:xip/const:PREP#382-387$<i>55"],["s:Normalbedingungen","i:normalbedingungen","_55#388-405","opennlp/p:NN","cnx/l:normal","cnx/l:bedingung","cnx/p:N","cnx/m:PL","cnx/syn:@NH","<>:cnx/const:np#388-405$<i>56","tt/l:Normalbedingung","tt/p:NN","mate/l:normalbedingung","mate/p:NN","mate/m:case:dat","mate/m:number:pl","mate/m:gender:fem",">:mate/d:NK$<i>54","xip/p:NOUN","xip/l:normal","xip/l:Bedingung","xip/l:Normalbedingung","<>:xip/const:NOUN#388-405$<i>56"],["s:eine","i:eine","_56#406-410","opennlp/p:ART","cnx/l:eine","cnx/p:DET","cnx/syn:@PREMOD","tt/l:eine","tt/p:ART","mate/l:ein","mate/p:ART","mate/m:case:acc","mate/m:number:sg","mate/m:gender:fem",">:mate/d:NK$<i>58","xip/p:DET","xip/l:ein","<>:xip/const:DET#406-410$<i>57",">:xip/d:DETERM$<i>58"],["s:elektrische","i:elektrische","_57#411-422","opennlp/p:ADJA","cnx/l:elektrisch","cnx/p:A","cnx/syn:@PREMOD","<>:cnx/const:np#411-436$<i>59","tt/l:elektrisch","tt/p:ADJA","mate/l:elektrisch","mate/p:ADJA","mate/m:case:acc","mate/m:number:sg","mate/m:gender:fem","mate/m:degree:pos",">:mate/d:NK$<i>58","xip/p:ADJ","xip/l:elektrisch","<>:xip/const:ADJ#411-422$<i>58",">:xip/d:NMOD$<i>58"],["s:Leitfähigkeit","i:leitfähigkeit","_58#423-436","opennlp/p:NN","cnx/l:leit","cnx/l:fähigkeit","cnx/p:N","cnx/syn:@NH","tt/l:Leitfähigkeit","tt/p:NN","mate/l:leitfähigkeit","mate/p:NN","mate/m:case:acc","mate/m:number:sg","mate/m:gender:fem","<:mate/d:NK$<i>56","<:mate/d:NK$<i>57",">:mate/d:OA$<i>53","<:mate/d:CD$<i>59","xip/p:NOUN","xip/l:leiten","xip/l:Fähigkeit","xip/l:Leitenfähigkeit","<>:xip/const:NOUN#423-436$<i>59","<:xip/d:DETERM$<i>56","<:xip/d:NMOD$<i>57",">:xip/d:OBJ$<i>53","<:xip/d:COORD$<i>59"],["s:und","i:und","_59#437-440","opennlp/p:KON","cnx/l:und","cnx/p:CC","cnx/syn:@CC","tt/l:und","tt/p:KON","mate/l:und","mate/p:KON",">:mate/d:CD$<i>58","xip/p:CONJ","xip/l:und","<>:xip/const:CONJ#437-440$<i>60",">:xip/d:COORD$<i>58"],["s:Wärmeleitfähigkeit\"","i:wärmeleitfähigkeit\"","_60#441-460","opennlp/p:NN"],["s:Solche","i:solche","_61#462-468","<>:s#462-610$<i>78","opennlp/p:PIAT","cnx/l:solcher","cnx/p:PRON","cnx/syn:@PREMOD","tt/l:solche","tt/p:PIAT","mate/l:solcher","mate/p:PIAT","mate/m:case:acc","mate/m:number:pl","mate/m:gender:fem",">:mate/d:NK$<i>62","xip/p:ADJ","xip/l:solch","<>:xip/const:TOP#462-610$<i>78","<>:xip/const:MC#462-610$<i>78<b>1","<>:xip/const:NP#462-492$<i>63<b>2","<>:xip/const:NPA#462-492$<i>63<b>3","<>:xip/const:AP#462-468$<i>62<b>4","<>:xip/const:ADJ#462-468$<i>62",">:xip/d:NMOD$<i>62"],["s:Buchstabenbezeichnungen","i:buchstabenbezeichnungen","_62#469-492","opennlp/p:NN","cnx/l:buchstabe","cnx/l:bezeichnung","cnx/p:N","cnx/m:PL","cnx/syn:@NH","<>:cnx/const:np#469-492$<i>63","tt/p:NN","mate/l:buchstabenbezeichnung","mate/p:NN","mate/m:case:acc","mate/m:number:pl","mate/m:gender:fem","<:mate/d:NK$<i>61",">:mate/d:SB$<i>63","xip/p:NOUN","xip/l:Buchstabe","xip/l:Bezeichnung","xip/l:Buchstabebezeichnung","<>:xip/const:NOUN#469-492$<i>63","<:xip/d:NMOD$<i>61",">:xip/d:OBJ$<i>63"],["s:verwendet","i:verwendet","_63#493-502","opennlp/p:VVFIN","cnx/l:verwenden","cnx/p:V","cnx/m:IND","cnx/m:PRES","cnx/syn:@MAIN","tt/l:verwenden","tt/p:VVPP","mate/l:verwenden","mate/p:VVFIN","mate/m:number:sg","mate/m:person:3","mate/m:tense:pres","mate/m:mood:ind","<:mate/d:SB$<i>62","<:mate/d:SB$<i>64","<:mate/d:MO$<i>65","xip/p:VERB","xip/l:verwenden","<>:xip/const:VERB#493-502$<i>64","<:xip/d:OBJ$<i>62","xip/d:VMAIN","<:xip/d:SUBJ$<i>64"],["s:man","i:man","_64#503-506","opennlp/p:PIS","cnx/l:man","cnx/p:PRON","cnx/syn:@NH","tt/l:man","tt/p:PIS","mate/l:man","mate/p:PIS","mate/m:case:nom","mate/m:number:sg","mate/m:gender:*",">:mate/d:SB$<i>63","xip/p:PRON","xip/l:man","<>:xip/const:NP#503-506$<i>65<b>2","<>:xip/const:PRON#503-506$<i>65",">:xip/d:SUBJ$<i>63"],["s:wegen","i:wegen","_65#507-512","opennlp/p:APPR","cnx/l:wegen","cnx/p:PREP","cnx/syn:@PREMARK","tt/l:wegen","tt/p:APPR","mate/l:wegen","mate/p:APPR",">:mate/d:MO$<i>63","<:mate/d:NK$<i>68","xip/p:PREP","xip/l:wegen","<>:xip/const:PP#507-536$<i>69<b>2","<>:xip/const:PREP#507-512$<i>66"],["s:der","i:der","_66#513-516","opennlp/p:ART","cnx/l:die","cnx/p:DET","cnx/syn:@PREMOD","tt/l:die","tt/p:ART","mate/l:der","mate/p:ART","mate/m:case:*","mate/m:number:sg","mate/m:gender:fem",">:mate/d:NK$<i>68","xip/p:DET","xip/l:der","<>:xip/const:NP#513-536$<i>69<b>3","<>:xip/const:DET#513-516$<i>67",">:xip/d:DETERM$<i>68"],["s:kurzen","i:kurzen","_67#517-523","opennlp/p:ADJA","cnx/l:kurz","cnx/p:A","cnx/syn:@PREMOD","<>:cnx/const:np#517-536$<i>69","tt/l:kurz","tt/p:ADJA","mate/l:kurz","mate/p:ADJA","mate/m:case:*","mate/m:number:sg","mate/m:gender:fem","mate/m:degree:pos",">:mate/d:NK$<i>68","xip/p:ADJ","xip/l:kurz","<>:xip/const:NPA#517-536$<i>69<b>4","<>:xip/const:AP#517-523$<i>68<b>5","<>:xip/const:ADJ#517-523$<i>68",">:xip/d:NMOD$<i>68"],["s:Schreibweise","i:schreibweise","_68#524-536","opennlp/p:NN","cnx/l:schreib","cnx/l:weise","cnx/p:N","cnx/syn:@NH","tt/l:Schreibweise","tt/p:NN","mate/l:schreibweise","mate/p:NN","mate/m:case:*","mate/m:number:sg","mate/m:gender:fem","<:mate/d:NK$<i>66","<:mate/d:NK$<i>67",">:mate/d:NK$<i>65","<:mate/d:MNR$<i>69","<:mate/d:RC$<i>77","xip/p:NOUN","xip/l:Schreibweise","<>:xip/const:NOUN#524-536$<i>69","<:xip/d:DETERM$<i>66","<:xip/d:NMOD$<i>67"],["s:zur","i:zur","_69#537-540","opennlp/p:APPRART","tt/l:zur","tt/p:APPRART","mate/l:zu","mate/p:APPRART","mate/m:case:dat","mate/m:number:sg","mate/m:gender:fem",">:mate/d:MNR$<i>68","<:mate/d:NK$<i>70","xip/p:PREP","xip/l:zu","<>:xip/const:PP#537-558$<i>71<b>2","<>:xip/const:PREP#537-540$<i>70"],["s:Charakterisierung","i:charakterisierung","_70#541-558","opennlp/p:NN","cnx/l:charakterisierung","cnx/p:N","cnx/syn:@NH","<>:cnx/const:np#541-558$<i>71","tt/l:Charakterisierung","tt/p:NN","mate/l:charakterisierung","mate/p:NN","mate/m:case:dat","mate/m:number:sg","mate/m:gender:fem",">:mate/d:NK$<i>69","<:mate/d:AG$<i>72","xip/p:NOUN","xip/l:Charakterisierung","<>:xip/const:NP#541-558$<i>71<b>3","<>:xip/const:NPA#541-558$<i>71<b>4","<>:xip/const:NOUN#541-558$<i>71","<:xip/d:NMOD$<i>72"],["s:eines","i:eines","_71#559-564","opennlp/p:ART","cnx/l:ein","cnx/p:DET","cnx/syn:@PREMOD","tt/l:eine","tt/p:ART","mate/l:ein","mate/p:ART","mate/m:case:gen","mate/m:number:sg","mate/m:gender:neut",">:mate/d:NK$<i>72","xip/p:DET","xip/l:ein","<>:xip/const:NP#559-574$<i>73<b>2","<>:xip/const:DET#559-564$<i>72",">:xip/d:DETERM$<i>72"],["s:Schlusses","i:schlusses","_72#565-574","opennlp/p:NN","cnx/l:schluss","cnx/p:N","cnx/syn:@NH","<>:cnx/const:np#565-574$<i>73","tt/l:Schluss","tt/p:NN","mate/l:schluß","mate/p:NN","mate/m:case:gen","mate/m:number:sg","mate/m:gender:neut","<:mate/d:NK$<i>71",">:mate/d:AG$<i>70","xip/p:NOUN","xip/l:Schluss","<>:xip/const:NPA#565-574$<i>73<b>3","<>:xip/const:NOUN#565-574$<i>73","<:xip/d:DETERM$<i>71",">:xip/d:NMOD$<i>70"],["s:der","i:der","_73#576-579","opennlp/p:PRELS","cnx/l:der","cnx/p:PRON","cnx/syn:@NH","tt/l:die","tt/p:PRELS","tt/l:die","tt/p:ART","mate/l:der","mate/p:PRELS","mate/m:case:nom","mate/m:number:sg","mate/m:gender:masc",">:mate/d:SB$<i>77","xip/p:PRON","xip/l:der","<>:xip/const:SC#576-609$<i>78","<>:xip/const:NP#576-579$<i>74<b>1","<>:xip/const:PRON#576-579$<i>74",">:xip/d:SUBJ$<i>77"],["s:aus","i:aus","_74#580-583","opennlp/p:APPR","cnx/l:aus","cnx/p:PREP","cnx/syn:@PREMARK","tt/l:aus","tt/p:APPR","mate/l:aus","mate/p:APPR",">:mate/d:OP$<i>77","<:mate/d:NK$<i>76","xip/p:PREP","xip/l:aus","<>:xip/const:PP#580-601$<i>77<b>1","<>:xip/const:PREP#580-583$<i>75","<:xip/d:PLINK$<i>76"],["s:mehreren","i:mehreren","_75#584-592","opennlp/p:PIAT","cnx/l:mehrere","cnx/p:PRON","cnx/syn:@PREMOD","tt/l:mehrere","tt/p:PIAT","mate/l:mehrere","mate/p:PIAT","mate/m:case:dat","mate/m:number:pl","mate/m:gender:masc",">:mate/d:NK$<i>76","xip/p:ADJ","xip/l:mehrere","<>:xip/const:NP#584-601$<i>77<b>2","<>:xip/const:NPA#584-601$<i>77<b>3","<>:xip/const:AP#584-592$<i>76<b>4","<>:xip/const:ADJ#584-592$<i>76",">:xip/d:NMOD$<i>76"],["s:Urteilen","i:urteilen","_76#593-601","opennlp/p:NN","cnx/l:urteil","cnx/p:N","cnx/m:PL","cnx/syn:@NH","<>:cnx/const:np#593-601$<i>77","tt/l:Urteil","tt/p:NN","mate/l:urteil","mate/p:NN","mate/m:case:dat","mate/m:number:pl","mate/m:gender:masc","<:mate/d:NK$<i>75",">:mate/d:NK$<i>74","xip/p:NOUN","xip/l:urteilen","<>:xip/const:NOUN#593-601$<i>77","<:xip/d:NMOD$<i>75",">:xip/d:OBJ$<i>77",">:xip/d:PLINK$<i>74"],["s:besteht","i:besteht","_77#602-609","opennlp/p:VVFIN","cnx/l:bestehen","cnx/p:V","cnx/m:IND","cnx/m:PRES","cnx/syn:@MAIN","tt/l:bestehen","tt/p:VVFIN","mate/l:bestehen","mate/p:VVFIN","mate/m:number:sg","mate/m:person:3","mate/m:tense:pres","mate/m:mood:ind","<:mate/d:SB$<i>73","<:mate/d:OP$<i>74",">:mate/d:RC$<i>68","xip/p:VERB","xip/l:bestehen","<>:xip/const:VERB#602-609$<i>78","<:xip/d:SUBJ$<i>73","<:xip/d:OBJ$<i>76","xip/d:VMAIN"],["s:Beispiel","i:beispiel","_78#611-619","<>:s#611-879$<i>109","<>:p#611-620$<i>79","opennlp/p:NN","cnx/l:beispiel","cnx/p:N","cnx/syn:@NH","<>:cnx/const:np#611-619$<i>79","tt/l:Beispiel","tt/p:NN","mate/l:beispiel","mate/p:NN","mate/m:case:nom","mate/m:number:sg","mate/m:gender:neut","xip/p:NOUN","xip/l:Beispiel","<>:xip/const:TOP#611-620$<i>79","<>:xip/const:NP#611-619$<i>79<b>1","<>:xip/const:NPA#611-619$<i>79<b>2","<>:xip/const:NOUN#611-619$<i>79","xip/d:THEMA"],["s:Der","i:der","_79#621-624","<>:p#621-632$<i>81","opennlp/p:ART","cnx/l:der","cnx/p:DET","cnx/syn:@PREMOD","tt/l:die","tt/p:ART","mate/l:der","mate/p:ART","mate/m:case:nom","mate/m:number:sg","mate/m:gender:masc",">:mate/d:NK$<i>80","xip/p:DET","xip/l:der","<>:xip/const:DET#621-624$<i>80","<>:xip/const:TOP#621-879$<i>109","<>:xip/const:MC#621-719$<i>90<b>1","<>:xip/const:NP#621-632$<i>81<b>2",">:xip/d:DETERM$<i>80"],["s:Schluss","i:schluss","_80#625-632","opennlp/p:NN","cnx/l:schluss","cnx/p:N","cnx/syn:@NH","<>:cnx/const:np#625-632$<i>81","tt/l:Schluß","tt/p:NN","mate/l:schluss","mate/p:NN","mate/m:case:nom","mate/m:number:sg","mate/m:gender:masc","<:mate/d:NK$<i>79","xip/p:NOUN","xip/l:Schluss","<>:xip/const:NOUN#625-632$<i>81","<>:xip/const:NPA#625-632$<i>81<b>3","<:xip/d:DETERM$<i>79",">:xip/d:PRED$<i>84"],["s:A","i:a","_81#634-635","opennlp/p:NE","tt/l:A","tt/p:FM","tt/l:A","tt/p:NN","mate/p:XY","mate/m:case:nom","mate/m:number:sg","mate/m:gender:*","xip/p:SYMBOL","xip/l:A","<>:xip/const:SYMBOL#634-635$<i>82","<>:xip/const:INS#633-636$<i>82<b>2","<>:xip/const:NP#634-635$<i>82<b>3","<>:xip/const:NPA#634-635$<i>82<b>4","<>:xip/const:NOUN#634-635$<i>82<b>5"],["s:\"Alle","i:\"alle","_82#637-642","opennlp/p:ADJA"],["s:Elementarteilchen","i:elementarteilchen","_83#643-660","opennlp/p:NN","cnx/l:elementarteilchen","cnx/p:N","cnx/syn:@NH","<>:cnx/const:np#643-660$<i>84","tt/l:Elementarteilchen","tt/p:NN","mate/l:elementarteilchen","mate/p:NN","mate/m:case:acc","mate/m:number:pl","mate/m:gender:fem",">:mate/d:SB$<i>84","xip/p:NOUN","xip/l:elementar","xip/l:Teilchen","xip/l:Elementarteilchen","<>:xip/const:NOUN#643-660$<i>84",">:xip/d:SUBJ$<i>84"],["s:sind","i:sind","_84#661-665","opennlp/p:VAFIN","cnx/l:sein","cnx/p:V","cnx/m:IND","cnx/m:PRES","cnx/syn:@MAIN","tt/l:sein","tt/p:VAFIN","mate/l:sein","mate/p:VAFIN","mate/m:number:pl","mate/m:person:3","mate/m:tense:pres","mate/m:mood:ind","<:mate/d:SB$<i>83","<:mate/d:MO$<i>85","xip/p:VERB","xip/l:sein","<>:xip/const:VERB#661-665$<i>85","<:xip/d:PRED$<i>80","<:xip/d:SUBJ$<i>83","xip/d:VMAIN"],["s:gegenwärtig","i:gegenwärtig","_85#666-677","opennlp/p:ADJD","cnx/l:gegenwärtig","cnx/p:A","cnx/syn:@PREMOD","tt/l:gegenwärtig","tt/p:ADJD","mate/l:gegenwärtig","mate/p:ADJD","mate/m:degree:pos",">:mate/d:MO$<i>84","xip/p:ADJ","xip/l:gegenwärtig","<>:xip/const:ADJ#666-677$<i>86","<>:xip/const:AP#666-701$<i>88",">:xip/d:ADJMOD$<i>86"],["s:unzerlegbar","i:unzerlegbar","_86#678-689","opennlp/p:ADJD","cnx/l:unzerlegbar","cnx/p:A","cnx/syn:@PREMOD","tt/p:ADJD","mate/l:unzerlegbar","mate/p:ADJD","mate/m:degree:pos",">:mate/d:MO$<i>87","xip/p:ADJ","xip/l:unzerlegbar","<>:xip/const:ADJ#678-689$<i>87","<:xip/d:ADJMOD$<i>85",">:xip/d:ADJMOD$<i>87"],["s:angenommene","i:angenommene","_87#690-701","opennlp/p:ADJA","cnx/l:angenommen","cnx/p:A","cnx/syn:@PREMOD","tt/l:angenommen","tt/p:ADJA","mate/l:angenommen","mate/p:ADJA","mate/m:case:nom","mate/m:number:pl","mate/m:gender:masc","mate/m:degree:pos","<:mate/d:MO$<i>86","xip/p:ADJ","xip/l:annehmen","<>:xip/const:ADJ#690-701$<i>88","<:xip/d:ADJMOD$<i>86"],["s:Mikroobjekte\"","i:mikroobjekte\"","_88#702-715","opennlp/p:NN"],["s:A","i:a","_89#717-718","opennlp/p:NE","tt/l:A","tt/p:FM","tt/l:A","tt/p:NN","mate/p:XY","mate/m:case:nom","mate/m:number:sg","mate/m:gender:*","xip/p:SYMBOL","xip/l:A","<>:xip/const:SYMBOL#717-718$<i>90"],["s:\"Alle","i:\"alle","_90#720-725","opennlp/p:NN","<>:xip/const:MC#720-762$<i>95<b>1"],["s:Photonen","i:photonen","_91#726-734","opennlp/p:NN","cnx/l:photon","cnx/p:N","cnx/m:PL","cnx/syn:@NH","<>:cnx/const:np#726-734$<i>92","tt/l:Photon","tt/p:NN","mate/l:photone","mate/p:NN","mate/m:case:acc","mate/m:number:pl","mate/m:gender:fem",">:mate/d:PD$<i>92","xip/p:NOUN","xip/l:Photon","<>:xip/const:NOUN#726-734$<i>92",">:xip/d:SUBJ$<i>92"],["s:sind","i:sind","_92#735-739","opennlp/p:VAFIN","cnx/l:sein","cnx/p:V","cnx/m:IND","cnx/m:PRES","cnx/syn:@MAIN","tt/l:sein","tt/p:VAFIN","mate/l:sein","mate/p:VAFIN","mate/m:number:pl","mate/m:person:3","mate/m:tense:pres","mate/m:mood:ind","<:mate/d:PD$<i>91","<:mate/d:PD$<i>93","xip/p:VERB","xip/l:sein","<>:xip/const:VERB#735-739$<i>93","<:xip/d:SUBJ$<i>91","xip/d:VMAIN","<:xip/d:PRED$<i>93"],["s:Elementarteilchen","i:elementarteilchen","_93#740-757","opennlp/p:NN","cnx/l:elementarteilchen","cnx/p:N","cnx/syn:@NH","<>:cnx/const:np#740-757$<i>94","tt/l:Elementarteilchen","tt/p:NN","mate/l:elementarteilchen","mate/p:NN","mate/m:case:nom","mate/m:number:pl","mate/m:gender:fem",">:mate/d:PD$<i>92","xip/p:NOUN","xip/l:elementar","xip/l:Teilchen","xip/l:Elementarteilchen","<>:xip/const:NOUN#740-757$<i>94",">:xip/d:PRED$<i>92"],["s:A","i:a","_94#760-761","opennlp/p:NE","tt/l:A","tt/p:FM","tt/l:A","tt/p:NN","mate/p:XY","mate/m:case:nom","mate/m:number:sg","mate/m:gender:*","xip/p:SYMBOL","xip/l:A","<>:xip/const:SYMBOL#760-761$<i>95"],["s:\"Alle","i:\"alle","_95#763-768","opennlp/p:NN"],["s:Photonen","i:photonen","_96#769-777","opennlp/p:NN","cnx/l:photon","cnx/p:N","cnx/m:PL","cnx/syn:@NH","<>:cnx/const:np#769-777$<i>97","tt/l:Photon","tt/p:NN","mate/l:photone","mate/p:NN","mate/m:case:acc","mate/m:number:pl","mate/m:gender:fem",">:mate/d:SB$<i>97","xip/p:NOUN","xip/l:Photon","<>:xip/const:NOUN#769-777$<i>97","<>:xip/const:NP#769-777$<i>97","<>:xip/const:NPA#769-777$<i>97<b>1",">:xip/d:SUBJ$<i>97"],["s:sind","i:sind","_97#778-782","opennlp/p:VAFIN","cnx/l:sein","cnx/p:V","cnx/m:IND","cnx/m:PRES","cnx/syn:@MAIN","tt/l:sein","tt/p:VAFIN","mate/l:sein","mate/p:VAFIN","mate/m:number:pl","mate/m:person:3","mate/m:tense:pres","mate/m:mood:ind","<:mate/d:SB$<i>96","<:mate/d:MO$<i>98","xip/p:VERB","xip/l:sein","<>:xip/const:VERB#778-782$<i>98","<:xip/d:SUBJ$<i>96","xip/d:VMAIN"],["s:gegenwärtig","i:gegenwärtig","_98#783-794","opennlp/p:ADJD","cnx/l:gegenwärtig","cnx/p:A","cnx/syn:@PREMOD","tt/l:gegenwärtig","tt/p:ADJD","mate/l:gegenwärtig","mate/p:ADJD","mate/m:degree:pos",">:mate/d:MO$<i>97","xip/p:ADJ","xip/l:gegenwärtig","<>:xip/const:AP#783-818$<i>101","<>:xip/const:ADJ#783-794$<i>99",">:xip/d:ADJMOD$<i>99"],["s:unzerlegbar","i:unzerlegbar","_99#795-806","opennlp/p:ADJD","cnx/l:unzerlegbar","cnx/p:A","cnx/syn:@PREMOD","tt/p:ADJD","mate/l:unzerlegbar","mate/p:ADJD","mate/m:degree:pos",">:mate/d:MO$<i>100","xip/p:ADJ","xip/l:unzerlegbar","<>:xip/const:ADJ#795-806$<i>100","<:xip/d:ADJMOD$<i>98",">:xip/d:ADJMOD$<i>100"],["s:angenommene","i:angenommene","_100#807-818","opennlp/p:ADJA","cnx/l:angenommen","cnx/p:A","cnx/syn:@PREMOD","tt/l:angenommen","tt/p:ADJA","mate/l:angenommen","mate/p:ADJA","mate/m:case:nom","mate/m:number:pl","mate/m:gender:masc","mate/m:degree:pos","<:mate/d:MO$<i>99","xip/p:ADJ","xip/l:annehmen","<>:xip/const:ADJ#807-818$<i>101","<:xip/d:ADJMOD$<i>99"],["s:Mikroobjekte\"","i:mikroobjekte\"","_101#819-832","opennlp/p:NN"],["s:wird","i:wird","_102#833-837","<>:p#833-1130$<i>145","opennlp/p:VAFIN","cnx/l:werden","cnx/p:V","cnx/m:IND","cnx/m:PRES","cnx/syn:@MAIN","tt/l:werden","tt/p:VAFIN","mate/l:werden","mate/p:VAFIN","mate/m:number:sg","mate/m:person:3","mate/m:tense:pres","mate/m:mood:ind","<:mate/d:OC$<i>108","xip/p:VERB","xip/l:werden","<>:xip/const:VERB#833-837$<i>103","<:xip/d:AUXIL$<i>108"],["s:durch","i:durch","_103#838-843","opennlp/p:APPR","cnx/l:durch","cnx/p:PREP","cnx/syn:@PREMARK","tt/l:durch","tt/p:APPR","mate/l:durch","mate/p:APPR",">:mate/d:MO$<i>108","<:mate/d:NK$<i>106","xip/p:PREP","xip/l:durch","<>:xip/const:PREP#838-843$<i>104","<>:xip/const:PP#838-863$<i>107"],["s:die","i:die","_104#844-847","opennlp/p:ART","cnx/l:die","cnx/p:PRON","cnx/syn:@NH","tt/l:die","tt/p:ART","mate/l:der","mate/p:ART","mate/m:case:acc","mate/m:number:pl","mate/m:gender:masc",">:mate/d:NK$<i>106","xip/p:DET","xip/l:die","<>:xip/const:NP#844-863$<i>107<b>1","<>:xip/const:DET#844-847$<i>105",">:xip/d:DETERM$<i>106"],["s:drei","i:drei","_105#848-852","opennlp/p:CARD","cnx/l:drei","cnx/p:NUM","cnx/syn:@PREMOD","tt/l:drei","tt/p:CARD","mate/l:drei","mate/p:CARD",">:mate/d:NK$<i>106","xip/p:NUM","xip/l:drei","<>:xip/const:NPA#848-863$<i>107<b>2","<>:xip/const:NUM#848-852$<i>106<b>3","<>:xip/const:NUM#848-852$<i>106",">:xip/d:NMOD$<i>106"],["s:Buchstaben","i:buchstaben","_106#853-863","opennlp/p:NN","cnx/l:buchstabe","cnx/p:N","cnx/m:PL","cnx/syn:@NH","<>:cnx/const:np#853-863$<i>107","tt/l:Buchstabe","tt/p:NN","mate/l:buchstabe","mate/p:NN","mate/m:case:acc","mate/m:number:pl","mate/m:gender:masc","<:mate/d:NK$<i>104","<:mate/d:NK$<i>105",">:mate/d:NK$<i>103","<:mate/d:NK$<i>107","xip/p:NOUN","xip/l:Buchstabe","<>:xip/const:NOUN#853-863$<i>107","<:xip/d:DETERM$<i>104","<:xip/d:NMOD$<i>105","<:xip/d:NMOD$<i>107"],["s:AAA","i:aaa","_107#864-867","opennlp/p:NN","corenlp/ne_hgc_175m_600:I-ORG","cnx/l:AAA","cnx/p:N","cnx/syn:@NH","<>:cnx/const:np#864-867$<i>108","tt/l:aaa","tt/p:NE","tt/p:NN","mate/l:aaa","mate/p:NE","mate/m:case:nom","mate/m:number:sg","mate/m:gender:*",">:mate/d:NK$<i>106","xip/p:NOUN","xip/l:AAA","<>:xip/const:NOUN#864-867$<i>108","<>:xip/const:NP#864-867$<i>108","<>:xip/const:NPA#864-867$<i>108<b>1",">:xip/d:NMOD$<i>106"],["s:bezeichnet","i:bezeichnet","_108#868-878","opennlp/p:VVPP","cnx/l:bezeichnen","cnx/p:V","cnx/m:PCP","cnx/m:PERF","cnx/syn:@MAIN","tt/l:bezeichnen","tt/p:VVPP","tt/l:bezeichnen","tt/p:VVFIN","mate/l:bezeichnen","mate/p:VVPP","<:mate/d:MO$<i>103",">:mate/d:OC$<i>102","xip/p:VERB","xip/l:bezeichnen","<>:xip/const:VERB#868-878$<i>109",">:xip/d:AUXIL$<i>102","xip/d:VMAIN"],["s:Das","i:das","_109#880-883","<>:s#880-984$<i>124","opennlp/p:PDS","cnx/l:das","cnx/p:PRON","cnx/syn:@NH","tt/l:die","tt/p:PDS","mate/l:der","mate/p:PDS","mate/m:case:nom","mate/m:number:sg","mate/m:gender:neut",">:mate/d:SB$<i>110","xip/p:PRON","xip/l:das","<>:xip/const:TOP#880-984$<i>124","<>:xip/const:INS#880-893$<i>111<b>1","<>:xip/const:SC#880-892$<i>111<b>2","<>:xip/const:NP#880-883$<i>110<b>3","<>:xip/const:PRON#880-883$<i>110",">:xip/d:SUBJ$<i>110"],["s:bedeutet","i:bedeutet","_110#884-892","opennlp/p:VVFIN","cnx/l:bedeuten","cnx/p:V","cnx/m:IND","cnx/m:PRES","cnx/syn:@MAIN","tt/l:bedeuten","tt/p:VVFIN","tt/l:bedeuten","tt/p:VVPP","mate/l:bedeuten","mate/p:VVFIN","mate/m:number:sg","mate/m:person:3","mate/m:tense:pres","mate/m:mood:ind","<:mate/d:SB$<i>109","<:mate/d:OC$<i>123","xip/p:VERB","xip/l:bedeuten","<>:xip/const:VERB#884-892$<i>111","<:xip/d:SUBJ$<i>109","xip/d:VMAIN"],["s:dass","i:dass","_111#894-898","opennlp/p:KOUS","cnx/l:dass","cnx/p:CS","cnx/syn:@PREMARK","tt/l:dass","tt/p:KOUS","mate/l:dass","mate/p:KOUS",">:mate/d:CP$<i>123","xip/p:CONJ","xip/l:dass","<>:xip/const:CONJ#894-898$<i>112"],["s:alle","i:alle","_112#899-903","opennlp/p:PIAT","cnx/l:alle","cnx/p:PRON","cnx/syn:@PREMOD","tt/l:alle","tt/p:PIAT","mate/l:aller","mate/p:PIAT","mate/m:case:acc","mate/m:number:pl","mate/m:gender:neut",">:mate/d:NK$<i>113","xip/p:DET","xip/l:alle","<>:xip/const:MC#899-983$<i>124<b>1","<>:xip/const:NP#899-911$<i>114<b>2","<>:xip/const:DET#899-903$<i>113",">:xip/d:DETERM$<i>113"],["s:Urteile","i:urteile","_113#904-911","opennlp/p:NN","cnx/l:urteil","cnx/p:N","cnx/m:PL","cnx/syn:@NH","<>:cnx/const:np#904-911$<i>114","tt/l:Urteil","tt/p:NN","mate/l:urteil","mate/p:NN","mate/m:case:acc","mate/m:number:pl","mate/m:gender:neut","<:mate/d:NK$<i>112",">:mate/d:DA$<i>121","<:mate/d:RC$<i>119","xip/p:NOUN","xip/l:Urteil","<>:xip/const:NPA#904-911$<i>114<b>3","<>:xip/const:NOUN#904-911$<i>114","<:xip/d:DETERM$<i>112",">:xip/d:SUBJ$<i>123"],["s:die","i:die","_114#913-916","opennlp/p:PRELS","cnx/l:die","cnx/p:PRON","cnx/syn:@NH","tt/l:die","tt/p:PRELS","mate/l:der","mate/p:PRELS","mate/m:case:nom","mate/m:number:pl","mate/m:gender:neut",">:mate/d:SB$<i>119","xip/p:PRON","xip/l:die","<>:xip/const:PRON#913-916$<i>115","<>:xip/const:SC#913-949$<i>120","<>:xip/const:NP#913-916$<i>115<b>1",">:xip/d:SUBJ$<i>118"],["s:in","i:in","_115#917-919","opennlp/p:APPR","cnx/l:in","cnx/p:PREP","cnx/syn:@PREMARK","tt/l:in","tt/p:APPR","mate/l:in","mate/p:APPR",">:mate/d:MO$<i>118","<:mate/d:NK$<i>117","xip/p:PREP","xip/l:in","<>:xip/const:PREP#917-919$<i>116","<>:xip/const:PP#917-934$<i>118<b>1"],["s:diesem","i:diesem","_116#920-926","opennlp/p:PDAT","cnx/l:dieser","cnx/p:PRON","cnx/syn:@PREMOD","tt/l:diese","tt/p:PDAT","mate/l:dieser","mate/p:PDAT","mate/m:case:dat","mate/m:number:sg","mate/m:gender:neut",">:mate/d:NK$<i>117","xip/p:DET","xip/l:dies","<>:xip/const:NP#920-934$<i>118<b>2","<>:xip/const:DET#920-926$<i>117",">:xip/d:DETERM$<i>117"],["s:Schluss","i:schluss","_117#927-934","opennlp/p:NN","cnx/l:schluss","cnx/p:N","cnx/syn:@NH","<>:cnx/const:np#927-934$<i>118","tt/l:Schluß","tt/p:NN","mate/l:schluss","mate/p:NN","mate/m:case:dat","mate/m:number:sg","mate/m:gender:neut","<:mate/d:NK$<i>116",">:mate/d:NK$<i>115","xip/p:NOUN","xip/l:Schluss","<>:xip/const:NOUN#927-934$<i>118","<>:xip/const:NPA#927-934$<i>118<b>3","<:xip/d:DETERM$<i>116"],["s:enthalten","i:enthalten","_118#935-944","opennlp/p:ADJD","cnx/l:enthalten","cnx/p:V","cnx/m:PCP","cnx/m:PERF","cnx/syn:@MAIN","tt/l:enthalten","tt/p:VVPP","mate/l:enthalten","mate/p:VVPP","<:mate/d:MO$<i>115",">:mate/d:PD$<i>119","xip/p:VERB","xip/l:enthalten","<>:xip/const:VERB#935-944$<i>119","<:xip/d:SUBJ$<i>114",">:xip/d:AUXIL$<i>119","xip/d:VMAIN"],["s:sind","i:sind","_119#945-949","opennlp/p:VAFIN","cnx/l:sein","cnx/p:V","cnx/m:IND","cnx/m:PRES","cnx/syn:@AUX","tt/l:sein","tt/p:VAFIN","mate/l:sein","mate/p:VAFIN","mate/m:number:pl","mate/m:person:3","mate/m:tense:pres","mate/m:mood:ind","<:mate/d:SB$<i>114","<:mate/d:PD$<i>118",">:mate/d:RC$<i>113","xip/p:VERB","xip/l:sein","<>:xip/const:VERB#945-949$<i>120","<:xip/d:AUXIL$<i>118"],["s:allgemein","i:allgemein","_120#951-960","opennlp/p:ADJD","cnx/l:all","cnx/l:gemein","cnx/p:A","cnx/syn:@PREMOD","<>:cnx/const:np#951-978$<i>123","tt/l:allgemein","tt/p:ADJD","mate/l:allgemein","mate/p:ADJD","mate/m:degree:pos",">:mate/d:MO$<i>121","xip/p:ADJ","xip/l:allgemein","<>:xip/const:ADJ#951-960$<i>121",">:xip/d:ADJMOD$<i>121"],["s:bejahende","i:bejahende","_121#961-970","opennlp/p:ADJA","cnx/l:bejahend","cnx/p:A","cnx/syn:@PREMOD","tt/l:bejahend","tt/p:ADJA","mate/l:bejahend","mate/p:ADJA","mate/m:case:acc","mate/m:number:pl","mate/m:gender:neut","mate/m:degree:pos","<:mate/d:DA$<i>113","<:mate/d:MO$<i>120",">:mate/d:MO$<i>123","xip/p:ADJ","xip/l:bejahen","<>:xip/const:ADJ#961-970$<i>122","<:xip/d:ADJMOD$<i>120",">:xip/d:NMOD$<i>122"],["s:Urteile","i:urteile","_122#971-978","opennlp/p:NN","cnx/l:urteil","cnx/p:N","cnx/m:PL","cnx/syn:@NH","tt/l:Urteil","tt/p:NN","mate/l:urteil","mate/p:NN","mate/m:case:acc","mate/m:number:pl","mate/m:gender:neut",">:mate/d:PD$<i>123","xip/p:NOUN","xip/l:Urteil","<>:xip/const:NOUN#971-978$<i>123","<:xip/d:NMOD$<i>121",">:xip/d:PRED$<i>123"],["s:sind","i:sind","_123#979-983","opennlp/p:VAFIN","cnx/l:sein","cnx/p:V","cnx/m:IND","cnx/m:PRES","cnx/syn:@MAIN","tt/l:sein","tt/p:VAFIN","mate/l:sein","mate/p:VAFIN","mate/m:number:pl","mate/m:person:3","mate/m:tense:pres","mate/m:mood:ind","<:mate/d:CP$<i>111","<:mate/d:MO$<i>121","<:mate/d:PD$<i>122",">:mate/d:OC$<i>110","xip/p:VERB","xip/l:sein","<>:xip/const:VERB#979-983$<i>124","<:xip/d:SUBJ$<i>113","<:xip/d:PRED$<i>122","xip/d:VMAIN"],["s:In","i:in","_124#985-987","<>:s#985-1130$<i>145","opennlp/p:APPR","cnx/l:in","cnx/p:PREP","cnx/syn:@PREMARK","tt/l:in","tt/p:APPR","mate/l:in","mate/p:APPR",">:mate/d:MO$<i>138","<:mate/d:NK$<i>126","xip/p:PREP","xip/l:in","<>:xip/const:PREP#985-987$<i>125","<>:xip/const:TOP#985-1130$<i>145","<>:xip/const:MC#985-1119$<i>144<b>1","<>:xip/const:PP#985-1003$<i>127<b>2"],["s:der","i:der","_125#988-991","opennlp/p:ART","cnx/l:der","cnx/p:DET","cnx/syn:@PREMOD","tt/l:die","tt/p:ART","mate/l:der","mate/p:ART","mate/m:case:dat","mate/m:number:sg","mate/m:gender:fem",">:mate/d:NK$<i>126","xip/p:DET","xip/l:der","<>:xip/const:DET#988-991$<i>126","<>:xip/const:NP#988-1003$<i>127<b>3",">:xip/d:DETERM$<i>126"],["s:Syllogistik","i:syllogistik","_126#992-1003","opennlp/p:NN","cnx/l:syllogistik","cnx/p:N","cnx/syn:@NH","<>:cnx/const:np#992-1003$<i>127","tt/p:NE","tt/p:NN","mate/l:syllogistik","mate/p:NN","mate/m:case:dat","mate/m:number:sg","mate/m:gender:fem","<:mate/d:NK$<i>125",">:mate/d:NK$<i>124","xip/p:NOUN","xip/l:Syllogistik","<>:xip/const:NOUN#992-1003$<i>127","<>:xip/const:NPA#992-1003$<i>127<b>4","<:xip/d:DETERM$<i>125"],["s:wird","i:wird","_127#1004-1008","opennlp/p:VAFIN","cnx/l:werden","cnx/p:V","cnx/m:IND","cnx/m:PRES","cnx/syn:@MAIN","tt/l:werden","tt/p:VAFIN","mate/l:werden","mate/p:VAFIN","mate/m:number:sg","mate/m:person:3","mate/m:tense:pres","mate/m:mood:ind","<:mate/d:OC$<i>138","xip/p:VERB","xip/l:werden","<>:xip/const:VERB#1004-1008$<i>128","<:xip/d:AUXIL$<i>138"],["s:mit","i:mit","_128#1009-1012","opennlp/p:APPR","cnx/l:mit","cnx/p:PREP","cnx/syn:@PREMARK","tt/l:mit","tt/p:APPR","mate/l:mit","mate/p:APPR",">:mate/d:MO$<i>138","<:mate/d:NK$<i>130","xip/p:PREP","xip/l:mit","<>:xip/const:PP#1009-1027$<i>131<b>2","<>:xip/const:PREP#1009-1012$<i>129"],["s:dem","i:dem","_129#1013-1016","opennlp/p:ART","cnx/l:der","cnx/p:DET","cnx/syn:@PREMOD","tt/l:die","tt/p:ART","mate/l:der","mate/p:ART","mate/m:case:dat","mate/m:number:sg","mate/m:gender:masc",">:mate/d:NK$<i>130","xip/p:DET","xip/l:der","<>:xip/const:DET#1013-1016$<i>130","<>:xip/const:NP#1013-1027$<i>131<b>3",">:xip/d:DETERM$<i>130"],["s:Buchstaben","i:buchstaben","_130#1017-1027","opennlp/p:NN","cnx/l:buchstabe","cnx/p:N","cnx/syn:@NH","<>:cnx/const:np#1017-1027$<i>131","tt/l:Buchstabe","tt/p:NN","mate/l:buchstabe","mate/p:NN","mate/m:case:dat","mate/m:number:sg","mate/m:gender:masc","<:mate/d:NK$<i>129",">:mate/d:NK$<i>128","<:mate/d:NK$<i>131","xip/p:NOUN","xip/l:Buchstabe","<>:xip/const:NPA#1017-1027$<i>131<b>4","<>:xip/const:NOUN#1017-1027$<i>131","<:xip/d:DETERM$<i>129"],["s:A","i:a","_131#1028-1029","opennlp/p:NE","cnx/l:a","cnx/p:PREP","cnx/syn:@PREMARK","tt/l:A","tt/p:NN","tt/l:A","tt/p:FM","mate/p:NE","mate/m:case:nom","mate/m:number:sg","mate/m:gender:*",">:mate/d:NK$<i>130","xip/p:SYMBOL","xip/l:A","<>:xip/const:SYMBOL#1028-1029$<i>132","<>:xip/const:NP#1028-1029$<i>132<b>2","<>:xip/const:NPA#1028-1029$<i>132<b>3","<>:xip/const:NOUN#1028-1029$<i>132<b>4",">:xip/d:OBJ$<i>138"],["s:die","i:die","_132#1030-1033","opennlp/p:ART","cnx/l:die","cnx/p:DET","cnx/syn:@PREMOD","tt/l:die","tt/p:ART","mate/l:der","mate/p:ART","mate/m:case:acc","mate/m:number:sg","mate/m:gender:fem",">:mate/d:NK$<i>134","xip/p:DET","xip/l:die","<>:xip/const:NP#1030-1052$<i>135<b>2","<>:xip/const:DET#1030-1033$<i>133",">:xip/d:DETERM$<i>134"],["s:logische","i:logische","_133#1034-1042","opennlp/p:ADJA","cnx/l:logisch","cnx/p:A","cnx/syn:@PREMOD","tt/l:logisch","tt/p:ADJA","mate/l:logisch","mate/p:ADJA","mate/m:case:acc","mate/m:number:sg","mate/m:gender:fem","mate/m:degree:pos",">:mate/d:NK$<i>134","xip/p:ADJ","xip/l:logisch","<>:xip/const:NPA#1034-1052$<i>135<b>3","<>:xip/const:AP#1034-1042$<i>134<b>4","<>:xip/const:ADJ#1034-1042$<i>134",">:xip/d:NMOD$<i>134"],["s:Konstante","i:konstante","_134#1043-1052","opennlp/p:NN","cnx/l:konstant","cnx/p:A","cnx/syn:@NH","tt/l:Konstante","tt/p:NN","mate/l:konstante","mate/p:NN","mate/m:case:acc","mate/m:number:sg","mate/m:gender:fem","<:mate/d:NK$<i>132","<:mate/d:NK$<i>133",">:mate/d:OA$<i>138","<:mate/d:CD$<i>135","xip/p:NOUN","xip/l:Konstante","<>:xip/const:NOUN#1043-1052$<i>135","<:xip/d:DETERM$<i>132","<:xip/d:NMOD$<i>133",">:xip/d:SUBJ$<i>138","<:xip/d:COORD$<i>135"],["s:oder","i:oder","_135#1053-1057","opennlp/p:KON","cnx/l:oder","cnx/p:CC","cnx/syn:@CC","tt/l:oder","tt/p:KON","mate/l:oder","mate/p:KON",">:mate/d:CD$<i>134","<:mate/d:CJ$<i>137","xip/p:CONJ","xip/l:oder","<>:xip/const:CONJ#1053-1057$<i>136",">:xip/d:COORD$<i>134",">:xip/d:COORD$<i>137"],["s:der","i:der","_136#1058-1061","opennlp/p:ART","cnx/l:die","cnx/p:PRON","cnx/syn:@NH","tt/l:die","tt/p:ART","mate/l:der","mate/p:ART","mate/m:case:nom","mate/m:number:sg","mate/m:gender:masc",">:mate/d:NK$<i>137","xip/p:DET","xip/l:der","<>:xip/const:DET#1058-1061$<i>137","<>:xip/const:NP#1058-1069$<i>138<b>2",">:xip/d:DETERM$<i>137"],["s:Funktor","i:funktor","_137#1062-1069","opennlp/p:NN","cnx/l:funk","cnx/l:tor","cnx/p:N","cnx/syn:@NH","<>:cnx/const:np#1062-1069$<i>138","tt/l:Funktor","tt/p:NN","mate/l:funktor","mate/p:NN","mate/m:case:nom","mate/m:number:sg","mate/m:gender:masc","<:mate/d:NK$<i>136",">:mate/d:CJ$<i>135","<:mate/d:RC$<i>144","xip/p:NOUN","xip/l:funken","xip/l:Tor","xip/l:Funkentor","<>:xip/const:NPA#1062-1069$<i>138<b>3","<>:xip/const:NOUN#1062-1069$<i>138","<:xip/d:COORD$<i>135","<:xip/d:DETERM$<i>136",">:xip/d:SUBJ$<i>138"],["s:bezeichnet","i:bezeichnet","_138#1070-1080","opennlp/p:VVFIN","cnx/l:bezeichnen","cnx/p:V","cnx/m:PCP","cnx/m:PERF","cnx/syn:@MAIN","tt/l:bezeichnen","tt/p:VVPP","tt/l:bezeichnen","tt/p:VVFIN","mate/l:bezeichnen","mate/p:VVPP","mate/m:number:sg","mate/m:person:3","mate/m:tense:pres","mate/m:mood:ind","<:mate/d:MO$<i>124","<:mate/d:MO$<i>128","<:mate/d:OA$<i>134",">:mate/d:OC$<i>127","xip/p:VERB","xip/l:bezeichnen","<>:xip/const:VERB#1070-1080$<i>139","<:xip/d:OBJ$<i>131","<:xip/d:SUBJ$<i>134","<:xip/d:SUBJ$<i>137",">:xip/d:AUXIL$<i>127","xip/d:VMAIN"],["s:der","i:der","_139#1082-1085","opennlp/p:PRELS","cnx/l:die","cnx/p:PRON","cnx/syn:@NH","tt/l:die","tt/p:PRELS","mate/l:der","mate/p:PRELS","mate/m:case:nom","mate/m:number:sg","mate/m:gender:masc",">:mate/d:SB$<i>144","xip/p:PRON","xip/l:der","<>:xip/const:SC#1082-1111$<i>144","<>:xip/const:NP#1082-1085$<i>140<b>1","<>:xip/const:PRON#1082-1085$<i>140"],["s:die","i:die","_140#1086-1089","opennlp/p:ART","cnx/l:die","cnx/p:DET","cnx/syn:@PREMOD","tt/l:die","tt/p:ART","mate/l:der","mate/p:ART","mate/m:case:acc","mate/m:number:pl","mate/m:gender:masc",">:mate/d:NK$<i>141","xip/p:DET","xip/l:die","<>:xip/const:NP#1086-1096$<i>142<b>1","<>:xip/const:DET#1086-1089$<i>141",">:xip/d:DETERM$<i>141"],["s:Wörter","i:wörter","_141#1090-1096","opennlp/p:NN","cnx/l:wort","cnx/p:N","cnx/m:PL","cnx/syn:@NH","<>:cnx/const:np#1090-1096$<i>142","tt/l:Wort","tt/p:NN","mate/l:wort","mate/p:NN","mate/m:case:acc","mate/m:number:pl","mate/m:gender:masc","<:mate/d:NK$<i>140","xip/p:NOUN","xip/l:Wort","<>:xip/const:NOUN#1090-1096$<i>142","<>:xip/const:NPA#1090-1096$<i>142<b>2","<:xip/d:DETERM$<i>140"],["s:\"jedes","i:\"jedes","_142#1097-1103","opennlp/p:NE"],["s:....ist","i:....ist","_143#1104-1111","opennlp/p:$("],["s:ausdrückt","i:ausdrückt","_144#1120-1129","opennlp/p:VVFIN","cnx/l:ausdrücken","cnx/p:V","cnx/m:IND","cnx/m:PRES","cnx/syn:@MAIN","tt/l:ausdrücken","tt/p:VVFIN","mate/l:ausdrücken","mate/p:VVFIN","mate/m:number:sg","mate/m:person:3","mate/m:tense:pres","mate/m:mood:ind","<:mate/d:SB$<i>139",">:mate/d:RC$<i>137","xip/p:VERB","xip/l:ausdrücken","<>:xip/const:MC#1120-1129$<i>145<b>1","<>:xip/const:VERB#1120-1129$<i>145","xip/d:VMAIN"],["s:Der","i:der","_145#1131-1134","<>:s#1131-1303$<i>171","<>:p#1131-1649$<i>221","opennlp/p:ART","cnx/l:die","cnx/p:DET","cnx/syn:@PREMOD","tt/l:die","tt/p:ART","mate/l:der","mate/p:ART","mate/m:case:nom","mate/m:number:sg","mate/m:gender:masc",">:mate/d:NK$<i>146","xip/p:DET","xip/l:der","<>:xip/const:DET#1131-1134$<i>146","<>:xip/const:TOP#1131-1303$<i>171","<>:xip/const:MC#1131-1303$<i>171<b>1","<>:xip/const:NP#1131-1144$<i>147<b>2",">:xip/d:DETERM$<i>146"],["s:Buchstabe","i:buchstabe","_146#1135-1144","opennlp/p:NN","cnx/l:buchstabe","cnx/p:N","cnx/syn:@NH","<>:cnx/const:np#1135-1144$<i>147","tt/l:Buchstabe","tt/p:NN","mate/l:buchstabe","mate/p:NN","mate/m:case:nom","mate/m:number:sg","mate/m:gender:masc","<:mate/d:NK$<i>145",">:mate/d:SB$<i>154","<:mate/d:MNR$<i>148","xip/p:NOUN","xip/l:Buchstabe","<>:xip/const:NPA#1135-1144$<i>147<b>3","<>:xip/const:NOUN#1135-1144$<i>147","<:xip/d:DETERM$<i>145",">:xip/d:SUBJ$<i>154"],["s:\"a\"","i:\"a\"","_147#1145-1148","opennlp/p:NE","cnx/l:a","cnx/p:PREP","cnx/syn:@PREMARK"],["s:als","i:als","_148#1149-1152","opennlp/p:APPR","cnx/l:als","cnx/p:CS","cnx/syn:@PREMARK","tt/l:als","tt/p:KOKOM","tt/l:als","tt/p:KOUS","tt/l:als","tt/p:KON","mate/l:als","mate/p:APPR",">:mate/d:MNR$<i>146","<:mate/d:NK$<i>150","xip/p:PREP","xip/l:als","<>:xip/const:PREP#1149-1152$<i>149"],["s:erster","i:erster","_149#1153-1159","opennlp/p:ADJA","cnx/l:erste","cnx/p:NUM","cnx/m:ORD","cnx/syn:@PREMOD","<>:cnx/const:np#1153-1165$<i>151","tt/l:erst","tt/p:ADJA","mate/l:erster","mate/p:ADJA","mate/m:case:nom","mate/m:number:sg","mate/m:gender:masc","mate/m:degree:pos",">:mate/d:NK$<i>150","xip/p:ADJ","xip/l:ein","<>:xip/const:ADJ#1153-1159$<i>150",">:xip/d:NMOD$<i>150"],["s:Vokal","i:vokal","_150#1160-1165","opennlp/p:NN","cnx/l:vokal","cnx/p:N","cnx/syn:@NH","tt/l:Vokal","tt/p:NN","mate/l:vokal","mate/p:NN","mate/m:case:nom","mate/m:number:sg","mate/m:gender:masc","<:mate/d:NK$<i>149",">:mate/d:NK$<i>148","<:mate/d:AG$<i>153","xip/p:NOUN","xip/l:Vokal","<>:xip/const:NOUN#1160-1165$<i>151","<:xip/d:NMOD$<i>149","<:xip/d:NMOD$<i>153"],["s:des","i:des","_151#1166-1169","opennlp/p:ART","cnx/l:der","cnx/p:DET","cnx/syn:@PREMOD","tt/l:die","tt/p:ART","mate/l:der","mate/p:ART","mate/m:case:gen","mate/m:number:sg","mate/m:gender:neut",">:mate/d:NK$<i>153","xip/p:DET","xip/l:der","<>:xip/const:DET#1166-1169$<i>152",">:xip/d:DETERM$<i>153"],["s:lateinischen","i:lateinischen","_152#1170-1182","opennlp/p:ADJA","cnx/l:lateinisch","cnx/p:A","cnx/syn:@PREMOD","<>:cnx/const:np#1170-1193$<i>154","tt/l:lateinisch","tt/p:ADJA","mate/l:lateinisch","mate/p:ADJA","mate/m:case:gen","mate/m:number:sg","mate/m:gender:neut","mate/m:degree:pos",">:mate/d:NK$<i>153","xip/p:ADJ","xip/l:lateinisch","<>:xip/const:ADJ#1170-1182$<i>153",">:xip/d:NMOD$<i>153"],["s:Alphabetes","i:alphabetes","_153#1183-1193","opennlp/p:NN","cnx/l:alphabetes","cnx/p:N","cnx/syn:@NH","tt/l:Alphabet","tt/p:NN","mate/l:alphabet","mate/p:NN","mate/m:case:gen","mate/m:number:sg","mate/m:gender:neut","<:mate/d:NK$<i>151","<:mate/d:NK$<i>152",">:mate/d:AG$<i>150","xip/p:NOUN","xip/l:Alphabet","<>:xip/const:NOUN#1183-1193$<i>154","<:xip/d:DETERM$<i>151","<:xip/d:NMOD$<i>152",">:xip/d:NMOD$<i>150"],["s:ging","i:ging","_154#1194-1198","opennlp/p:VVFIN","cnx/l:gehen","cnx/p:V","cnx/m:IND","cnx/m:PAST","cnx/syn:@MAIN","tt/l:gehen","tt/p:VVFIN","mate/l:gehen","mate/p:VVFIN","mate/m:number:sg","mate/m:person:3","mate/m:tense:past","mate/m:mood:ind","<:mate/d:SB$<i>146","<:mate/d:MO$<i>155","<:mate/d:SB$<i>159","<:mate/d:SVP$<i>162","xip/p:VERB","xip/l:gehen","<>:xip/const:VERB#1194-1198$<i>155","<:xip/d:SUBJ$<i>146","xip/d:VMAIN","<:xip/d:VPREF$<i>162"],["s:in","i:in","_155#1199-1201","opennlp/p:APPR","cnx/l:in","cnx/p:PREP","cnx/syn:@PREMARK","tt/l:in","tt/p:APPR","mate/l:in","mate/p:APPR",">:mate/d:MO$<i>154","<:mate/d:NK$<i>157","xip/p:PREP","xip/l:in","<>:xip/const:PREP#1199-1201$<i>156"],["s:die","i:die","_156#1202-1205","opennlp/p:ART","cnx/l:die","cnx/p:DET","cnx/syn:@PREMOD","tt/l:die","tt/p:ART","mate/l:der","mate/p:ART","mate/m:case:acc","mate/m:number:sg","mate/m:gender:fem",">:mate/d:NK$<i>157","xip/p:DET","xip/l:die","<>:xip/const:DET#1202-1205$<i>157",">:xip/d:DETERM$<i>157"],["s:Bezeichnung","i:bezeichnung","_157#1206-1217","opennlp/p:NN","cnx/l:bezeichnung","cnx/p:N","cnx/syn:@NH","<>:cnx/const:np#1206-1217$<i>158","tt/l:Bezeichnung","tt/p:NN","mate/l:bezeichnung","mate/p:NN","mate/m:case:acc","mate/m:number:sg","mate/m:gender:fem","<:mate/d:NK$<i>156",">:mate/d:NK$<i>155","xip/p:NOUN","xip/l:Bezeichnung","<>:xip/const:NOUN#1206-1217$<i>158","<:xip/d:DETERM$<i>156","<:xip/d:NMOD$<i>159"],["s:der","i:der","_158#1218-1221","opennlp/p:ART","cnx/l:die","cnx/p:DET","cnx/syn:@PREMOD","tt/l:die","tt/p:ART","mate/l:der","mate/p:ART","mate/m:case:gen","mate/m:number:sg","mate/m:gender:fem",">:mate/d:NK$<i>159","xip/p:DET","xip/l:der","<>:xip/const:DET#1218-1221$<i>159",">:xip/d:DETERM$<i>159"],["s:Modi","i:modi","_159#1222-1226","opennlp/p:NN","cnx/l:modus","cnx/p:N","cnx/m:PL","cnx/syn:@NH","<>:cnx/const:np#1222-1226$<i>160","tt/l:Modus","tt/p:NN","mate/l:modi","mate/p:NN","mate/m:case:gen","mate/m:number:sg","mate/m:gender:fem","<:mate/d:NK$<i>158",">:mate/d:SB$<i>154","<:mate/d:AG$<i>161","xip/p:NOUN","xip/l:Modus","<>:xip/const:NOUN#1222-1226$<i>160","<:xip/d:DETERM$<i>158",">:xip/d:NMOD$<i>157","<:xip/d:NMOD$<i>161"],["s:des","i:des","_160#1227-1230","opennlp/p:ART","cnx/l:der","cnx/p:DET","cnx/syn:@PREMOD","tt/l:die","tt/p:ART","mate/l:der","mate/p:ART","mate/m:case:gen","mate/m:number:sg","mate/m:gender:masc",">:mate/d:NK$<i>161","xip/p:DET","xip/l:der","<>:xip/const:DET#1227-1230$<i>161",">:xip/d:DETERM$<i>161"],["s:Syllogismus","i:syllogismus","_161#1231-1242","opennlp/p:NN","cnx/l:syllogismus","cnx/p:N","cnx/syn:@NH","<>:cnx/const:np#1231-1242$<i>162","tt/l:Syllogismus","tt/p:NN","mate/l:syllogismus","mate/p:NN","mate/m:case:gen","mate/m:number:sg","mate/m:gender:masc","<:mate/d:NK$<i>160",">:mate/d:AG$<i>159","<:mate/d:RC$<i>170","xip/p:NOUN","xip/l:Syllogismus","<>:xip/const:NOUN#1231-1242$<i>162","<:xip/d:DETERM$<i>160",">:xip/d:NMOD$<i>159"],["s:ein","i:ein","_162#1243-1246","opennlp/p:PTKVZ","cnx/l:ein","cnx/p:NUM","cnx/syn:@NH","tt/l:ein","tt/p:PTKVZ","mate/l:ein","mate/p:PTKVZ",">:mate/d:SVP$<i>154","xip/p:PTCL","xip/l:ein","<>:xip/const:PTCL#1243-1246$<i>163",">:xip/d:VPREF$<i>154"],["s:in","i:in","_163#1248-1250","opennlp/p:APPR","cnx/l:in","cnx/p:PREP","cnx/syn:@PREMARK","tt/l:in","tt/p:APPR","mate/l:in","mate/p:APPR",">:mate/d:MO$<i>170","<:mate/d:NK$<i>164","xip/p:PREP","xip/l:in","<>:xip/const:SC#1248-1302$<i>171","<>:xip/const:PP#1248-1256$<i>165<b>1","<>:xip/const:PREP#1248-1250$<i>164"],["s:denen","i:denen","_164#1251-1256","opennlp/p:PRELS","cnx/l:die","cnx/p:PRON","cnx/syn:@NH","tt/l:die","tt/p:PRELS","tt/l:die","tt/p:PDS","mate/l:der","mate/p:PRELS","mate/m:case:dat","mate/m:number:pl","mate/m:gender:neut",">:mate/d:NK$<i>163","xip/p:PRON","xip/l:die","<>:xip/const:NP#1251-1256$<i>165<b>2","<>:xip/const:PRON#1251-1256$<i>165"],["s:ein","i:ein","_165#1257-1260","opennlp/p:ART","cnx/l:ein","cnx/p:DET","cnx/syn:@PREMOD","tt/l:eine","tt/p:ART","mate/l:ein","mate/p:ART","mate/m:case:nom","mate/m:number:sg","mate/m:gender:masc",">:mate/d:NK$<i>168","xip/p:DET","xip/l:ein","<>:xip/const:NP#1257-1288$<i>169<b>1","<>:xip/const:DET#1257-1260$<i>166",">:xip/d:DETERM$<i>168"],["s:allgemein","i:allgemein","_166#1261-1270","opennlp/p:ADJD","cnx/l:all","cnx/l:gemein","cnx/p:A","cnx/syn:@PREMOD","<>:cnx/const:np#1261-1288$<i>169","tt/l:allgemein","tt/p:ADJD","mate/l:allgemein","mate/p:ADJD","mate/m:degree:pos",">:mate/d:MO$<i>167","xip/p:ADJ","xip/l:allgemein","<>:xip/const:ADJ#1261-1270$<i>167","<>:xip/const:NPA#1261-1288$<i>169<b>2","<>:xip/const:AP#1261-1281$<i>168<b>3",">:xip/d:ADJMOD$<i>167"],["s:bejahendes","i:bejahendes","_167#1271-1281","opennlp/p:ADJA","cnx/l:bejahend","cnx/p:A","cnx/syn:@PREMOD","tt/l:bejahend","tt/p:ADJA","mate/l:bejahend","mate/p:ADJA","mate/m:case:nom","mate/m:number:sg","mate/m:gender:neut","mate/m:degree:pos","<:mate/d:MO$<i>166",">:mate/d:NK$<i>168","xip/p:ADJ","xip/l:bejahen","<>:xip/const:ADJ#1271-1281$<i>168","<:xip/d:ADJMOD$<i>166",">:xip/d:NMOD$<i>168"],["s:Urteil","i:urteil","_168#1282-1288","opennlp/p:NN","cnx/l:urteil","cnx/p:N","cnx/syn:@NH","tt/l:Urteil","tt/p:NN","mate/l:urteil","mate/p:NN","mate/m:case:nom","mate/m:number:sg","mate/m:gender:neut","<:mate/d:NK$<i>165","<:mate/d:NK$<i>167",">:mate/d:SB$<i>170","xip/p:NOUN","xip/l:Urteil","<>:xip/const:NOUN#1282-1288$<i>169","<:xip/d:DETERM$<i>165","<:xip/d:NMOD$<i>167",">:xip/d:SUBJ$<i>169"],["s:enthalten","i:enthalten","_169#1289-1298","opennlp/p:ADJD","cnx/l:enthalten","cnx/p:V","cnx/m:PCP","cnx/m:PERF","cnx/syn:@MAIN","tt/l:enthalten","tt/p:VVPP","mate/l:enthalten","mate/p:ADJD","mate/m:degree:pos",">:mate/d:PD$<i>170","xip/p:VERB","xip/l:enthalten","<>:xip/const:VERB#1289-1298$<i>170","<:xip/d:SUBJ$<i>168",">:xip/d:AUXIL$<i>170","xip/d:VMAIN"],["s:ist","i:ist","_170#1299-1302","opennlp/p:VAFIN","cnx/l:sein","cnx/p:V","cnx/m:IND","cnx/m:PRES","cnx/syn:@AUX","tt/l:sein","tt/p:VAFIN","mate/l:sein","mate/p:VAFIN","mate/m:number:sg","mate/m:person:3","mate/m:tense:pres","mate/m:mood:ind","<:mate/d:MO$<i>163","<:mate/d:SB$<i>168","<:mate/d:PD$<i>169",">:mate/d:RC$<i>161","xip/p:VERB","xip/l:sein","<>:xip/const:VERB#1299-1302$<i>171","<:xip/d:AUXIL$<i>169"],["s:Der","i:der","_171#1304-1307","<>:s#1304-1447$<i>190","opennlp/p:ART","cnx/l:der","cnx/p:DET","cnx/syn:@PREMOD","tt/l:die","tt/p:ART","mate/l:der","mate/p:ART","mate/m:case:nom","mate/m:number:sg","mate/m:gender:masc",">:mate/d:NK$<i>173","xip/p:DET","xip/l:der","<>:xip/const:TOP#1304-1649$<i>221","<>:xip/const:MC#1304-1480$<i>195<b>1","<>:xip/const:NP#1304-1319$<i>174<b>2","<>:xip/const:DET#1304-1307$<i>172",">:xip/d:DETERM$<i>173"],["s:erste","i:erste","_172#1308-1313","opennlp/p:ADJA","cnx/l:erste","cnx/p:NUM","cnx/m:ORD","cnx/syn:@PREMOD","<>:cnx/const:np#1308-1319$<i>174","tt/l:erst","tt/p:ADJA","mate/l:erster","mate/p:ADJA","mate/m:case:nom","mate/m:number:sg","mate/m:gender:masc","mate/m:degree:pos",">:mate/d:NK$<i>173","xip/p:ADJ","xip/l:ein","<>:xip/const:NPA#1308-1319$<i>174<b>3","<>:xip/const:AP#1308-1313$<i>173<b>4","<>:xip/const:ADJ#1308-1313$<i>173",">:xip/d:NMOD$<i>173"],["s:Modus","i:modus","_173#1314-1319","opennlp/p:NN","cnx/l:modus","cnx/p:N","cnx/syn:@NH","tt/l:Modus","tt/p:NN","mate/l:modus","mate/p:NN","mate/m:case:nom","mate/m:number:sg","mate/m:gender:masc","<:mate/d:NK$<i>171","<:mate/d:NK$<i>172",">:mate/d:SB$<i>188","<:mate/d:AG$<i>176","xip/p:NOUN","xip/l:Modus","<>:xip/const:NOUN#1314-1319$<i>174","<:xip/d:DETERM$<i>171","<:xip/d:NMOD$<i>172",">:xip/d:SUBJ$<i>194","<:xip/d:NMOD$<i>176"],["s:der","i:der","_174#1320-1323","opennlp/p:ART","cnx/l:die","cnx/p:DET","cnx/syn:@PREMOD","tt/l:die","tt/p:ART","mate/l:der","mate/p:ART","mate/m:case:gen","mate/m:number:sg","mate/m:gender:fem",">:mate/d:NK$<i>176","xip/p:DET","xip/l:der","<>:xip/const:NP#1320-1343$<i>177<b>2","<>:xip/const:DET#1320-1323$<i>175",">:xip/d:DETERM$<i>176"],["s:ersten","i:ersten","_175#1324-1330","opennlp/p:ADJA","cnx/l:erste","cnx/p:NUM","cnx/m:ORD","cnx/syn:@PREMOD","<>:cnx/const:np#1324-1343$<i>177","tt/l:erst","tt/p:ADJA","mate/l:erster","mate/p:ADJA","mate/m:case:gen","mate/m:number:sg","mate/m:gender:fem","mate/m:degree:pos",">:mate/d:NK$<i>176","xip/p:ADJ","xip/l:ein","<>:xip/const:ADJ#1324-1330$<i>176","<>:xip/const:NPA#1324-1343$<i>177<b>3","<>:xip/const:AP#1324-1330$<i>176<b>4",">:xip/d:NMOD$<i>176"],["s:Schlussfigur","i:schlussfigur","_176#1331-1343","opennlp/p:NN","cnx/l:schluss","cnx/l:figur","cnx/p:N","cnx/syn:@NH","tt/l:Schlussfigur","tt/p:NN","mate/l:schlussfigur","mate/p:NN","mate/m:case:gen","mate/m:number:sg","mate/m:gender:fem","<:mate/d:NK$<i>174","<:mate/d:NK$<i>175",">:mate/d:AG$<i>173","<:mate/d:AG$<i>180","xip/p:NOUN","xip/l:Schluss","xip/l:Figur","xip/l:Schlussfigur","<>:xip/const:NOUN#1331-1343$<i>177","<:xip/d:DETERM$<i>174","<:xip/d:NMOD$<i>175",">:xip/d:NMOD$<i>173","<:xip/d:NMOD$<i>180"],["s:des","i:des","_177#1344-1347","opennlp/p:ART","cnx/l:der","cnx/p:DET","cnx/syn:@PREMOD","tt/l:die","tt/p:ART","mate/l:der","mate/p:ART","mate/m:case:gen","mate/m:number:sg","mate/m:gender:masc",">:mate/d:NK$<i>180","xip/p:DET","xip/l:der","<>:xip/const:DET#1344-1347$<i>178","<>:xip/const:NP#1344-1383$<i>181<b>2",">:xip/d:DETERM$<i>180"],["s:einfachen","i:einfachen","_178#1348-1357","opennlp/p:ADJA","cnx/l:einfach","cnx/p:A","cnx/syn:@PREMOD","<>:cnx/const:np#1348-1383$<i>181","tt/l:einfach","tt/p:ADJA","mate/l:einfach","mate/p:ADJA","mate/m:case:gen","mate/m:number:sg","mate/m:gender:masc","mate/m:degree:pos",">:mate/d:MO$<i>179","xip/p:ADJ","xip/l:ein}fach","<>:xip/const:NPA#1348-1383$<i>181<b>3","<>:xip/const:AP#1348-1357$<i>179<b>4","<>:xip/const:ADJ#1348-1357$<i>179",">:xip/d:NMOD$<i>180"],["s:kategorischen","i:kategorischen","_179#1358-1371","opennlp/p:ADJA","cnx/l:kategorisch","cnx/p:A","cnx/syn:@PREMOD","tt/l:kategorisch","tt/p:ADJA","mate/l:kategorisch","mate/p:ADJA","mate/m:case:gen","mate/m:number:sg","mate/m:gender:masc","mate/m:degree:pos","<:mate/d:MO$<i>178",">:mate/d:NK$<i>180","xip/p:ADJ","xip/l:kategorisch","<>:xip/const:AP#1358-1371$<i>180<b>4","<>:xip/const:ADJ#1358-1371$<i>180",">:xip/d:NMOD$<i>180"],["s:Syllogismus","i:syllogismus","_180#1372-1383","opennlp/p:NN","cnx/l:Syllogismus","cnx/p:N","cnx/m:Prop","cnx/syn:@NH","tt/l:Syllogismus","tt/p:NN","mate/l:syllogismus","mate/p:NN","mate/m:case:gen","mate/m:number:sg","mate/m:gender:masc","<:mate/d:NK$<i>177","<:mate/d:NK$<i>179",">:mate/d:AG$<i>176","<:mate/d:RC$<i>187","xip/p:NOUN","xip/l:Syllogismus","<>:xip/const:NOUN#1372-1383$<i>181","<:xip/d:DETERM$<i>177","<:xip/d:NMOD$<i>178","<:xip/d:NMOD$<i>179",">:xip/d:NMOD$<i>176"],["s:der","i:der","_181#1385-1388","opennlp/p:PRELS","cnx/l:die","cnx/p:DET","cnx/syn:@PREMOD","tt/l:die","tt/p:PRELS","tt/l:die","tt/p:ART","mate/l:der","mate/p:PRELS","mate/m:case:nom","mate/m:number:sg","mate/m:gender:masc",">:mate/d:SB$<i>187","xip/p:PRON","xip/l:der","<>:xip/const:SC#1385-1435$<i>188","<>:xip/const:NP#1385-1388$<i>182<b>1","<>:xip/const:PRON#1385-1388$<i>182",">:xip/d:SUBJ$<i>187"],["s:aus","i:aus","_182#1389-1392","opennlp/p:APPR","cnx/l:aus","cnx/p:PREP","cnx/syn:@PREMARK","tt/l:aus","tt/p:APPR","mate/l:aus","mate/p:APPR",">:mate/d:OP$<i>187","<:mate/d:NK$<i>186","xip/p:PREP","xip/l:aus","<>:xip/const:PREP#1389-1392$<i>183","<>:xip/const:PP#1389-1427$<i>187<b>1","<:xip/d:PLINK$<i>186"],["s:drei","i:drei","_183#1393-1397","opennlp/p:CARD","cnx/l:drei","cnx/p:NUM","cnx/syn:@PREMOD","tt/l:drei","tt/p:CARD","mate/l:drei","mate/p:CARD",">:mate/d:NK$<i>186","xip/p:NUM","xip/l:drei","<>:xip/const:NUM#1393-1397$<i>184","<>:xip/const:NP#1393-1427$<i>187<b>2","<>:xip/const:NPA#1393-1427$<i>187<b>3","<>:xip/const:NUM#1393-1397$<i>184<b>4",">:xip/d:NMOD$<i>186"],["s:allgemein","i:allgemein","_184#1398-1407","opennlp/p:ADJA","cnx/l:all","cnx/l:gemein","cnx/p:A","cnx/syn:@PREMOD","<>:cnx/const:np#1398-1427$<i>187","tt/l:allgemein","tt/p:ADJD","mate/l:allgemein","mate/p:ADJD","mate/m:degree:pos",">:mate/d:MO$<i>185","xip/p:ADJ","xip/l:allgemein","<>:xip/const:AP#1398-1418$<i>186<b>4","<>:xip/const:ADJ#1398-1407$<i>185",">:xip/d:ADJMOD$<i>185"],["s:bejahenden","i:bejahenden","_185#1408-1418","opennlp/p:ADJA","cnx/l:bejahend","cnx/p:A","cnx/syn:@PREMOD","tt/l:bejahend","tt/p:ADJA","mate/l:bejahend","mate/p:ADJA","mate/m:case:acc","mate/m:number:sg","mate/m:gender:masc","mate/m:degree:pos","<:mate/d:MO$<i>184",">:mate/d:NK$<i>186","xip/p:ADJ","xip/l:bejahen","<>:xip/const:ADJ#1408-1418$<i>186","<:xip/d:ADJMOD$<i>184",">:xip/d:NMOD$<i>186"],["s:Urteilen","i:urteilen","_186#1419-1427","opennlp/p:NN","cnx/l:urteil","cnx/p:N","cnx/m:PL","cnx/syn:@NH","tt/l:Urteil","tt/p:NN","mate/l:urteil","mate/p:NN","mate/m:case:acc","mate/m:number:sg","mate/m:gender:masc","<:mate/d:NK$<i>183","<:mate/d:NK$<i>185",">:mate/d:NK$<i>182","xip/p:NOUN","xip/l:urteilen","<>:xip/const:NOUN#1419-1427$<i>187","<:xip/d:NMOD$<i>183","<:xip/d:NMOD$<i>185",">:xip/d:OBJ$<i>187",">:xip/d:PLINK$<i>182"],["s:besteht","i:besteht","_187#1428-1435","opennlp/p:VVFIN","cnx/l:bestehen","cnx/p:V","cnx/m:IND","cnx/m:PRES","cnx/syn:@MAIN","tt/l:bestehen","tt/p:VVFIN","mate/l:bestehen","mate/p:VVFIN","mate/m:number:sg","mate/m:person:3","mate/m:tense:pres","mate/m:mood:ind","<:mate/d:SB$<i>181","<:mate/d:OP$<i>182",">:mate/d:RC$<i>180","xip/p:VERB","xip/l:bestehen","<>:xip/const:VERB#1428-1435$<i>188","<:xip/d:SUBJ$<i>181","<:xip/d:OBJ$<i>186","xip/d:VMAIN"],["s:wurde","i:wurde","_188#1437-1442","opennlp/p:VAFIN","cnx/l:werden","cnx/p:V","cnx/m:IND","cnx/m:PAST","cnx/syn:@MAIN","tt/l:werden","tt/p:VAFIN","mate/l:werden","mate/p:VAFIN","mate/m:number:sg","mate/m:person:3","mate/m:tense:past","mate/m:mood:ind","<:mate/d:SB$<i>173","<:mate/d:OC$<i>194","xip/p:VERB","xip/l:werden","<>:xip/const:VERB#1437-1442$<i>189","<:xip/d:AUXIL$<i>194"],["s:z.B.","i:z.b.","_189#1443-1447","opennlp/p:APPRART","cnx/l:z.B.","cnx/p:ADV","cnx/syn:@ADVL","xip/p:ADV","xip/l:z.B.","<>:xip/const:ADV#1443-1447$<i>190",">:xip/d:VMOD$<i>194",">:xip/d:VMOD$<i>194"],["s:mit","i:mit","_190#1448-1451","<>:s#1448-1649$<i>221","opennlp/p:APPR","cnx/l:mit","cnx/p:PREP","cnx/syn:@PREMARK","tt/l:mit","tt/p:APPR","mate/l:mit","mate/p:APPR",">:mate/d:MO$<i>194","<:mate/d:NK$<i>192","xip/p:PREP","xip/l:mit","<>:xip/const:PREP#1448-1451$<i>191"],["s:dem","i:dem","_191#1452-1455","opennlp/p:ART","cnx/l:das","cnx/p:DET","cnx/syn:@PREMOD","tt/l:die","tt/p:ART","mate/l:der","mate/p:ART","mate/m:case:dat","mate/m:number:sg","mate/m:gender:masc",">:mate/d:NK$<i>192","xip/p:DET","xip/l:der","<>:xip/const:DET#1452-1455$<i>192",">:xip/d:DETERM$<i>192"],["s:Wort","i:wort","_192#1456-1460","opennlp/p:NN","cnx/l:wort","cnx/p:N","cnx/syn:@PREMOD","tt/l:Wort","tt/p:NN","mate/l:wort","mate/p:NN","mate/m:case:dat","mate/m:number:sg","mate/m:gender:masc","<:mate/d:NK$<i>191",">:mate/d:NK$<i>190","<:mate/d:RC$<i>200","xip/p:NOUN","xip/l:Wort","<>:xip/const:NOUN#1456-1460$<i>193","<:xip/d:DETERM$<i>191"],["s:Barbara\"","i:barbara\"","_193#1461-1469","opennlp/p:NN"],["s:bezeichnet","i:bezeichnet","_194#1470-1480","opennlp/p:VVFIN","cnx/l:bezeichnen","cnx/p:V","cnx/m:PCP","cnx/m:PERF","cnx/syn:@MAIN","tt/l:bezeichnen","tt/p:VVPP","tt/l:bezeichnen","tt/p:VVFIN","mate/l:bezeichnen","mate/p:VVPP","<:mate/d:MO$<i>190",">:mate/d:OC$<i>188","xip/p:VERB","xip/l:bezeichnen","<>:xip/const:VERB#1470-1480$<i>195","<:xip/d:SUBJ$<i>173","<:xip/d:VMOD$<i>189","<:xip/d:VMOD$<i>189",">:xip/d:AUXIL$<i>188","xip/d:VMAIN"],["s:das","i:das","_195#1482-1485","opennlp/p:ART","cnx/l:das","cnx/p:PRON","cnx/syn:@NH","tt/l:die","tt/p:PRELS","tt/l:die","tt/p:PDS","mate/l:der","mate/p:PRELS","mate/m:case:nom","mate/m:number:sg","mate/m:gender:neut",">:mate/d:SB$<i>200","xip/p:DET","xip/l:das","<>:xip/const:DET#1482-1485$<i>196","<>:xip/const:MC#1482-1518$<i>201<b>1","<>:xip/const:NP#1482-1510$<i>200<b>2"],["s:dreimal","i:dreimal","_196#1486-1493","opennlp/p:ADV","cnx/l:dreimal","cnx/p:ADV","cnx/syn:@ADVL","tt/l:dreimal","tt/p:ADV","mate/l:dreimal","mate/p:ADV",">:mate/d:MO$<i>200","xip/p:ADV","xip/l:drei}mal","<>:xip/const:ADV#1486-1493$<i>197"],["s:den","i:den","_197#1494-1497","opennlp/p:ART","cnx/l:die","cnx/p:DET","cnx/syn:@PREMOD","tt/l:die","tt/p:ART","mate/l:der","mate/p:ART","mate/m:case:acc","mate/m:number:sg","mate/m:gender:masc",">:mate/d:NK$<i>198","xip/p:DET","xip/l:der","<>:xip/const:NP#1494-1508$<i>199<b>3","<>:xip/const:DET#1494-1497$<i>198",">:xip/d:DETERM$<i>198"],["s:Buchstaben","i:buchstaben","_198#1498-1508","opennlp/p:NN","cnx/l:buchstabe","cnx/p:N","cnx/m:PL","cnx/syn:@NH","<>:cnx/const:np#1498-1508$<i>199","tt/l:Buchstabe","tt/p:NN","mate/l:buchstabe","mate/p:NN","mate/m:case:acc","mate/m:number:sg","mate/m:gender:masc","<:mate/d:NK$<i>197",">:mate/d:OA$<i>200","<:mate/d:NK$<i>199","xip/p:NOUN","xip/l:Buchstabe","<>:xip/const:NOUN#1498-1508$<i>199","<>:xip/const:NPA#1498-1508$<i>199<b>4","<:xip/d:DETERM$<i>197"],["s:a","i:a","_199#1509-1510","opennlp/p:NE","cnx/l:a","cnx/p:N","cnx/syn:@NH","<>:cnx/const:np#1509-1510$<i>200","tt/l:a","tt/p:FM","mate/p:NE","mate/m:case:nom","mate/m:number:sg","mate/m:gender:*",">:mate/d:NK$<i>198","xip/p:SYMBOL","xip/l:a","<>:xip/const:NP#1509-1510$<i>200<b>3","<>:xip/const:NPA#1509-1510$<i>200<b>4","<>:xip/const:NOUN#1509-1510$<i>200<b>5","<>:xip/const:SYMBOL#1509-1510$<i>200"],["s:enthält","i:enthält","_200#1511-1518","opennlp/p:VVFIN","cnx/l:enthalten","cnx/p:V","cnx/m:IND","cnx/m:PRES","cnx/syn:@MAIN","tt/l:enthalten","tt/p:VVFIN","mate/l:enthalten","mate/p:VVFIN","mate/m:number:sg","mate/m:person:3","mate/m:tense:pres","mate/m:mood:ind","<:mate/d:SB$<i>195","<:mate/d:MO$<i>196","<:mate/d:OA$<i>198",">:mate/d:RC$<i>192","<:mate/d:CJ$<i>209","<:mate/d:MO$<i>220","xip/p:VERB","xip/l:enthalten","<>:xip/const:VERB#1511-1518$<i>201","xip/d:VMAIN"],["s:aber","i:aber","_201#1520-1524","opennlp/p:ADV","cnx/l:aber","cnx/p:CC","cnx/syn:@CC","tt/l:aber","tt/p:ADV","tt/l:aber","tt/p:KON","mate/l:aber","mate/p:ADV",">:mate/d:MO$<i>209","<:mate/d:CJ$<i>202","xip/p:CONJ","xip/l:aber","<>:xip/const:MC#1520-1649$<i>221<b>1","<>:xip/const:CONJ#1520-1524$<i>202"],["s:an","i:an","_202#1525-1527","opennlp/p:APPR","cnx/l:an","cnx/p:ADV","cnx/syn:@ADVL","tt/l:an","tt/p:PTKVZ","tt/l:an","tt/p:APPR","tt/l:an","tt/p:APZR","mate/l:an","mate/p:PTKVZ",">:mate/d:CJ$<i>201","<:mate/d:CD$<i>203","xip/p:PTCL","xip/l:an","<>:xip/const:PTCL#1525-1527$<i>203"],["s:und","i:und","_203#1528-1531","opennlp/p:KON","cnx/l:und","cnx/p:CC","cnx/syn:@CC","tt/l:und","tt/p:KON","mate/l:und","mate/p:KON",">:mate/d:CD$<i>202","<:mate/d:CJ$<i>204","xip/p:CONJ","xip/l:und","<>:xip/const:CONJ#1528-1531$<i>204"],["s:für","i:für","_204#1532-1535","opennlp/p:ADJA","cnx/l:für","cnx/p:PREP","cnx/syn:@PREMARK","tt/l:für","tt/p:APPR","mate/l:für","mate/p:APPR",">:mate/d:CJ$<i>203","<:mate/d:NK$<i>205","xip/p:PREP","xip/l:für","<>:xip/const:PP#1532-1540$<i>206<b>2","<>:xip/const:PREP#1532-1535$<i>205"],["s:sich","i:sich","_205#1536-1540","opennlp/p:PRF","cnx/l:sich","cnx/p:PRON","cnx/syn:@NH","tt/l:er|es|sie","tt/p:PRF","mate/l:sich","mate/p:PRF","mate/m:case:acc","mate/m:number:pl","mate/m:person:3",">:mate/d:NK$<i>204","xip/p:PRON","xip/l:sich","<>:xip/const:NP#1536-1540$<i>206<b>3","<>:xip/const:PRON#1536-1540$<i>206"],["s:keinen","i:keinen","_206#1541-1547","opennlp/p:PIAT","cnx/l:kein","cnx/p:PRON","cnx/syn:@PREMOD","tt/l:keine","tt/p:PIAT","mate/l:kein","mate/p:PIAT","mate/m:case:acc","mate/m:number:sg","mate/m:gender:masc",">:mate/d:NK$<i>208","xip/p:DET","xip/l:kein","<>:xip/const:NP#1541-1561$<i>209<b>2","<>:xip/const:DET#1541-1547$<i>207",">:xip/d:DETERM$<i>208"],["s:weiteren","i:weiteren","_207#1548-1556","opennlp/p:ADJA","cnx/l:weit","cnx/p:A","cnx/m:CMP","cnx/syn:@PREMOD","<>:cnx/const:np#1548-1561$<i>209","tt/l:weit","tt/p:ADJA","mate/l:weit","mate/p:ADJA","mate/m:case:acc","mate/m:number:sg","mate/m:gender:masc","mate/m:degree:comp",">:mate/d:NK$<i>208","xip/p:ADJ","xip/l:weit","<>:xip/const:NPA#1548-1561$<i>209<b>3","<>:xip/const:AP#1548-1556$<i>208<b>4","<>:xip/const:ADJ#1548-1556$<i>208",">:xip/d:NMOD$<i>208"],["s:Sinn","i:sinn","_208#1557-1561","opennlp/p:NN","cnx/l:sinn","cnx/p:N","cnx/syn:@NH","tt/l:Sinn","tt/p:NN","mate/l:sinn","mate/p:NN","mate/m:case:acc","mate/m:number:sg","mate/m:gender:masc","<:mate/d:NK$<i>206","<:mate/d:NK$<i>207",">:mate/d:OA$<i>209","xip/p:NOUN","xip/l:Sinn","<>:xip/const:NOUN#1557-1561$<i>209","<:xip/d:DETERM$<i>206","<:xip/d:NMOD$<i>207",">:xip/d:OBJ$<i>209"],["s:enthält","i:enthält","_209#1562-1569","opennlp/p:VVPP","cnx/l:enthalten","cnx/p:V","cnx/m:IND","cnx/m:PRES","cnx/syn:@MAIN","tt/l:enthalten","tt/p:VVFIN","mate/l:enthalten","mate/p:VVFIN","mate/m:number:sg","mate/m:person:3","mate/m:tense:pres","mate/m:mood:ind","<:mate/d:MO$<i>201","<:mate/d:OA$<i>208",">:mate/d:CJ$<i>200","xip/p:VERB","xip/l:enthalten","<>:xip/const:VERB#1562-1569$<i>210","<:xip/d:OBJ$<i>208","xip/d:VMAIN"],["s:obgleich","i:obgleich","_210#1571-1579","opennlp/p:KOUS","cnx/l:obgleich","cnx/p:CS","cnx/syn:@PREMARK","tt/l:obgleich","tt/p:KOUS","mate/l:obgleich","mate/p:KOUS",">:mate/d:CP$<i>220","xip/p:CONJ","xip/l:obgleich","<>:xip/const:SC#1571-1648$<i>221","<>:xip/const:CONJ#1571-1579$<i>211",">:xip/d:CONNECT$<i>220"],["s:es","i:es","_211#1580-1582","opennlp/p:PPER","cnx/l:es","cnx/p:PRON","cnx/syn:@NH","tt/l:es","tt/p:PPER","mate/l:es","mate/p:PPER","mate/m:case:nom","mate/m:number:sg","mate/m:gender:neut","mate/m:person:3",">:mate/d:SB$<i>220","xip/p:PRON","xip/l:es","<>:xip/const:PRON#1580-1582$<i>212","<>:xip/const:NP#1580-1582$<i>212<b>1",">:xip/d:SUBJ$<i>220"],["s:zufällig","i:zufällig","_212#1583-1591","opennlp/p:ADJD","cnx/l:zufällig","cnx/p:A","cnx/syn:@NH","tt/l:zufällig","tt/p:ADJD","mate/l:zufällig","mate/p:ADJD","mate/m:degree:pos",">:mate/d:MO$<i>220","xip/p:ADJ","xip/l:zufällig","<>:xip/const:ADJ#1583-1591$<i>213","<>:xip/const:AP#1583-1591$<i>213<b>1",">:xip/d:VMOD$<i>220"],["s:in","i:in","_213#1592-1594","opennlp/p:APPR","cnx/l:in","cnx/p:PREP","cnx/syn:@POSTMOD","tt/l:in","tt/p:APPR","mate/l:in","mate/p:APPR",">:mate/d:MO$<i>220","<:mate/d:NK$<i>215","xip/p:PREP","xip/l:in","<>:xip/const:PREP#1592-1594$<i>214","<>:xip/const:PP#1592-1609$<i>216<b>1"],["s:der","i:der","_214#1595-1598","opennlp/p:ART","cnx/l:die","cnx/p:DET","cnx/syn:@PREMOD","tt/l:die","tt/p:ART","mate/l:der","mate/p:ART","mate/m:case:dat","mate/m:number:sg","mate/m:gender:fem",">:mate/d:NK$<i>215","xip/p:DET","xip/l:der","<>:xip/const:DET#1595-1598$<i>215","<>:xip/const:NP#1595-1609$<i>216<b>2",">:xip/d:DETERM$<i>215"],["s:Schreibung","i:schreibung","_215#1599-1609","opennlp/p:NN","cnx/l:schreibung","cnx/p:N","cnx/syn:@NH","<>:cnx/const:np#1599-1626$<i>219","tt/l:Schreibung","tt/p:NN","mate/l:schreibung","mate/p:NN","mate/m:case:dat","mate/m:number:sg","mate/m:gender:fem","<:mate/d:NK$<i>214",">:mate/d:NK$<i>213","<:mate/d:MNR$<i>216","xip/p:NOUN","xip/l:Schreibung","<>:xip/const:NOUN#1599-1609$<i>216","<>:xip/const:NPA#1599-1609$<i>216<b>3","<:xip/d:DETERM$<i>214"],["s:mit","i:mit","_216#1610-1613","opennlp/p:APPR","cnx/l:mit","cnx/p:PREP","cnx/syn:@POSTMOD","tt/l:mit","tt/p:APPR","mate/l:mit","mate/p:APPR",">:mate/d:MNR$<i>215","<:mate/d:NK$<i>218","xip/p:PREP","xip/l:mit","<>:xip/const:PREP#1610-1613$<i>217","<>:xip/const:PP#1610-1626$<i>219<b>1"],["s:dem","i:dem","_217#1614-1617","opennlp/p:ART","cnx/l:der","cnx/p:DET","cnx/syn:@PREMOD","tt/l:die","tt/p:ART","mate/l:der","mate/p:ART","mate/m:case:dat","mate/m:number:sg","mate/m:gender:masc",">:mate/d:NK$<i>218","xip/p:DET","xip/l:der","<>:xip/const:DET#1614-1617$<i>218","<>:xip/const:NP#1614-1626$<i>219<b>2",">:xip/d:DETERM$<i>218"],["s:Vornamen","i:vornamen","_218#1618-1626","opennlp/p:NN","cnx/l:vor","cnx/l:name","cnx/p:N","cnx/syn:@NH","tt/l:Vorname","tt/p:NN","mate/l:vornam","mate/p:NN","mate/m:case:dat","mate/m:number:sg","mate/m:gender:masc","<:mate/d:NK$<i>217",">:mate/d:NK$<i>216","<:mate/d:NK$<i>219","xip/p:NOUN","xip/l:Vorname","<>:xip/const:NOUN#1618-1626$<i>219","<>:xip/const:NPA#1618-1626$<i>219<b>3","<:xip/d:DETERM$<i>217","<:xip/d:NMOD$<i>219"],["s:Barbara","i:barbara","_219#1627-1634","opennlp/p:NE","corenlp/ne_dewac_175m_600:I-PER","corenlp/ne_hgc_175m_600:I-PER","cnx/l:Barbara","cnx/p:N","cnx/m:Prop","cnx/syn:@NH","<>:cnx/const:np#1627-1634$<i>220","tt/l:Barbara","tt/p:NE","mate/l:barbara","mate/p:NE","mate/m:case:nom","mate/m:number:sg","mate/m:gender:*",">:mate/d:NK$<i>218","xip/p:NOUN","xip/l:Barbara","<>:xip/const:NOUN#1627-1634$<i>220","<>:xip/const:NP#1627-1634$<i>220<b>1","<>:xip/const:NPA#1627-1634$<i>220<b>2",">:xip/d:NMOD$<i>218","xip/d:PERSON"],["s:übereinstimmt","i:übereinstimmt","_220#1635-1648","opennlp/p:VVFIN","cnx/l:überein","cnx/l:stimmen","cnx/p:V","cnx/m:IND","cnx/m:PRES","cnx/syn:@MAIN","tt/l:übereinstimmen","tt/p:VVFIN","mate/l:übereinstimmen","mate/p:VVPP","<:mate/d:CP$<i>210","<:mate/d:SB$<i>211","<:mate/d:MO$<i>212","<:mate/d:MO$<i>213",">:mate/d:MO$<i>200","xip/p:VERB","xip/l:übereinstimmen","<>:xip/const:VERB#1635-1648$<i>221","<:xip/d:CONNECT$<i>210","<:xip/d:SUBJ$<i>211","<:xip/d:VMOD$<i>212","xip/d:VMAIN"],["s:Es","i:es","_221#1650-1652","<>:s#1650-1795$<i>243","<>:p#1650-2256$<i>311","opennlp/p:PPER","cnx/l:es","cnx/p:PRON","cnx/syn:@NH","tt/l:es","tt/p:PPER","mate/l:es","mate/p:PPER","mate/m:case:nom","mate/m:number:sg","mate/m:gender:neut","mate/m:person:3",">:mate/d:PH$<i>222","xip/p:PRON","xip/l:es","<>:xip/const:TOP#1650-1795$<i>243","<>:xip/const:MC#1650-1665$<i>225<b>1","<>:xip/const:NP#1650-1652$<i>222<b>2","<>:xip/const:PRON#1650-1652$<i>222",">:xip/d:EXPL$<i>222",">:xip/d:SUBJ$<i>222"],["s:sagt","i:sagt","_222#1653-1657","opennlp/p:VVFIN","cnx/l:sagen","cnx/p:V","cnx/m:IND","cnx/m:PRES","cnx/syn:@MAIN","tt/l:sagen","tt/p:VVFIN","mate/l:sagen","mate/p:VVFIN","mate/m:number:sg","mate/m:person:3","mate/m:tense:pres","mate/m:mood:ind","<:mate/d:PH$<i>221","<:mate/d:MO$<i>223","<:mate/d:SVP$<i>224","<:mate/d:OC$<i>242","xip/p:VERB","xip/l:sagen","<>:xip/const:VERB#1653-1657$<i>223","<:xip/d:EXPL$<i>221","<:xip/d:SUBJ$<i>221","xip/d:VMAIN","<:xip/d:VMOD$<i>223","<:xip/d:VPREF$<i>224"],["s:nur","i:nur","_223#1658-1661","opennlp/p:ADV","cnx/l:nur","cnx/p:ADV","cnx/syn:@ADVL","tt/l:nur","tt/p:ADV","mate/l:nur","mate/p:ADV",">:mate/d:MO$<i>222","xip/p:ADV","xip/l:nur","<>:xip/const:ADV#1658-1661$<i>224",">:xip/d:VMOD$<i>222"],["s:aus","i:aus","_224#1662-1665","opennlp/p:PTKVZ","cnx/l:aus","cnx/p:ADV","cnx/syn:@ADVL","tt/l:aus","tt/p:PTKVZ","mate/l:aus","mate/p:PTKVZ",">:mate/d:SVP$<i>222","xip/p:PTCL","xip/l:aus","<>:xip/const:PTCL#1662-1665$<i>225",">:xip/d:VPREF$<i>222"],["s:dass","i:dass","_225#1667-1671","opennlp/p:KOUS","cnx/l:dass","cnx/p:CS","cnx/syn:@PREMARK","tt/l:dass","tt/p:KOUS","mate/l:dass","mate/p:KOUS",">:mate/d:CP$<i>242","xip/p:CONJ","xip/l:dass","<>:xip/const:CONJ#1667-1671$<i>226"],["s:alle","i:alle","_226#1672-1676","opennlp/p:PIAT","cnx/l:alle","cnx/p:PRON","cnx/syn:@NH","tt/l:alle","tt/p:PIAT","tt/l:alle","tt/p:PIS","mate/l:aller","mate/p:PIAT","mate/m:case:nom","mate/m:number:pl","mate/m:gender:*",">:mate/d:NK$<i>228","xip/p:DET","xip/l:alle","<>:xip/const:DET#1672-1676$<i>227","<>:xip/const:MC#1672-1794$<i>243<b>1","<>:xip/const:NP#1672-1689$<i>229<b>2",">:xip/d:DETERM$<i>228"],["s:drei","i:drei","_227#1677-1681","opennlp/p:CARD","cnx/l:drei","cnx/p:NUM","cnx/syn:@PREMOD","tt/l:drei","tt/p:CARD","mate/l:drei","mate/p:CARD",">:mate/d:NK$<i>228","xip/p:NUM","xip/l:drei","<>:xip/const:NUM#1677-1681$<i>228","<>:xip/const:NPA#1677-1689$<i>229<b>3","<>:xip/const:NUM#1677-1681$<i>228<b>4",">:xip/d:NMOD$<i>228"],["s:Urteile","i:urteile","_228#1682-1689","opennlp/p:NN","cnx/l:urteil","cnx/p:N","cnx/m:PL","cnx/syn:@NH","<>:cnx/const:np#1682-1689$<i>229","tt/l:Urteil","tt/p:NN","mate/l:urteil","mate/p:NN","mate/m:case:acc","mate/m:number:pl","mate/m:gender:neut","<:mate/d:NK$<i>226","<:mate/d:NK$<i>227",">:mate/d:DA$<i>240","<:mate/d:RC$<i>238","xip/p:NOUN","xip/l:Urteil","<>:xip/const:NOUN#1682-1689$<i>229","<:xip/d:DETERM$<i>226","<:xip/d:NMOD$<i>227",">:xip/d:SUBJ$<i>242"],["s:die","i:die","_229#1691-1694","opennlp/p:PRELS","cnx/l:die","cnx/p:PRON","cnx/syn:@NH","tt/l:die","tt/p:PRELS","mate/l:der","mate/p:PRELS","mate/m:case:nom","mate/m:number:pl","mate/m:gender:neut",">:mate/d:SB$<i>238","xip/p:PRON","xip/l:die","<>:xip/const:PRON#1691-1694$<i>230","<>:xip/const:SC#1691-1760$<i>239","<>:xip/const:NP#1691-1694$<i>230<b>1",">:xip/d:SUBJ$<i>238"],["s:den","i:den","_230#1695-1698","opennlp/p:ART","cnx/l:der","cnx/p:DET","cnx/syn:@PREMOD","tt/l:die","tt/p:ART","mate/l:der","mate/p:ART","mate/m:case:acc","mate/m:number:sg","mate/m:gender:masc",">:mate/d:NK$<i>232","xip/p:DET","xip/l:der","<>:xip/const:NP#1695-1711$<i>233<b>1","<>:xip/const:DET#1695-1698$<i>231",">:xip/d:DETERM$<i>232"],["s:ersten","i:ersten","_231#1699-1705","opennlp/p:ADJA","cnx/l:erste","cnx/p:NUM","cnx/m:ORD","cnx/syn:@PREMOD","<>:cnx/const:np#1699-1711$<i>233","tt/l:erst","tt/p:ADJA","mate/l:erster","mate/p:ADJA","mate/m:case:acc","mate/m:number:sg","mate/m:gender:masc","mate/m:degree:pos",">:mate/d:NK$<i>232","xip/p:ADJ","xip/l:ein","<>:xip/const:NPA#1699-1711$<i>233<b>2","<>:xip/const:AP#1699-1705$<i>232<b>3","<>:xip/const:ADJ#1699-1705$<i>232",">:xip/d:NMOD$<i>232"],["s:Modus","i:modus","_232#1706-1711","opennlp/p:NN","cnx/l:modus","cnx/p:N","cnx/syn:@NH","tt/l:Modus","tt/p:NN","mate/l:modus","mate/p:NN","mate/m:case:acc","mate/m:number:sg","mate/m:gender:masc","<:mate/d:NK$<i>230","<:mate/d:NK$<i>231",">:mate/d:DA$<i>238","<:mate/d:AG$<i>235","xip/p:NOUN","xip/l:Modus","<>:xip/const:NOUN#1706-1711$<i>233","<:xip/d:DETERM$<i>230","<:xip/d:NMOD$<i>231",">:xip/d:OBJ$<i>238","<:xip/d:NMOD$<i>235"],["s:der","i:der","_233#1712-1715","opennlp/p:ART","cnx/l:die","cnx/p:DET","cnx/syn:@PREMOD","tt/l:die","tt/p:ART","mate/l:der","mate/p:ART","mate/m:case:gen","mate/m:number:pl","mate/m:gender:masc",">:mate/d:NK$<i>235","xip/p:DET","xip/l:der","<>:xip/const:DET#1712-1715$<i>234","<>:xip/const:NP#1712-1735$<i>236<b>1",">:xip/d:DETERM$<i>235"],["s:ersten","i:ersten","_234#1716-1722","opennlp/p:ADJA","cnx/l:erste","cnx/p:NUM","cnx/m:ORD","cnx/syn:@PREMOD","<>:cnx/const:np#1716-1735$<i>236","tt/l:erst","tt/p:ADJA","mate/l:erster","mate/p:ADJA","mate/m:case:gen","mate/m:number:pl","mate/m:gender:masc","mate/m:degree:pos",">:mate/d:NK$<i>235","xip/p:ADJ","xip/l:ein","<>:xip/const:ADJ#1716-1722$<i>235","<>:xip/const:NPA#1716-1735$<i>236<b>2","<>:xip/const:AP#1716-1722$<i>235<b>3",">:xip/d:NMOD$<i>235"],["s:Schlussfigur","i:schlussfigur","_235#1723-1735","opennlp/p:NN","cnx/l:schluss","cnx/l:figur","cnx/p:N","cnx/syn:@NH","tt/l:Schlussfigur","tt/p:NN","mate/l:schlussfigur","mate/p:NN","mate/m:case:gen","mate/m:number:pl","mate/m:gender:masc","<:mate/d:NK$<i>233","<:mate/d:NK$<i>234",">:mate/d:AG$<i>232","<:mate/d:AG$<i>237","xip/p:NOUN","xip/l:Schluss","xip/l:Figur","xip/l:Schlussfigur","<>:xip/const:NOUN#1723-1735$<i>236","<:xip/d:DETERM$<i>233","<:xip/d:NMOD$<i>234",">:xip/d:NMOD$<i>232","<:xip/d:NMOD$<i>237"],["s:des","i:des","_236#1736-1739","opennlp/p:ART","cnx/l:der","cnx/p:DET","cnx/syn:@PREMOD","tt/l:die","tt/p:ART","mate/l:der","mate/p:ART","mate/m:case:gen","mate/m:number:sg","mate/m:gender:masc",">:mate/d:NK$<i>237","xip/p:DET","xip/l:der","<>:xip/const:NP#1736-1751$<i>238<b>1","<>:xip/const:DET#1736-1739$<i>237",">:xip/d:DETERM$<i>237"],["s:Syllogismus","i:syllogismus","_237#1740-1751","opennlp/p:NN","cnx/l:syllogismus","cnx/p:N","cnx/syn:@NH","<>:cnx/const:np#1740-1751$<i>238","tt/l:Syllogismus","tt/p:NN","mate/l:syllogismus","mate/p:NN","mate/m:case:gen","mate/m:number:sg","mate/m:gender:masc","<:mate/d:NK$<i>236",">:mate/d:AG$<i>235","xip/p:NOUN","xip/l:Syllogismus","<>:xip/const:NPA#1740-1751$<i>238<b>2","<>:xip/const:NOUN#1740-1751$<i>238","<:xip/d:DETERM$<i>236",">:xip/d:NMOD$<i>235"],["s:eingehen","i:eingehen","_238#1752-1760","opennlp/p:VVINF","cnx/l:ein","cnx/l:gehen","cnx/p:V","cnx/m:IND","cnx/m:PRES","cnx/syn:@MAIN","tt/l:eingehen","tt/p:VVINF","mate/l:eingehen","mate/p:VVINF","<:mate/d:SB$<i>229","<:mate/d:DA$<i>232",">:mate/d:RC$<i>228","xip/p:VERB","xip/l:eingehen","<>:xip/const:VERB#1752-1760$<i>239","<:xip/d:SUBJ$<i>229","<:xip/d:OBJ$<i>232","xip/d:VMAIN"],["s:allgemein","i:allgemein","_239#1762-1771","opennlp/p:ADJD","cnx/l:all","cnx/l:gemein","cnx/p:A","cnx/syn:@PREMOD","<>:cnx/const:np#1762-1789$<i>242","tt/l:allgemein","tt/p:ADJD","mate/l:allgemein","mate/p:ADJD","mate/m:degree:pos",">:mate/d:MO$<i>240","xip/p:ADJ","xip/l:allgemein","<>:xip/const:ADJ#1762-1771$<i>240",">:xip/d:ADJMOD$<i>240"],["s:bejahende","i:bejahende","_240#1772-1781","opennlp/p:ADJA","cnx/l:bejahend","cnx/p:A","cnx/syn:@PREMOD","tt/l:bejahend","tt/p:ADJA","mate/l:bejahend","mate/p:ADJA","mate/m:case:acc","mate/m:number:pl","mate/m:gender:neut","mate/m:degree:pos","<:mate/d:DA$<i>228","<:mate/d:MO$<i>239",">:mate/d:NK$<i>241","xip/p:ADJ","xip/l:bejahen","<>:xip/const:ADJ#1772-1781$<i>241","<:xip/d:ADJMOD$<i>239",">:xip/d:NMOD$<i>241"],["s:Urteile","i:urteile","_241#1782-1789","opennlp/p:NN","cnx/l:urteil","cnx/p:N","cnx/m:PL","cnx/syn:@NH","tt/l:Urteil","tt/p:NN","mate/l:urteil","mate/p:NN","mate/m:case:acc","mate/m:number:pl","mate/m:gender:neut","<:mate/d:NK$<i>240",">:mate/d:PD$<i>242","xip/p:NOUN","xip/l:Urteil","<>:xip/const:NOUN#1782-1789$<i>242","<:xip/d:NMOD$<i>240",">:xip/d:PRED$<i>242"],["s:sind","i:sind","_242#1790-1794","opennlp/p:VAFIN","cnx/l:sein","cnx/p:V","cnx/m:IND","cnx/m:PRES","cnx/syn:@MAIN","tt/l:sein","tt/p:VAFIN","mate/l:sein","mate/p:VAFIN","mate/m:number:pl","mate/m:person:3","mate/m:tense:pres","mate/m:mood:ind","<:mate/d:CP$<i>225","<:mate/d:PD$<i>241",">:mate/d:OC$<i>222","xip/p:VERB","xip/l:sein","<>:xip/const:VERB#1790-1794$<i>243","<:xip/d:SUBJ$<i>228","<:xip/d:PRED$<i>241","xip/d:VMAIN"],["s:Der","i:der","_243#1796-1799","<>:s#1796-1915$<i>259","opennlp/p:ART","cnx/l:der","cnx/p:DET","cnx/syn:@PREMOD","tt/l:die","tt/p:ART","mate/l:der","mate/p:ART","mate/m:case:nom","mate/m:number:sg","mate/m:gender:masc",">:mate/d:NK$<i>245","xip/p:DET","xip/l:der","<>:xip/const:DET#1796-1799$<i>244","<>:xip/const:TOP#1796-1915$<i>259","<>:xip/const:MC#1796-1914$<i>259<b>1","<>:xip/const:NP#1796-1812$<i>246<b>2",">:xip/d:DETERM$<i>245"],["s:zweite","i:zweite","_244#1800-1806","opennlp/p:ADJA","cnx/l:zweite","cnx/p:NUM","cnx/m:ORD","cnx/syn:@PREMOD","<>:cnx/const:np#1800-1812$<i>246","tt/l:zweit","tt/p:ADJA","mate/l:zweiter","mate/p:ADJA","mate/m:case:nom","mate/m:number:sg","mate/m:gender:masc","mate/m:degree:pos",">:mate/d:NK$<i>245","xip/p:ADJ","xip/l:zwei","<>:xip/const:NPA#1800-1812$<i>246<b>3","<>:xip/const:AP#1800-1806$<i>245<b>4","<>:xip/const:ADJ#1800-1806$<i>245",">:xip/d:NMOD$<i>245"],["s:Modus","i:modus","_245#1807-1812","opennlp/p:NN","cnx/l:modus","cnx/p:N","cnx/syn:@NH","tt/l:Modus","tt/p:NN","mate/l:modus","mate/p:NN","mate/m:case:nom","mate/m:number:sg","mate/m:gender:masc","<:mate/d:NK$<i>243","<:mate/d:NK$<i>244",">:mate/d:SB$<i>253","<:mate/d:AG$<i>248","xip/p:NOUN","xip/l:Modus","<>:xip/const:NOUN#1807-1812$<i>246","<:xip/d:DETERM$<i>243","<:xip/d:NMOD$<i>244",">:xip/d:SUBJ$<i>258","<:xip/d:NMOD$<i>248"],["s:der","i:der","_246#1813-1816","opennlp/p:ART","cnx/l:die","cnx/p:DET","cnx/syn:@PREMOD","tt/l:die","tt/p:ART","mate/l:der","mate/p:ART","mate/m:case:gen","mate/m:number:sg","mate/m:gender:fem",">:mate/d:NK$<i>248","xip/p:DET","xip/l:der","<>:xip/const:DET#1813-1816$<i>247","<>:xip/const:NP#1813-1836$<i>249<b>2",">:xip/d:DETERM$<i>248"],["s:ersten","i:ersten","_247#1817-1823","opennlp/p:ADJA","cnx/l:erste","cnx/p:NUM","cnx/m:ORD","cnx/syn:@PREMOD","<>:cnx/const:np#1817-1836$<i>249","tt/l:erst","tt/p:ADJA","mate/l:erster","mate/p:ADJA","mate/m:case:gen","mate/m:number:sg","mate/m:gender:fem","mate/m:degree:pos",">:mate/d:NK$<i>248","xip/p:ADJ","xip/l:ein","<>:xip/const:NPA#1817-1836$<i>249<b>3","<>:xip/const:AP#1817-1823$<i>248<b>4","<>:xip/const:ADJ#1817-1823$<i>248",">:xip/d:NMOD$<i>248"],["s:Schlussfigur","i:schlussfigur","_248#1824-1836","opennlp/p:NN","cnx/l:schluss","cnx/l:figur","cnx/p:N","cnx/syn:@NH","tt/l:Schlussfigur","tt/p:NN","mate/l:schlussfigur","mate/p:NN","mate/m:case:gen","mate/m:number:sg","mate/m:gender:fem","<:mate/d:NK$<i>246","<:mate/d:NK$<i>247",">:mate/d:AG$<i>245","<:mate/d:AG$<i>252","xip/p:NOUN","xip/l:Schluss","xip/l:Figur","xip/l:Schlussfigur","<>:xip/const:NOUN#1824-1836$<i>249","<:xip/d:DETERM$<i>246","<:xip/d:NMOD$<i>247",">:xip/d:NMOD$<i>245","<:xip/d:NMOD$<i>252"],["s:des","i:des","_249#1837-1840","opennlp/p:ART","cnx/l:der","cnx/p:DET","cnx/syn:@PREMOD","tt/l:die","tt/p:ART","mate/l:der","mate/p:ART","mate/m:case:gen","mate/m:number:sg","mate/m:gender:masc",">:mate/d:NK$<i>252","xip/p:DET","xip/l:der","<>:xip/const:NP#1837-1876$<i>253<b>2","<>:xip/const:DET#1837-1840$<i>250",">:xip/d:DETERM$<i>252"],["s:einfachen","i:einfachen","_250#1841-1850","opennlp/p:ADJA","cnx/l:einfach","cnx/p:A","cnx/syn:@PREMOD","<>:cnx/const:np#1841-1876$<i>253","tt/l:einfach","tt/p:ADJA","mate/l:einfach","mate/p:ADJA","mate/m:case:gen","mate/m:number:sg","mate/m:gender:masc","mate/m:degree:pos",">:mate/d:MO$<i>251","xip/p:ADJ","xip/l:ein}fach","<>:xip/const:NPA#1841-1876$<i>253<b>3","<>:xip/const:AP#1841-1850$<i>251<b>4","<>:xip/const:ADJ#1841-1850$<i>251",">:xip/d:NMOD$<i>252"],["s:kategorischen","i:kategorischen","_251#1851-1864","opennlp/p:ADJA","cnx/l:kategorisch","cnx/p:A","cnx/syn:@PREMOD","tt/l:kategorisch","tt/p:ADJA","mate/l:kategorisch","mate/p:ADJA","mate/m:case:gen","mate/m:number:sg","mate/m:gender:masc","mate/m:degree:pos","<:mate/d:MO$<i>250",">:mate/d:NK$<i>252","xip/p:ADJ","xip/l:kategorisch","<>:xip/const:ADJ#1851-1864$<i>252","<>:xip/const:AP#1851-1864$<i>252<b>4",">:xip/d:NMOD$<i>252"],["s:Syllogismus","i:syllogismus","_252#1865-1876","opennlp/p:NN","cnx/l:Syllogismus","cnx/p:N","cnx/m:Prop","cnx/syn:@NH","tt/l:Syllogismus","tt/p:NN","mate/l:syllogismus","mate/p:NN","mate/m:case:gen","mate/m:number:sg","mate/m:gender:masc","<:mate/d:NK$<i>249","<:mate/d:NK$<i>251",">:mate/d:AG$<i>248","xip/p:NOUN","xip/l:Syllogismus","<>:xip/const:NOUN#1865-1876$<i>253","<:xip/d:DETERM$<i>249","<:xip/d:NMOD$<i>250","<:xip/d:NMOD$<i>251",">:xip/d:NMOD$<i>248"],["s:wird","i:wird","_253#1877-1881","opennlp/p:VAFIN","cnx/l:werden","cnx/p:V","cnx/m:IND","cnx/m:PRES","cnx/syn:@MAIN","tt/l:werden","tt/p:VAFIN","mate/l:werden","mate/p:VAFIN","mate/m:number:sg","mate/m:person:3","mate/m:tense:pres","mate/m:mood:ind","<:mate/d:SB$<i>245","<:mate/d:OC$<i>258","xip/p:VERB","xip/l:werden","<>:xip/const:VERB#1877-1881$<i>254","<:xip/d:AUXIL$<i>258"],["s:mit","i:mit","_254#1882-1885","opennlp/p:APPR","cnx/l:mit","cnx/p:PREP","cnx/syn:@PREMARK","tt/l:mit","tt/p:APPR","mate/l:mit","mate/p:APPR",">:mate/d:MO$<i>258","<:mate/d:NK$<i>256","xip/p:PREP","xip/l:mit","<>:xip/const:PP#1882-1894$<i>257<b>2","<>:xip/const:PREP#1882-1885$<i>255"],["s:dem","i:dem","_255#1886-1889","opennlp/p:ART","cnx/l:das","cnx/p:DET","cnx/syn:@PREMOD","tt/l:die","tt/p:ART","mate/l:der","mate/p:ART","mate/m:case:dat","mate/m:number:sg","mate/m:gender:masc",">:mate/d:NK$<i>256","xip/p:DET","xip/l:der","<>:xip/const:DET#1886-1889$<i>256","<>:xip/const:NP#1886-1894$<i>257<b>3",">:xip/d:DETERM$<i>256"],["s:Wort","i:wort","_256#1890-1894","opennlp/p:NN","cnx/l:wort","cnx/p:N","cnx/syn:@NH","<>:cnx/const:np#1890-1894$<i>257","tt/l:Wort","tt/p:NN","mate/l:wort","mate/p:NN","mate/m:case:dat","mate/m:number:sg","mate/m:gender:masc","<:mate/d:NK$<i>255",">:mate/d:NK$<i>254","<:mate/d:NK$<i>257","xip/p:NOUN","xip/l:Wort","<>:xip/const:NOUN#1890-1894$<i>257","<>:xip/const:NPA#1890-1894$<i>257<b>4","<:xip/d:DETERM$<i>255","<:xip/d:NMOD$<i>257"],["s:Celarent","i:celarent","_257#1895-1903","opennlp/p:NN","cnx/l:celarent","cnx/p:N","cnx/syn:@NH","<>:cnx/const:np#1895-1903$<i>258","tt/p:NN","tt/p:NE","mate/l:celarent","mate/p:NE","mate/m:case:nom","mate/m:number:sg","mate/m:gender:*",">:mate/d:NK$<i>256","xip/p:NOUN","xip/l:Celarent","<>:xip/const:NOUN#1895-1903$<i>258","<>:xip/const:NP#1895-1903$<i>258<b>2","<>:xip/const:NPA#1895-1903$<i>258<b>3",">:xip/d:NMOD$<i>256"],["s:bezeichnet","i:bezeichnet","_258#1904-1914","opennlp/p:VVPP","cnx/l:bezeichnen","cnx/p:V","cnx/m:PCP","cnx/m:PERF","cnx/syn:@MAIN","tt/l:bezeichnen","tt/p:VVPP","tt/l:bezeichnen","tt/p:VVFIN","mate/l:bezeichnen","mate/p:VVFIN","mate/m:number:sg","mate/m:person:3","mate/m:tense:pres","mate/m:mood:ind","<:mate/d:MO$<i>254",">:mate/d:OC$<i>253","xip/p:VERB","xip/l:bezeichnen","<>:xip/const:VERB#1904-1914$<i>259","<:xip/d:SUBJ$<i>245",">:xip/d:AUXIL$<i>253","xip/d:VMAIN"],["s:Diese","i:diese","_259#1916-1921","<>:s#1916-2089$<i>286","opennlp/p:PDAT","cnx/l:dieser","cnx/p:PRON","cnx/syn:@PREMOD","tt/l:diese","tt/p:PDAT","mate/l:dieser","mate/p:PDAT","mate/m:case:nom","mate/m:number:sg","mate/m:gender:fem",">:mate/d:NK$<i>260","xip/p:DET","xip/l:dies","<>:xip/const:TOP#1916-2089$<i>286","<>:xip/const:MC#1916-1943$<i>263<b>1","<>:xip/const:NP#1916-1933$<i>261<b>2","<>:xip/const:DET#1916-1921$<i>260",">:xip/d:DETERM$<i>260"],["s:Bezeichnung","i:bezeichnung","_260#1922-1933","opennlp/p:NN","cnx/l:bezeichnung","cnx/p:N","cnx/syn:@NH","<>:cnx/const:np#1922-1933$<i>261","tt/l:Bezeichnung","tt/p:NN","mate/l:bezeichnung","mate/p:NN","mate/m:case:nom","mate/m:number:sg","mate/m:gender:fem","<:mate/d:NK$<i>259",">:mate/d:SB$<i>261","xip/p:NOUN","xip/l:Bezeichnung","<>:xip/const:NPA#1922-1933$<i>261<b>3","<>:xip/const:NOUN#1922-1933$<i>261","<:xip/d:DETERM$<i>259",">:xip/d:SUBJ$<i>261"],["s:deutet","i:deutet","_261#1934-1940","opennlp/p:VVFIN","cnx/l:deuten","cnx/p:V","cnx/m:IND","cnx/m:PRES","cnx/syn:@MAIN","tt/l:deuten","tt/p:VVFIN","mate/l:deuten","mate/p:VVFIN","mate/m:number:sg","mate/m:person:3","mate/m:tense:pres","mate/m:mood:ind","<:mate/d:SB$<i>260","<:mate/d:SVP$<i>262","<:mate/d:PAR$<i>263","<:mate/d:OA$<i>270","<:mate/d:CD$<i>271","xip/p:VERB","xip/l:deuten","<>:xip/const:VERB#1934-1940$<i>262","<:xip/d:SUBJ$<i>260","xip/d:VMAIN","<:xip/d:VPREF$<i>262"],["s:an","i:an","_262#1941-1943","opennlp/p:PTKVZ","cnx/l:an","cnx/p:ADV","cnx/syn:@ADVL","tt/l:an","tt/p:PTKVZ","mate/l:an","mate/p:PTKVZ",">:mate/d:SVP$<i>261","xip/p:PTCL","xip/l:an","<>:xip/const:PTCL#1941-1943$<i>263",">:xip/d:VPREF$<i>261"],["s:dass","i:dass","_263#1945-1949","opennlp/p:KOUS","cnx/l:dass","cnx/p:CS","cnx/syn:@PREMARK","tt/l:dass","tt/p:KOUS","mate/l:dass","mate/p:KOUS",">:mate/d:PAR$<i>261","<:mate/d:NK$<i>265","xip/p:CONJ","xip/l:dass","<>:xip/const:CONJ#1945-1949$<i>264"],["s:dieser","i:dieser","_264#1950-1956","opennlp/p:PDAT","cnx/l:dieser","cnx/p:PRON","cnx/syn:@PREMOD","tt/l:diese","tt/p:PDAT","mate/l:dieser","mate/p:PDAT","mate/m:case:nom","mate/m:number:sg","mate/m:gender:masc",">:mate/d:NK$<i>265","xip/p:DET","xip/l:dies","<>:xip/const:NP#1950-1962$<i>266<b>1","<>:xip/const:DET#1950-1956$<i>265",">:xip/d:DETERM$<i>265"],["s:Modus","i:modus","_265#1957-1962","opennlp/p:NN","cnx/l:modus","cnx/p:N","cnx/syn:@NH","<>:cnx/const:np#1957-1962$<i>266","tt/l:Modus","tt/p:NN","mate/l:modus","mate/p:NN","mate/m:case:nom","mate/m:number:sg","mate/m:gender:masc","<:mate/d:NK$<i>264",">:mate/d:NK$<i>263","xip/p:NOUN","xip/l:Modus","<>:xip/const:NPA#1957-1962$<i>266<b>2","<>:xip/const:NOUN#1957-1962$<i>266","<:xip/d:DETERM$<i>264","xip/d:THEMA","<:xip/d:NMOD$<i>266"],["s:nur","i:nur","_266#1963-1966","opennlp/p:ADV","cnx/l:nur","cnx/p:ADV","cnx/syn:@ADVL","tt/l:nur","tt/p:ADV","mate/l:nur","mate/p:ADV",">:mate/d:MO$<i>270","xip/p:ADV","xip/l:nur","<>:xip/const:ADV#1963-1966$<i>267",">:xip/d:NMOD$<i>270",">:xip/d:NMOD$<i>265"],["s:ein","i:ein","_267#1967-1970","opennlp/p:ART","cnx/l:ein","cnx/p:DET","cnx/syn:@PREMOD","tt/l:eine","tt/p:ART","mate/l:ein","mate/p:ART","mate/m:case:nom","mate/m:number:sg","mate/m:gender:masc",">:mate/d:NK$<i>270","xip/p:DET","xip/l:ein","<>:xip/const:NP#1967-1998$<i>271<b>1","<>:xip/const:DET#1967-1970$<i>268",">:xip/d:DETERM$<i>270"],["s:allgemein","i:allgemein","_268#1971-1980","opennlp/p:ADJD","cnx/l:all","cnx/l:gemein","cnx/p:A","cnx/syn:@PREMOD","<>:cnx/const:np#1971-1998$<i>271","tt/l:allgemein","tt/p:ADJD","mate/l:allgemein","mate/p:ADJD","mate/m:degree:pos",">:mate/d:MO$<i>269","xip/p:ADJ","xip/l:allgemein","<>:xip/const:NPA#1971-1998$<i>271<b>2","<>:xip/const:AP#1971-1991$<i>270<b>3","<>:xip/const:ADJ#1971-1980$<i>269",">:xip/d:ADJMOD$<i>269"],["s:bejahendes","i:bejahendes","_269#1981-1991","opennlp/p:ADJA","cnx/l:bejahend","cnx/p:A","cnx/syn:@PREMOD","tt/l:bejahend","tt/p:ADJA","mate/l:bejahend","mate/p:ADJA","mate/m:case:nom","mate/m:number:sg","mate/m:gender:neut","mate/m:degree:pos","<:mate/d:MO$<i>268",">:mate/d:NK$<i>270","xip/p:ADJ","xip/l:bejahen","<>:xip/const:ADJ#1981-1991$<i>270","<:xip/d:ADJMOD$<i>268",">:xip/d:NMOD$<i>270"],["s:Urteil","i:urteil","_270#1992-1998","opennlp/p:NN","cnx/l:urteil","cnx/p:N","cnx/syn:@NH","tt/l:Urteil","tt/p:NN","mate/l:urteil","mate/p:NN","mate/m:case:nom","mate/m:number:sg","mate/m:gender:neut","<:mate/d:MO$<i>266","<:mate/d:NK$<i>267","<:mate/d:NK$<i>269",">:mate/d:OA$<i>261","xip/p:NOUN","xip/l:Urteil","<>:xip/const:NOUN#1992-1998$<i>271","<:xip/d:NMOD$<i>266","<:xip/d:DETERM$<i>267","<:xip/d:NMOD$<i>269","xip/d:THEMA"],["s:und","i:und","_271#2000-2003","opennlp/p:KON","cnx/l:und","cnx/p:CC","cnx/syn:@CC","tt/l:und","tt/p:KON","mate/l:und","mate/p:KON",">:mate/d:CD$<i>261","<:mate/d:CJ$<i>276","xip/p:CONJ","xip/l:und","<>:xip/const:MC#2000-2089$<i>286<b>1","<>:xip/const:CONJ#2000-2003$<i>272"],["s:zwar","i:zwar","_272#2004-2008","opennlp/p:ADV","cnx/l:zwar","cnx/p:ADV","cnx/syn:@ADVL","tt/l:zwar","tt/p:ADV","mate/l:zwar","mate/p:ADV",">:mate/d:MO$<i>276","xip/p:ADV","xip/l:zwar","<>:xip/const:ADV#2004-2008$<i>273",">:xip/d:VMOD$<i>276"],["s:als","i:als","_273#2009-2012","opennlp/p:APPR","cnx/l:als","cnx/p:PREP","cnx/syn:@PREMARK","tt/l:als","tt/p:KOKOM","mate/l:als","mate/p:APPR",">:mate/d:MO$<i>276","<:mate/d:NK$<i>275","xip/p:PREP","xip/l:als","<>:xip/const:PP#2009-2028$<i>276<b>2","<>:xip/const:PREP#2009-2012$<i>274"],["s:zweite","i:zweite","_274#2013-2019","opennlp/p:ADJA","cnx/l:zweite","cnx/p:NUM","cnx/m:ORD","cnx/syn:@PREMOD","<>:cnx/const:np#2013-2028$<i>276","tt/l:zweit","tt/p:ADJA","mate/l:zweiter","mate/p:ADJA","mate/m:case:acc","mate/m:number:sg","mate/m:gender:fem","mate/m:degree:pos",">:mate/d:NK$<i>275","xip/p:ADJ","xip/l:zwei","<>:xip/const:NP#2013-2028$<i>276<b>3","<>:xip/const:NPA#2013-2028$<i>276<b>4","<>:xip/const:AP#2013-2019$<i>275<b>5","<>:xip/const:ADJ#2013-2019$<i>275",">:xip/d:NMOD$<i>275"],["s:Prämisse","i:prämisse","_275#2020-2028","opennlp/p:NN","cnx/l:prämisse","cnx/p:N","cnx/syn:@NH","tt/l:Prämisse","tt/p:NN","mate/l:prämisse","mate/p:NN","mate/m:case:acc","mate/m:number:sg","mate/m:gender:fem","<:mate/d:NK$<i>274",">:mate/d:NK$<i>273","xip/p:NOUN","xip/l:Prämisse","<>:xip/const:NOUN#2020-2028$<i>276","<:xip/d:NMOD$<i>274"],["s:enthält","i:enthält","_276#2029-2036","opennlp/p:VVFIN","cnx/l:enthalten","cnx/p:V","cnx/m:IND","cnx/m:PRES","cnx/syn:@MAIN","tt/l:enthalten","tt/p:VVFIN","mate/l:enthalten","mate/p:VVFIN","mate/m:number:sg","mate/m:person:3","mate/m:tense:pres","mate/m:mood:ind","<:mate/d:MO$<i>272","<:mate/d:MO$<i>273",">:mate/d:CJ$<i>271","<:mate/d:MO$<i>285","xip/p:VERB","xip/l:enthalten","<>:xip/const:VERB#2029-2036$<i>277","<:xip/d:VMOD$<i>272","xip/d:VMAIN"],["s:weil","i:weil","_277#2038-2042","opennlp/p:KOUS","cnx/l:weil","cnx/p:CS","cnx/syn:@PREMARK","tt/l:weil","tt/p:KOUS","mate/l:weil","mate/p:KOUS",">:mate/d:CP$<i>285","xip/p:CONJ","xip/l:weil","<>:xip/const:SC#2038-2088$<i>286","<>:xip/const:CONJ#2038-2042$<i>278",">:xip/d:CONNECT$<i>285"],["s:die","i:die","_278#2043-2046","opennlp/p:ART","cnx/l:die","cnx/p:DET","cnx/syn:@PREMOD","tt/l:die","tt/p:ART","mate/l:der","mate/p:ART","mate/m:case:nom","mate/m:number:sg","mate/m:gender:fem",">:mate/d:NK$<i>280","xip/p:DET","xip/l:die","<>:xip/const:DET#2043-2046$<i>279","<>:xip/const:NP#2043-2059$<i>281<b>1",">:xip/d:DETERM$<i>280"],["s:zweite","i:zweite","_279#2047-2053","opennlp/p:ADJA","cnx/l:zweite","cnx/p:NUM","cnx/m:ORD","cnx/syn:@PREMOD","<>:cnx/const:np#2047-2062$<i>282","tt/l:zweit","tt/p:ADJA","mate/l:zweiter","mate/p:ADJA","mate/m:case:nom","mate/m:number:sg","mate/m:gender:fem","mate/m:degree:pos",">:mate/d:NK$<i>280","xip/p:ADJ","xip/l:zwei","<>:xip/const:NPA#2047-2059$<i>281<b>2","<>:xip/const:AP#2047-2053$<i>280<b>3","<>:xip/const:ADJ#2047-2053$<i>280",">:xip/d:NMOD$<i>280"],["s:Silbe","i:silbe","_280#2054-2059","opennlp/p:NN","cnx/l:silbe","cnx/p:N","cnx/syn:@PREMOD","tt/l:Silbe","tt/p:NN","mate/l:silbe","mate/p:NN","mate/m:case:nom","mate/m:number:sg","mate/m:gender:fem","<:mate/d:NK$<i>278","<:mate/d:NK$<i>279",">:mate/d:SB$<i>285","<:mate/d:NK$<i>281","xip/p:NOUN","xip/l:Silbe","<>:xip/const:NOUN#2054-2059$<i>281","<:xip/d:DETERM$<i>278","<:xip/d:NMOD$<i>279",">:xip/d:SUBJ$<i>285"],["s:la","i:la","_281#2060-2062","opennlp/p:NE","cnx/l:la","cnx/p:N","cnx/m:Prop","cnx/syn:@NH","tt/l:la","tt/p:FM","mate/l:La","mate/p:NE","mate/m:case:nom","mate/m:number:sg","mate/m:gender:fem",">:mate/d:NK$<i>280","xip/p:NOUN","xip/l:la","<>:xip/const:NOUN#2060-2062$<i>282","<>:xip/const:NP#2060-2062$<i>282<b>1","<>:xip/const:NPA#2060-2062$<i>282<b>2",">:xip/d:OBJ$<i>285"],["s:den","i:den","_282#2063-2066","opennlp/p:ART","cnx/l:der","cnx/p:DET","cnx/syn:@PREMOD","tt/l:die","tt/p:ART","mate/l:der","mate/p:ART","mate/m:case:acc","mate/m:number:sg","mate/m:gender:masc",">:mate/d:NK$<i>283","xip/p:DET","xip/l:der","<>:xip/const:NP#2063-2078$<i>284<b>1","<>:xip/const:DET#2063-2066$<i>283",">:xip/d:DETERM$<i>283"],["s:Buchstabenb","i:buchstabenb","_283#2067-2078","opennlp/p:NE","cnx/l:buchstabenb","cnx/p:N","cnx/syn:@NH","<>:cnx/const:np#2067-2080$<i>285","tt/p:NN","mate/l:buchstabenb","mate/p:NN","mate/m:case:acc","mate/m:number:sg","mate/m:gender:masc","<:mate/d:NK$<i>282",">:mate/d:NK$<i>284","xip/p:NOUN","xip/l:Buchstabenb","<>:xip/const:NPA#2067-2078$<i>284<b>2","<>:xip/const:NOUN#2067-2078$<i>284","<:xip/d:DETERM$<i>282",">:xip/d:OBJ$<i>285"],["s:a","i:a","_284#2079-2080","opennlp/p:NE","cnx/l:a","cnx/p:N","cnx/syn:@NH","tt/l:a","tt/p:FM","mate/p:APPO","<:mate/d:NK$<i>283",">:mate/d:MO$<i>285","xip/p:SYMBOL","xip/l:a","<>:xip/const:NP#2079-2080$<i>285<b>1","<>:xip/const:NPA#2079-2080$<i>285<b>2","<>:xip/const:NOUN#2079-2080$<i>285<b>3","<>:xip/const:SYMBOL#2079-2080$<i>285",">:xip/d:OBJ$<i>285"],["s:enthält","i:enthält","_285#2081-2088","opennlp/p:VVFIN","cnx/l:enthalten","cnx/p:V","cnx/m:IND","cnx/m:PRES","cnx/syn:@MAIN","tt/l:enthalten","tt/p:VVFIN","mate/l:enthalten","mate/p:VVFIN","mate/m:number:sg","mate/m:person:3","mate/m:tense:pres","mate/m:mood:ind","<:mate/d:CP$<i>277","<:mate/d:SB$<i>280","<:mate/d:MO$<i>284",">:mate/d:MO$<i>276","xip/p:VERB","xip/l:enthalten","<>:xip/const:VERB#2081-2088$<i>286","<:xip/d:CONNECT$<i>277","<:xip/d:SUBJ$<i>280","<:xip/d:OBJ$<i>281","<:xip/d:OBJ$<i>283","<:xip/d:OBJ$<i>284","xip/d:VMAIN"],["s:Die","i:die","_286#2090-2093","<>:s#2090-2256$<i>311","opennlp/p:ART","cnx/l:die","cnx/p:DET","cnx/syn:@PREMOD","tt/l:die","tt/p:ART","mate/l:der","mate/p:ART","mate/m:case:nom","mate/m:number:pl","mate/m:gender:*",">:mate/d:NK$<i>287","xip/p:DET","xip/l:die","<>:xip/const:DET#2090-2093$<i>287","<>:xip/const:TOP#2090-2256$<i>311","<>:xip/const:MC#2090-2256$<i>311<b>1","<>:xip/const:NP#2090-2113$<i>290<b>2",">:xip/d:DETERM$<i>289"],["s:übrigen","i:übrigen","_287#2094-2101","opennlp/p:ADJA","cnx/l:übrig","cnx/p:A","cnx/syn:@PREMOD","<>:cnx/const:np#2094-2113$<i>290","tt/l:übrig","tt/p:ADJA","mate/l:übrig","mate/p:ADJA","mate/m:case:nom","mate/m:number:pl","mate/m:gender:*","mate/m:degree:pos","<:mate/d:NK$<i>286","<:mate/d:AG$<i>289","<:mate/d:CD$<i>291","xip/p:ADJ","xip/l:übrig","<>:xip/const:NPA#2094-2113$<i>290<b>3","<>:xip/const:AP#2094-2101$<i>288<b>4","<>:xip/const:ADJ#2094-2101$<i>288",">:xip/d:NMOD$<i>289"],["s:zwei","i:zwei","_288#2102-2106","opennlp/p:CARD","cnx/l:zwei","cnx/p:NUM","cnx/syn:@PREMOD","tt/l:zwei","tt/p:CARD","mate/l:zwei","mate/p:CARD",">:mate/d:NK$<i>289","xip/p:NUM","xip/l:zwei","<>:xip/const:NUM#2102-2106$<i>289<b>4","<>:xip/const:NUM#2102-2106$<i>289",">:xip/d:NMOD$<i>289"],["s:Silben","i:silben","_289#2107-2113","opennlp/p:NN","cnx/l:silbe","cnx/p:N","cnx/m:PL","cnx/syn:@NH","tt/l:Silbe","tt/p:NN","mate/l:silbe","mate/p:NN","mate/m:case:nom","mate/m:number:pl","mate/m:gender:fem","<:mate/d:NK$<i>288",">:mate/d:AG$<i>287","xip/p:NOUN","xip/l:Silbe","<>:xip/const:NOUN#2107-2113$<i>290","<:xip/d:DETERM$<i>286","<:xip/d:NMOD$<i>287","<:xip/d:NMOD$<i>288",">:xip/d:SUBJ$<i>293","<:xip/d:NMOD$<i>292"],["s:Ce-","i:ce-","_290#2114-2117","opennlp/p:$(","tt/p:TRUNC","tt/p:NE","xip/p:TRUNC","xip/l:Ce-","<>:xip/const:NP#2114-2127$<i>293<b>2","<>:xip/const:NPA#2114-2127$<i>293<b>3","<>:xip/const:NOUN#2114-2127$<i>293<b>4","<>:xip/const:TRUNC#2114-2117$<i>291","<:xip/d:COORD$<i>291","<:xip/d:TRUNC$<i>292"],["s:und","i:und","_291#2118-2121","opennlp/p:KON","cnx/l:und","cnx/p:CC","cnx/syn:@CC","tt/l:und","tt/p:KON","mate/l:und","mate/p:KON",">:mate/d:CD$<i>287","<:mate/d:CJ$<i>293","xip/p:CONJ","xip/l:und","<>:xip/const:CONJ#2118-2121$<i>292",">:xip/d:COORD$<i>290",">:xip/d:COORD$<i>292"],["s:-rent","i:-rent","_292#2122-2127","opennlp/p:NN","tt/p:NN","xip/p:SYMBOL","xip/l:-rent","<>:xip/const:SYMBOL#2122-2127$<i>293","<:xip/d:COORD$<i>291",">:xip/d:NMOD$<i>289",">:xip/d:TRUNC$<i>290"],["s:kennzeichnen","i:kennzeichnen","_293#2128-2140","opennlp/p:VVFIN","cnx/l:kennzeichnen","cnx/p:V","cnx/m:IND","cnx/m:PRES","cnx/syn:@MAIN","tt/l:kennzeichnen","tt/p:VVFIN","tt/l:kennzeichnen","tt/p:VVINF","mate/l:kennzeichnen","mate/p:VVFIN","mate/m:number:pl","mate/m:person:3","mate/m:tense:pres","mate/m:mood:ind",">:mate/d:CJ$<i>291","<:mate/d:MO$<i>294","<:mate/d:SVP$<i>299","<:mate/d:SB$<i>303","xip/p:VERB","xip/l:kennzeichnen","<>:xip/const:VERB#2128-2140$<i>294","<:xip/d:SUBJ$<i>289","xip/d:VMAIN","<:xip/d:OBJ$<i>299"],["s:durch","i:durch","_294#2141-2146","opennlp/p:APPR","cnx/l:durch","cnx/p:PREP","cnx/syn:@PREMARK","tt/l:durch","tt/p:APPR","mate/l:durch","mate/p:APPR",">:mate/d:MO$<i>293","<:mate/d:NK$<i>298","xip/p:PREP","xip/l:durch","<>:xip/const:PP#2141-2174$<i>299<b>2","<>:xip/const:PREP#2141-2146$<i>295"],["s:den","i:den","_295#2147-2150","opennlp/p:ART","cnx/l:der","cnx/p:PRON","cnx/syn:@NH","tt/l:die","tt/p:ART","mate/l:der","mate/p:ART","mate/m:case:acc","mate/m:number:sg","mate/m:gender:masc",">:mate/d:NK$<i>298","xip/p:DET","xip/l:der","<>:xip/const:NP#2147-2174$<i>299<b>3","<>:xip/const:DET#2147-2150$<i>296",">:xip/d:DETERM$<i>298"],["s:darin","i:darin","_296#2151-2156","opennlp/p:PROAV","cnx/l:darin","cnx/p:ADV","cnx/syn:@ADVL","tt/l:darin","tt/p:PROAV","mate/l:darin","mate/p:PROAV",">:mate/d:MO$<i>297","xip/p:ADV","xip/l:darin","<>:xip/const:ADV#2151-2156$<i>297"],["s:enthaltenen","i:enthaltenen","_297#2157-2168","opennlp/p:ADJA","cnx/l:enthalten","cnx/p:A","cnx/syn:@PREMOD","<>:cnx/const:np#2157-2174$<i>299","tt/l:enthalten","tt/p:ADJA","mate/l:enthalten","mate/p:ADJA","mate/m:case:acc","mate/m:number:sg","mate/m:gender:masc","mate/m:degree:pos","<:mate/d:MO$<i>296",">:mate/d:NK$<i>298","xip/p:ADJ","xip/l:enthalten","<>:xip/const:NPA#2157-2174$<i>299<b>4","<>:xip/const:AP#2157-2168$<i>298<b>5","<>:xip/const:ADJ#2157-2168$<i>298",">:xip/d:NMOD$<i>298"],["s:Vokal","i:vokal","_298#2169-2174","opennlp/p:NN","cnx/l:vokal","cnx/p:N","cnx/syn:@NH","tt/l:Vokal","tt/p:NN","mate/l:vokal","mate/p:NN","mate/m:case:acc","mate/m:number:sg","mate/m:gender:masc","<:mate/d:NK$<i>295","<:mate/d:NK$<i>297",">:mate/d:NK$<i>294","xip/p:NOUN","xip/l:Vokal","<>:xip/const:NOUN#2169-2174$<i>299","<:xip/d:DETERM$<i>295","<:xip/d:NMOD$<i>297"],["s:e","i:e","_299#2175-2176","opennlp/p:VVFIN","cnx/l:e","cnx/p:N","cnx/syn:@NH","<>:cnx/const:np#2175-2176$<i>300","tt/l:e","tt/p:NE","tt/l:e","tt/p:XY","mate/l:E","mate/p:PTKVZ",">:mate/d:SVP$<i>293","xip/p:SYMBOL","xip/l:e","<>:xip/const:NP#2175-2176$<i>300<b>2","<>:xip/const:NPA#2175-2176$<i>300<b>3","<>:xip/const:NOUN#2175-2176$<i>300<b>4","<>:xip/const:SYMBOL#2175-2176$<i>300",">:xip/d:OBJ$<i>293"],["s:dass","i:dass","_300#2178-2182","opennlp/p:KOUS","cnx/l:dass","cnx/p:CS","cnx/syn:@PREMARK","tt/l:dass","tt/p:KOUS","mate/l:dass","mate/p:KOUS",">:mate/d:CP$<i>303","xip/p:CONJ","xip/l:dass","<>:xip/const:SC#2178-2255$<i>311","<>:xip/const:CONJ#2178-2182$<i>301",">:xip/d:CONNECT$<i>310"],["s:die","i:die","_301#2183-2186","opennlp/p:ART","cnx/l:die","cnx/p:DET","cnx/syn:@PREMOD","tt/l:die","tt/p:ART","mate/l:der","mate/p:ART","mate/m:case:nom","mate/m:number:pl","mate/m:gender:neut",">:mate/d:NK$<i>302","xip/p:DET","xip/l:die","<>:xip/const:NP#2183-2195$<i>303<b>1","<>:xip/const:DET#2183-2186$<i>302",">:xip/d:DETERM$<i>302"],["s:Prämisse","i:prämisse","_302#2187-2195","opennlp/p:NN","cnx/l:prämisse","cnx/p:N","cnx/syn:@NH","<>:cnx/const:np#2187-2195$<i>303","tt/l:Prämisse","tt/p:NN","mate/l:prämisse","mate/p:NN","mate/m:case:nom","mate/m:number:pl","mate/m:gender:neut","<:mate/d:NK$<i>301",">:mate/d:SB$<i>303","xip/p:NOUN","xip/l:Prämisse","<>:xip/const:NPA#2187-2195$<i>303<b>2","<>:xip/const:NOUN#2187-2195$<i>303","<:xip/d:DETERM$<i>301",">:xip/d:PRED$<i>310"],["s:maior","i:maior","_303#2196-2201","opennlp/p:ADJD","cnx/l:maior","cnx/p:N","cnx/syn:@NH","<>:cnx/const:np#2196-2201$<i>304","tt/p:ADJD","tt/p:NE","tt/p:NN","mate/l:maior","mate/p:VVFIN","<:mate/d:CP$<i>300","<:mate/d:SB$<i>302",">:mate/d:SB$<i>293","<:mate/d:CD$<i>304","xip/p:ADV","xip/l:maior","<>:xip/const:ADV#2196-2201$<i>304",">:xip/d:VMOD$<i>310"],["s:und","i:und","_304#2202-2205","opennlp/p:KON","cnx/l:und","cnx/p:CC","cnx/syn:@CC","tt/l:und","tt/p:KON","mate/l:und","mate/p:KON",">:mate/d:CD$<i>303","<:mate/d:CJ$<i>310","xip/p:CONJ","xip/l:und","<>:xip/const:CONJ#2202-2205$<i>305"],["s:die","i:die","_305#2206-2209","opennlp/p:ART","cnx/l:die","cnx/p:DET","cnx/syn:@PREMOD","tt/l:die","tt/p:ART","mate/l:der","mate/p:ART","mate/m:case:nom","mate/m:number:sg","mate/m:gender:fem",">:mate/d:NK$<i>306","xip/p:DET","xip/l:die","<>:xip/const:NP#2206-2250$<i>310<b>1","<>:xip/const:NPA#2206-2250$<i>310<b>2","<>:xip/const:AP#2206-2242$<i>309<b>3","<>:xip/const:NP#2206-2220$<i>307<b>4","<>:xip/const:DET#2206-2209$<i>306",">:xip/d:DETERM$<i>306"],["s:Konklusion","i:konklusion","_306#2210-2220","opennlp/p:NN","cnx/l:konklusion","cnx/p:N","cnx/syn:@NH","<>:cnx/const:np#2210-2220$<i>307","tt/l:Konklusion","tt/p:NN","mate/l:konklusion","mate/p:NN","mate/m:case:nom","mate/m:number:sg","mate/m:gender:fem","<:mate/d:NK$<i>305",">:mate/d:SB$<i>310","xip/p:NOUN","xip/l:Konklusion","<>:xip/const:NPA#2210-2220$<i>307<b>5","<>:xip/const:NOUN#2210-2220$<i>307","<:xip/d:DETERM$<i>305"],["s:allgemein","i:allgemein","_307#2221-2230","opennlp/p:ADJD","cnx/l:all","cnx/l:gemein","cnx/p:A","cnx/syn:@PREMOD","<>:cnx/const:np#2221-2250$<i>310","tt/l:allgemein","tt/p:ADJD","mate/l:allgemein","mate/p:ADJD","mate/m:degree:pos",">:mate/d:MO$<i>308","xip/p:ADJ","xip/l:allgemein","<>:xip/const:ADJ#2221-2230$<i>308",">:xip/d:ADJMOD$<i>308"],["s:verneinende","i:verneinende","_308#2231-2242","opennlp/p:ADJA","cnx/l:verneinend","cnx/p:A","cnx/syn:@PREMOD","tt/l:verneinend","tt/p:ADJA","mate/l:verneinend","mate/p:ADJA","mate/m:case:nom","mate/m:number:sg","mate/m:gender:fem","mate/m:degree:pos","<:mate/d:MO$<i>307",">:mate/d:NK$<i>309","xip/p:ADJ","xip/l:verneinen","<>:xip/const:ADJ#2231-2242$<i>309","<:xip/d:ADJMOD$<i>307",">:xip/d:NMOD$<i>309"],["s:Urteile","i:urteile","_309#2243-2250","opennlp/p:NN","cnx/l:urteil","cnx/p:N","cnx/m:PL","cnx/syn:@NH","tt/l:Urteil","tt/p:NN","mate/l:urteil","mate/p:NN","mate/m:case:nom","mate/m:number:sg","mate/m:gender:fem","<:mate/d:NK$<i>308",">:mate/d:PD$<i>310","xip/p:NOUN","xip/l:Urteil","<>:xip/const:NOUN#2243-2250$<i>310","<:xip/d:NMOD$<i>308",">:xip/d:SUBJ$<i>310"],["s:sind","i:sind","_310#2251-2255","opennlp/p:VAFIN","cnx/l:sein","cnx/p:V","cnx/m:IND","cnx/m:PRES","cnx/syn:@MAIN","tt/l:sein","tt/p:VAFIN","mate/l:sein","mate/p:VAFIN","mate/m:number:pl","mate/m:person:3","mate/m:tense:pres","mate/m:mood:ind","<:mate/d:SB$<i>306","<:mate/d:PD$<i>309",">:mate/d:CJ$<i>304","xip/p:VERB","xip/l:sein","<>:xip/const:VERB#2251-2255$<i>311","<:xip/d:CONNECT$<i>300","<:xip/d:PRED$<i>302","<:xip/d:VMOD$<i>303","<:xip/d:SUBJ$<i>309","xip/d:VMAIN"],["s:Erstmals","i:erstmals","_311#2257-2265","<>:s#2257-2408$<i>329","<>:p#2257-2498$<i>340","opennlp/p:ADV","cnx/l:erstmals","cnx/p:ADV","cnx/syn:@ADVL","tt/l:erstmals","tt/p:ADV","mate/l:erstmals","mate/p:ADV",">:mate/d:MO$<i>328","xip/p:ADV","xip/l:erstmals","<>:xip/const:TOP#2257-2408$<i>329","<>:xip/const:MC#2257-2407$<i>329<b>1","<>:xip/const:ADV#2257-2265$<i>312",">:xip/d:VMOD$<i>328"],["s:wurden","i:wurden","_312#2266-2272","opennlp/p:VAFIN","cnx/l:werden","cnx/p:V","cnx/m:IND","cnx/m:PAST","cnx/syn:@MAIN","tt/l:werden","tt/p:VAFIN","mate/l:werden","mate/p:VAFIN","mate/m:number:pl","mate/m:person:3","mate/m:tense:past","mate/m:mood:ind","<:mate/d:SB$<i>315","<:mate/d:OC$<i>328","xip/p:VERB","xip/l:werden","<>:xip/const:VERB#2266-2272$<i>313","<:xip/d:AUXIL$<i>328"],["s:derartige","i:derartige","_313#2273-2282","opennlp/p:ART","cnx/l:derartig","cnx/p:A","cnx/syn:@PREMOD","<>:cnx/const:np#2273-2332$<i>318","tt/l:derartig","tt/p:ADJA","mate/l:derartig","mate/p:ADJA","mate/m:case:nom","mate/m:number:pl","mate/m:gender:fem","mate/m:degree:pos",">:mate/d:MO$<i>314","xip/p:ADJ","xip/l:derartig","<>:xip/const:ADJ#2273-2282$<i>314","<>:xip/const:NP#2273-2318$<i>316<b>2","<>:xip/const:NPA#2273-2318$<i>316<b>3","<>:xip/const:AP#2273-2282$<i>314<b>4",">:xip/d:NMOD$<i>315"],["s:symbolische","i:symbolische","_314#2283-2294","opennlp/p:ADJA","cnx/l:symbolisch","cnx/p:A","cnx/syn:@PREMOD","tt/l:symbolisch","tt/p:ADJA","mate/l:symbolisch","mate/p:ADJA","mate/m:case:nom","mate/m:number:pl","mate/m:gender:fem","mate/m:degree:pos","<:mate/d:MO$<i>313",">:mate/d:NK$<i>315","xip/p:ADJ","xip/l:symbolisch","<>:xip/const:AP#2283-2294$<i>315<b>4","<>:xip/const:ADJ#2283-2294$<i>315",">:xip/d:NMOD$<i>315"],["s:Buchstabenbezeichnungen","i:buchstabenbezeichnungen","_315#2295-2318","opennlp/p:NN","cnx/l:buchstabe","cnx/l:bezeichnung","cnx/p:N","cnx/m:PL","cnx/syn:@NH","tt/p:NN","mate/l:buchstabenbezeichnung","mate/p:NN","mate/m:case:nom","mate/m:number:pl","mate/m:gender:fem","<:mate/d:NK$<i>314",">:mate/d:SB$<i>312","<:mate/d:MNR$<i>316","xip/p:NOUN","xip/l:Buchstabe","xip/l:Bezeichnung","xip/l:Buchstabebezeichnung","<>:xip/const:NOUN#2295-2318$<i>316","<:xip/d:NMOD$<i>313","<:xip/d:NMOD$<i>314",">:xip/d:SUBJ$<i>328"],["s:für","i:für","_316#2319-2322","opennlp/p:APPR","cnx/l:für","cnx/p:PREP","cnx/syn:@POSTMOD","tt/l:für","tt/p:APPR","mate/l:für","mate/p:APPR",">:mate/d:MNR$<i>315","<:mate/d:NK$<i>317","xip/p:PREP","xip/l:für","<>:xip/const:PREP#2319-2322$<i>317","<>:xip/const:PP#2319-2332$<i>318<b>2"],["s:Quantität","i:quantität","_317#2323-2332","opennlp/p:NN","cnx/l:quantität","cnx/p:N","cnx/syn:@NH","tt/l:Quantität","tt/p:NN","mate/l:quantität","mate/p:NN","mate/m:case:acc","mate/m:number:sg","mate/m:gender:fem",">:mate/d:NK$<i>316","<:mate/d:CD$<i>318","xip/p:NOUN","xip/l:Quantität","<>:xip/const:NOUN#2323-2332$<i>318","<>:xip/const:NP#2323-2332$<i>318<b>3","<>:xip/const:NPA#2323-2332$<i>318<b>4","<:xip/d:COORD$<i>318"],["s:und","i:und","_318#2333-2336","opennlp/p:KON","cnx/l:und","cnx/p:CC","cnx/syn:@CC","tt/l:und","tt/p:KON","mate/l:und","mate/p:KON",">:mate/d:CD$<i>317","<:mate/d:CJ$<i>319","xip/p:CONJ","xip/l:und","<>:xip/const:CONJ#2333-2336$<i>319",">:xip/d:COORD$<i>317",">:xip/d:COORD$<i>319"],["s:Qualität","i:qualität","_319#2337-2345","opennlp/p:NN","cnx/l:qualität","cnx/p:N","cnx/syn:@NH","<>:cnx/const:np#2337-2358$<i>322","tt/l:Qualität","tt/p:NN","mate/l:qualität","mate/p:NN","mate/m:case:acc","mate/m:number:sg","mate/m:gender:fem",">:mate/d:CJ$<i>318","<:mate/d:PG$<i>320","xip/p:NOUN","xip/l:Qualität","<>:xip/const:NOUN#2337-2345$<i>320","<>:xip/const:NP#2337-2345$<i>320<b>2","<>:xip/const:NPA#2337-2345$<i>320<b>3","<:xip/d:COORD$<i>318",">:xip/d:VMOD$<i>328"],["s:von","i:von","_320#2346-2349","opennlp/p:APPR","cnx/l:von","cnx/p:PREP","cnx/syn:@POSTMOD","tt/l:von","tt/p:APPR","mate/l:von","mate/p:APPR",">:mate/d:PG$<i>319","<:mate/d:NK$<i>321","xip/p:PREP","xip/l:von","<>:xip/const:PP#2346-2358$<i>322<b>2","<>:xip/const:PREP#2346-2349$<i>321"],["s:Aussagen","i:aussagen","_321#2350-2358","opennlp/p:NN","cnx/l:aussage","cnx/p:N","cnx/m:PL","cnx/syn:@NH","tt/l:Aussage","tt/p:NN","mate/l:aussage","mate/p:NN","mate/m:case:dat","mate/m:number:pl","mate/m:gender:fem",">:mate/d:NK$<i>320","xip/p:NOUN","xip/l:aussagen","<>:xip/const:NOUN#2350-2358$<i>322","<>:xip/const:NP#2350-2358$<i>322<b>3","<>:xip/const:NPA#2350-2358$<i>322<b>4"],["s:im","i:im","_322#2359-2361","opennlp/p:APPRART","tt/l:im","tt/p:APPRART","mate/l:in","mate/p:APPRART","mate/m:case:dat","mate/m:number:sg","mate/m:gender:masc",">:mate/d:MO$<i>328","xip/p:PREP","xip/l:in","<>:xip/const:PREP#2359-2361$<i>323","<>:xip/const:PP#2359-2377$<i>325<b>2"],["s:11.","i:11.","_323#2362-2365","opennlp/p:ADJA","cnx/l:11.","cnx/p:NUM","cnx/m:ORD","cnx/syn:@PREMOD","<>:cnx/const:np#2362-2397$<i>328","tt/l:11.","tt/p:ADJA","xip/p:NUM","xip/l:11.","<>:xip/const:NP#2362-2377$<i>325<b>3","<>:xip/const:NPA#2362-2377$<i>325<b>4","<>:xip/const:NUM#2362-2365$<i>324"],["s:Jahrhundert","i:jahrhundert","_324#2366-2377","opennlp/p:NN","cnx/l:jahr","cnx/l:hundert","cnx/p:N","cnx/syn:@NH","tt/l:Jahrhundert","tt/p:NN","mate/l:jahrhundert","mate/p:NN",">:mate/d:MO$<i>328","<:mate/d:PG$<i>325","xip/p:NOUN","xip/l:Jahrhundert","<>:xip/const:NOUN#2366-2377$<i>325"],["s:von","i:von","_325#2378-2381","opennlp/p:APPR","cnx/l:von","cnx/p:PREP","cnx/syn:@POSTMOD","tt/l:von","tt/p:APPR","mate/l:von","mate/p:APPR",">:mate/d:PG$<i>324","<:mate/d:NK$<i>327","xip/p:PREP","xip/l:von","<>:xip/const:PREP#2378-2381$<i>326","<>:xip/const:PP#2378-2397$<i>328<b>2"],["s:Michael","i:michael","_326#2382-2389","opennlp/p:NE","corenlp/ne_dewac_175m_600:I-PER","corenlp/ne_hgc_175m_600:I-PER","cnx/l:Michael","cnx/p:N","cnx/m:Prop","cnx/syn:@PREMOD","tt/l:Michael","tt/p:NE","mate/l:michael","mate/p:NE","mate/m:case:nom","mate/m:number:sg","mate/m:gender:masc",">:mate/d:PNC$<i>327","xip/p:NOUN","xip/l:Michael","<>:xip/const:NP#2382-2397$<i>328<b>3","<>:xip/const:NPA#2382-2397$<i>328<b>4","<>:xip/const:NOUN#2382-2397$<i>328<b>5","<>:xip/const:NOUN#2382-2389$<i>327"],["s:Psellos","i:psellos","_327#2390-2397","opennlp/p:ADJD","corenlp/ne_dewac_175m_600:I-PER","corenlp/ne_hgc_175m_600:I-PER","cnx/l:Psellos","cnx/p:N","cnx/m:Prop","cnx/syn:@NH","tt/p:NE","mate/l:psellos","mate/p:NE","mate/m:case:dat","mate/m:number:sg","mate/m:gender:masc","<:mate/d:PNC$<i>326",">:mate/d:NK$<i>325","xip/p:NOUN","xip/l:Psellos","<>:xip/const:NOUN#2390-2397$<i>328"],["s:verwendet","i:verwendet","_328#2398-2407","opennlp/p:VVPP","cnx/l:verwenden","cnx/p:V","cnx/m:IND","cnx/m:PRES","cnx/syn:@MAIN","tt/l:verwenden","tt/p:VVPP","mate/l:verwenden","mate/p:VVFIN","mate/m:number:sg","mate/m:person:3","mate/m:tense:pres","mate/m:mood:ind","<:mate/d:MO$<i>311","<:mate/d:MO$<i>322","<:mate/d:MO$<i>324",">:mate/d:OC$<i>312","xip/p:VERB","xip/l:verwenden","<>:xip/const:VERB#2398-2407$<i>329","<:xip/d:VMOD$<i>311","<:xip/d:SUBJ$<i>315","<:xip/d:VMOD$<i>319",">:xip/d:AUXIL$<i>312","xip/d:VMAIN"],["s:Die","i:die","_329#2409-2412","<>:s#2409-2498$<i>340","opennlp/p:ART","cnx/l:die","cnx/p:DET","cnx/syn:@PREMOD","tt/l:die","tt/p:ART","tt/l:die","tt/p:PDS","mate/l:der","mate/p:ART","mate/m:case:nom","mate/m:number:sg","mate/m:gender:fem",">:mate/d:NK$<i>332","xip/p:DET","xip/l:die","<>:xip/const:DET#2409-2412$<i>330","<>:xip/const:TOP#2409-2498$<i>340","<>:xip/const:MC#2409-2462$<i>337<b>1","<>:xip/const:NP#2409-2441$<i>333<b>2",">:xip/d:DETERM$<i>332"],["s:allgemein","i:allgemein","_330#2413-2422","opennlp/p:ADJD","cnx/l:all","cnx/l:gemein","cnx/p:A","cnx/syn:@PREMOD","<>:cnx/const:np#2413-2441$<i>333","tt/l:allgemein","tt/p:ADJD","mate/l:allgemein","mate/p:ADJD","mate/m:degree:pos",">:mate/d:MO$<i>331","xip/p:ADJ","xip/l:allgemein","<>:xip/const:ADJ#2413-2422$<i>331","<>:xip/const:NPA#2413-2441$<i>333<b>3","<>:xip/const:AP#2413-2433$<i>332<b>4",">:xip/d:ADJMOD$<i>331"],["s:bejahenden","i:bejahenden","_331#2423-2433","opennlp/p:ADJA","cnx/l:bejahend","cnx/p:A","cnx/syn:@PREMOD","tt/l:bejahend","tt/p:ADJA","mate/l:bejahend","mate/p:ADJA","mate/m:case:acc","mate/m:number:pl","mate/m:gender:neut","mate/m:degree:pos","<:mate/d:MO$<i>330",">:mate/d:NK$<i>332","xip/p:ADJ","xip/l:bejahen","<>:xip/const:ADJ#2423-2433$<i>332","<:xip/d:ADJMOD$<i>330",">:xip/d:NMOD$<i>332"],["s:Urteile","i:urteile","_332#2434-2441","opennlp/p:NN","cnx/l:urteil","cnx/p:N","cnx/m:PL","cnx/syn:@NH","tt/l:Urteil","tt/p:NN","mate/l:urteil","mate/p:NN","mate/m:case:acc","mate/m:number:pl","mate/m:gender:neut","<:mate/d:NK$<i>329","<:mate/d:NK$<i>331",">:mate/d:OA$<i>333","<:mate/d:APP$<i>339","xip/p:NOUN","xip/l:Urteil","<>:xip/const:NOUN#2434-2441$<i>333","<:xip/d:DETERM$<i>329","<:xip/d:NMOD$<i>331",">:xip/d:OBJ$<i>333"],["s:bezeichnete","i:bezeichnete","_333#2442-2453","opennlp/p:VVFIN","cnx/l:bezeichnen","cnx/p:V","cnx/m:IND","cnx/m:PAST","cnx/syn:@MAIN","tt/l:bezeichnen","tt/p:VVFIN","mate/l:bezeichnen","mate/p:VVFIN","mate/m:number:sg","mate/m:person:3","mate/m:tense:past","mate/m:mood:ind","<:mate/d:OA$<i>332","<:mate/d:SB$<i>334","<:mate/d:SVP$<i>335","xip/p:VERB","xip/l:bezeichnen","<>:xip/const:VERB#2442-2453$<i>334","<:xip/d:OBJ$<i>332","xip/d:VMAIN","<:xip/d:SUBJ$<i>334"],["s:er","i:er","_334#2454-2456","opennlp/p:PPER","cnx/l:er","cnx/p:PRON","cnx/syn:@NH","tt/l:er","tt/p:PPER","mate/l:er","mate/p:PPER","mate/m:case:nom","mate/m:number:sg","mate/m:gender:masc","mate/m:person:3",">:mate/d:SB$<i>333","xip/p:PRON","xip/l:er","<>:xip/const:NP#2454-2456$<i>335<b>2","<>:xip/const:PRON#2454-2456$<i>335",">:xip/d:SUBJ$<i>333"],["s:mit","i:mit","_335#2457-2460","opennlp/p:APPR","cnx/l:mit","cnx/p:ADV","cnx/syn:@ADVL","tt/l:mit","tt/p:PTKVZ","mate/l:mit","mate/p:PTKVZ",">:mate/d:SVP$<i>333","<:mate/d:--$<i>336","xip/p:PREP","xip/l:mit","<>:xip/const:PP#2457-2462$<i>337<b>2","<>:xip/const:PREP#2457-2460$<i>336"],["s:α","i:α","_336#2461-2462","opennlp/p:NN","cnx/l:α","tt/p:$.","mate/p:$.",">:mate/d:--$<i>335","xip/p:SYMBOL","xip/l:α","<>:xip/const:NP#2461-2462$<i>337<b>3","<>:xip/const:NPA#2461-2462$<i>337<b>4","<>:xip/const:NOUN#2461-2462$<i>337<b>5","<>:xip/const:SYMBOL#2461-2462$<i>337"],["s:dem","i:dem","_337#2464-2467","opennlp/p:ART","cnx/l:der","cnx/p:DET","cnx/syn:@PREMOD","tt/l:die","tt/p:ART","tt/l:die","tt/p:PRELS","mate/l:der","mate/p:ART","mate/m:case:dat","mate/m:number:sg","mate/m:gender:neut",">:mate/d:NK$<i>339","xip/p:DET","xip/l:der","<>:xip/const:DET#2464-2467$<i>338","<>:xip/const:NP#2464-2491$<i>340",">:xip/d:DETERM$<i>339"],["s:griechischen","i:griechischen","_338#2468-2480","opennlp/p:ADJA","corenlp/ne_dewac_175m_600:I-MISC","corenlp/ne_hgc_175m_600:I-MISC","cnx/l:griechisch","cnx/p:A","cnx/syn:@PREMOD","<>:cnx/const:np#2468-2497$<i>341","tt/l:griechisch","tt/p:ADJA","mate/l:griechisch","mate/p:ADJA","mate/m:case:dat","mate/m:number:sg","mate/m:gender:neut","mate/m:degree:pos",">:mate/d:NK$<i>339","xip/p:ADJ","xip/l:griechisch","<>:xip/const:ADJ#2468-2480$<i>339","<>:xip/const:NPA#2468-2491$<i>340<b>1","<>:xip/const:AP#2468-2480$<i>339<b>2",">:xip/d:NMOD$<i>339"],["s:Buchstaben","i:buchstaben","_339#2481-2491","opennlp/p:NN","cnx/l:buchstabe","cnx/p:N","cnx/syn:@PREMOD","tt/l:Buchstabe","tt/p:NN","mate/l:buchstabe","mate/p:NN","mate/m:case:dat","mate/m:number:sg","mate/m:gender:neut","<:mate/d:NK$<i>337","<:mate/d:NK$<i>338",">:mate/d:APP$<i>332","<:mate/d:NK$<i>340","xip/p:NOUN","xip/l:Buchstabe","<>:xip/const:NOUN#2481-2491$<i>340","<:xip/d:DETERM$<i>337","<:xip/d:NMOD$<i>338"],["s:Alpha","i:alpha","_340#2492-2497","opennlp/p:NE","corenlp/ne_dewac_175m_600:I-PER","corenlp/ne_hgc_175m_600:I-PER","cnx/l:alpha","cnx/p:N","cnx/syn:@NH","tt/l:Alpha","tt/p:NN","mate/l:alpha","mate/p:NE","mate/m:case:nom","mate/m:number:sg","mate/m:gender:neut",">:mate/d:NK$<i>339","xip/p:NOUN","xip/l:Alpha","<>:xip/const:NP#2492-2497$<i>341","<>:xip/const:NPA#2492-2497$<i>341<b>1","<>:xip/const:NOUN#2492-2497$<i>341"]],"name":"tokens","tokenization":"opennlp#tokens","foundries":"xip xip#morpho xip#constituency xip#dependency mate mate#morpho mate#dependency opennlp opennlp#sentences opennlp#morpho corenlp corenlp#namedentities corenlp#namedentities#ne_dewac_175m_600 corenlp#namedentities corenlp#namedentities#ne_hgc_175m_600 base base#paragraphs connexor connexor#morpho connexor#syntax connexor#phrase treetagger treetagger#morpho"}],"ID":"WPD_AAA.00004"}
\ No newline at end of file
diff --git a/trunk/src/test/resources/wiki/00004.json.gz b/trunk/src/test/resources/wiki/00004.json.gz
new file mode 100644
index 0000000..a0044b3
--- /dev/null
+++ b/trunk/src/test/resources/wiki/00004.json.gz
Binary files differ
diff --git a/trunk/src/test/resources/wiki/00005.json b/trunk/src/test/resources/wiki/00005.json
new file mode 100644
index 0000000..f13f792
--- /dev/null
+++ b/trunk/src/test/resources/wiki/00005.json
@@ -0,0 +1 @@
+{"fields":[{"primaryData":"Å ist der Name mehrerer Orte in Norwegen: Å i Andøy Å i Lofoten Å i Meldal Å i Åfjord"},{"foundries":"base base#paragraphs treetagger treetagger#morpho connexor connexor#morpho connexor#syntax connexor#phrase xip xip#morpho xip#constituency xip#dependency mate mate#morpho mate#dependency corenlp corenlp#namedentities corenlp#namedentities#ne_dewac_175m_600 corenlp#namedentities corenlp#namedentities#ne_hgc_175m_600 opennlp opennlp#sentences opennlp#morpho","tokenization":"opennlp#tokens","data":[["s:Å","i:å","_0#0-1","-:t$<i>20","<>:s#0-85$<i>20","-:s$<i>1","<>:p#0-41$<i>8","-:p$<i>5","opennlp/p:ADJD","cnx/l:Å","cnx/p:N","cnx/syn:@NH","tt/p:NE","tt/p:NN","tt/p:ADJD","mate/l:å","mate/p:XY","xip/p:ADV","xip/l:å","<>:xip/const:TOP#0-41$<i>8","<>:xip/const:MC#0-40$<i>8<b>1",">:xip/d:VMOD$<i>1"],["s:ist","i:ist","_1#2-5","opennlp/p:VAFIN","cnx/l:sein","cnx/p:V","cnx/m:IND","cnx/m:PRES","cnx/syn:@MAIN","tt/l:sein","tt/p:VAFIN","mate/l:sein","mate/p:VAFIN","mate/m:number:sg","mate/m:person:3","mate/m:tense:pres","mate/m:mood:ind","<:mate/d:SB$<i>3","<:mate/d:PD$<i>5","xip/p:VERB","xip/l:sein","<>:xip/const:VERB#2-5$<i>2","<:xip/d:VMOD$<i>0","xip/d:VMAIN","<:xip/d:SUBJ$<i>3"],["s:der","i:der","_2#6-9","opennlp/p:ART","cnx/l:der","cnx/p:DET","cnx/syn:@PREMOD","tt/l:die","tt/p:ART","mate/l:der","mate/p:ART","mate/m:case:nom","mate/m:number:sg","mate/m:gender:masc",">:mate/d:NK$<i>3","xip/p:DET","xip/l:der","<>:xip/const:NP#6-14$<i>4<b>2","<>:xip/const:DET#6-9$<i>3",">:xip/d:DETERM$<i>3"],["s:Name","i:name","_3#10-14","opennlp/p:NN","cnx/l:name","cnx/p:N","cnx/syn:@NH","<>:cnx/const:np#10-14$<i>4","tt/l:Name","tt/p:NN","mate/l:name","mate/p:NN","mate/m:case:nom","mate/m:number:sg","mate/m:gender:masc","<:mate/d:NK$<i>2",">:mate/d:SB$<i>1","xip/p:NOUN","xip/l:Name","<>:xip/const:NOUN#10-14$<i>4","<>:xip/const:NPA#10-14$<i>4<b>3","<:xip/d:DETERM$<i>2",">:xip/d:SUBJ$<i>1","<:xip/d:NMOD$<i>5"],["s:mehrerer","i:mehrerer","_4#15-23","opennlp/p:PIAT","cnx/l:mehrere","cnx/p:PRON","cnx/syn:@PREMOD","tt/l:mehrere","tt/p:PIS","mate/l:mehrere","mate/p:PIAT","mate/m:case:gen","mate/m:number:pl","mate/m:gender:masc",">:mate/d:NK$<i>5","xip/p:ADJ","xip/l:mehrere","<>:xip/const:ADJ#15-23$<i>5","<>:xip/const:NP#15-28$<i>6<b>2","<>:xip/const:NPA#15-28$<i>6<b>3","<>:xip/const:AP#15-23$<i>5<b>4",">:xip/d:NMOD$<i>5"],["s:Orte","i:orte","_5#24-28","opennlp/p:NN","cnx/l:ort","cnx/p:N","cnx/m:PL","cnx/syn:@NH","<>:cnx/const:np#24-40$<i>8","tt/l:Ort","tt/p:NN","mate/l:ort","mate/p:NN","mate/m:case:gen","mate/m:number:pl","mate/m:gender:masc","<:mate/d:NK$<i>4",">:mate/d:PD$<i>1","<:mate/d:MNR$<i>6","xip/p:NOUN","xip/l:Ort","<>:xip/const:NOUN#24-28$<i>6","<:xip/d:NMOD$<i>4",">:xip/d:NMOD$<i>3"],["s:in","i:in","_6#29-31","opennlp/p:APPR","cnx/l:in","cnx/p:PREP","cnx/syn:@POSTMOD","tt/l:in","tt/p:APPR","mate/l:in","mate/p:APPR",">:mate/d:MNR$<i>5","<:mate/d:NK$<i>7","xip/p:PREP","xip/l:in","<>:xip/const:PREP#29-31$<i>7","<>:xip/const:PP#29-40$<i>8<b>2"],["s:Norwegen","i:norwegen","_7#32-40","opennlp/p:NE","corenlp/ne_dewac_175m_600:I-LOC","corenlp/ne_hgc_175m_600:I-LOC","cnx/l:Norwegen","cnx/p:N","cnx/m:Prop","cnx/syn:@NH","tt/l:Norwegen","tt/p:NE","mate/l:norwegen","mate/p:NE","mate/m:case:dat","mate/m:number:sg","mate/m:gender:neut",">:mate/d:NK$<i>6","xip/p:NOUN","xip/l:Norwegen","<>:xip/const:NP#32-40$<i>8<b>3","<>:xip/const:NPA#32-40$<i>8<b>4","<>:xip/const:NOUN#32-40$<i>8","xip/d:LOC"],["s:Å","i:å","_8#42-43","<>:p#42-51$<i>11","opennlp/p:VVFIN","cnx/l:Å","cnx/p:N","cnx/syn:@PREMOD","<>:cnx/const:np#42-51$<i>11","tt/p:NE","mate/l:å","mate/p:XY","xip/p:ADV","xip/l:å","<>:xip/const:TOP#42-85$<i>20","<>:xip/const:ADV#42-43$<i>9"],["s:i","i:i","_9#44-45","opennlp/p:APPR","cnx/l:i","cnx/p:N","cnx/syn:@PREMOD","tt/l:i","tt/p:NE","mate/l:I","mate/p:XY","xip/p:SYMBOL","xip/l:i","<>:xip/const:NP#44-45$<i>10<b>1","<>:xip/const:NPA#44-45$<i>10<b>2","<>:xip/const:NOUN#44-45$<i>10<b>3","<>:xip/const:SYMBOL#44-45$<i>10"],["s:Andøy","i:andøy","_10#46-51","opennlp/p:NE","cnx/l:Andøy","cnx/p:N","cnx/m:Prop","cnx/syn:@NH","tt/p:NE","mate/l:andøy","mate/p:NE","xip/p:NOUN","xip/l:Andøy","<>:xip/const:NP#46-51$<i>11<b>1","<>:xip/const:NPA#46-51$<i>11<b>2","<>:xip/const:NOUN#46-51$<i>11"],["s:Å","i:å","_11#52-53","<>:p#52-63$<i>14","opennlp/p:NE","cnx/l:Å","cnx/p:N","cnx/syn:@PREMOD","<>:cnx/const:np#52-63$<i>14","tt/p:NE","mate/l:å","mate/p:XY",">:mate/d:PNC$<i>12","xip/p:ADV","xip/l:å","<>:xip/const:ADV#52-53$<i>12"],["s:i","i:i","_12#54-55","opennlp/p:VAFIN","cnx/l:i","cnx/p:N","cnx/syn:@PREMOD","tt/l:i","tt/p:NE","mate/l:I","mate/p:XY","<:mate/d:PNC$<i>11","xip/p:SYMBOL","xip/l:i","<>:xip/const:NP#54-55$<i>13<b>1","<>:xip/const:NPA#54-55$<i>13<b>2","<>:xip/const:NOUN#54-55$<i>13<b>3","<>:xip/const:SYMBOL#54-55$<i>13","<:xip/d:NMOD$<i>13"],["s:Lofoten","i:lofoten","_13#56-63","opennlp/p:NN","cnx/l:Lofoten","cnx/p:N","cnx/m:Prop","cnx/syn:@NH","tt/p:NE","mate/l:lofote","mate/p:NN","mate/m:case:dat","mate/m:number:pl","mate/m:gender:neut","xip/p:NOUN","xip/l:Lofoten","<>:xip/const:NP#56-63$<i>14<b>1","<>:xip/const:NPA#56-63$<i>14<b>2","<>:xip/const:NOUN#56-63$<i>14",">:xip/d:NMOD$<i>12"],["s:Å","i:å","_14#64-65","<>:p#64-74$<i>17","opennlp/p:NE","cnx/l:Å","cnx/p:N","cnx/syn:@PREMOD","<>:cnx/const:np#64-85$<i>20","tt/p:NE","mate/l:å","mate/p:XY",">:mate/d:PNC$<i>15","xip/p:ADV","xip/l:å","<>:xip/const:ADV#64-65$<i>15"],["s:i","i:i","_15#66-67","opennlp/p:APPR","cnx/l:i","cnx/p:N","cnx/syn:@PREMOD","tt/l:i","tt/p:NE","tt/l:i","tt/p:FM","mate/l:I","mate/p:XY","<:mate/d:PNC$<i>14","xip/p:SYMBOL","xip/l:i","<>:xip/const:NP#66-67$<i>16<b>1","<>:xip/const:NPA#66-67$<i>16<b>2","<>:xip/const:NOUN#66-67$<i>16<b>3","<>:xip/const:SYMBOL#66-67$<i>16","<:xip/d:NMOD$<i>16"],["s:Meldal","i:meldal","_16#68-74","opennlp/p:NE","cnx/l:meldal","cnx/p:N","cnx/syn:@NH","tt/p:NN","tt/p:NE","mate/l:meldal","mate/p:NN","xip/p:NOUN","xip/l:Meldal","<>:xip/const:NP#68-74$<i>17<b>1","<>:xip/const:NPA#68-74$<i>17<b>2","<>:xip/const:NOUN#68-74$<i>17",">:xip/d:NMOD$<i>15"],["s:Å","i:å","_17#75-76","<>:p#75-85$<i>20","opennlp/p:NE","cnx/l:Å","cnx/p:N","cnx/syn:@PREMOD","tt/p:NE","mate/l:å","mate/p:XY","xip/p:ADV","xip/l:å","<>:xip/const:ADV#75-76$<i>18"],["s:i","i:i","_18#77-78","opennlp/p:APPR","cnx/l:i","cnx/p:N","cnx/syn:@PREMOD","tt/l:i","tt/p:NE","mate/l:I","mate/p:XY","xip/p:SYMBOL","xip/l:i","<>:xip/const:NP#77-78$<i>19<b>1","<>:xip/const:NPA#77-78$<i>19<b>2","<>:xip/const:NOUN#77-78$<i>19<b>3","<>:xip/const:SYMBOL#77-78$<i>19","<:xip/d:NMOD$<i>19"],["s:Åfjord","i:åfjord","_19#79-85","opennlp/p:NE","cnx/l:Åfjord","cnx/p:N","cnx/m:Prop","cnx/syn:@NH","tt/p:NE","tt/p:NN","mate/l:åfjord","mate/p:NE","xip/p:NOUN","xip/l:Åfjord","<>:xip/const:NOUN#79-85$<i>20","<>:xip/const:NP#79-85$<i>20<b>1","<>:xip/const:NPA#79-85$<i>20<b>2",">:xip/d:NMOD$<i>18"]],"name":"tokens"}],"title":"Wikipedia","ID":"WPD_AAA.00005","pubDate":"20050328","corpusID":"WPD","subTitle":"Die freie Enzyklopädie","author":"","textClass":"freizeit-unterhaltung,reisen,schrott,tabellen"}
\ No newline at end of file
diff --git a/trunk/src/test/resources/wiki/00005.json.gz b/trunk/src/test/resources/wiki/00005.json.gz
new file mode 100644
index 0000000..4d3f027
--- /dev/null
+++ b/trunk/src/test/resources/wiki/00005.json.gz
Binary files differ
diff --git a/trunk/src/test/resources/wiki/00006.json b/trunk/src/test/resources/wiki/00006.json
new file mode 100644
index 0000000..8c9edfd
--- /dev/null
+++ b/trunk/src/test/resources/wiki/00006.json
@@ -0,0 +1 @@
+{"textClass":"freizeit-unterhaltung,reisen","fields":[{"primaryData":"A Bathing Ape oder einfach Bape ist eine japanisches Modeunternehmen. Das Unternehmen hat sich auf urbane Streetwear spezialisiert. Das Logo des Unternehmens und die verwendeten Motive sind dem Film Planet der Affen entlehnt. A Bathing Ape ist bekannt dafür, durch limitierte Auflagen seiner Produkte für steigende Nachfrage zu sorgen. Der 32-jährige Designer Nigo bekam von dem Unternehmen einen Lamborghini, einen Aston Martin, eine Bentley Continental Mulliner Edition, einen Ferrari 360 Modena und 30 Millionen US-Dollar, damit er als Chef-Designer bei A Bathing Ape arbeitet."},{"data":[["s:A","i:a","_0#0-1","-:t$<i>84","<>:s#0-69$<i>10","-:s$<i>5","<>:p#0-335$<i>49","-:p$<i>2","opennlp/p:NE","cnx/l:a","cnx/p:PREP","cnx/syn:@PREMARK","tt/l:A","tt/p:NN","tt/l:A","tt/p:FM","mate/p:NE","mate/m:case:nom","mate/m:number:sg","mate/m:gender:*",">:mate/d:PNC$<i>2","xip/p:SYMBOL","xip/l:A","<>:xip/const:TOP#0-69$<i>10","<>:xip/const:MC#0-35$<i>7<b>1",">:xip/d:SUBJ$<i>6"],["s:Bathing","i:bathing","_1#2-9","opennlp/p:NE","cnx/l:Bathing","cnx/p:N","cnx/m:Prop","cnx/syn:@PREMOD","<>:cnx/const:np#2-13$<i>3","tt/p:NE","mate/l:bathing","mate/p:NE","mate/m:case:nom","mate/m:number:sg","mate/m:gender:*",">:mate/d:PNC$<i>2","xip/p:ADJ","xip/l:bathing","<>:xip/const:ADJ#2-9$<i>2","xip/d:LOC",">:xip/d:PRED$<i>6","<:xip/d:NMOD$<i>2"],["s:Ape","i:ape","_2#10-13","opennlp/p:NE","cnx/l:Ape","cnx/p:N","cnx/m:Prop","cnx/syn:@NH","tt/p:NE","mate/l:ape","mate/p:NE","mate/m:case:nom","mate/m:number:sg","mate/m:gender:*","<:mate/d:PNC$<i>0","<:mate/d:PNC$<i>1",">:mate/d:SB$<i>6","<:mate/d:CD$<i>3","xip/p:NOUN","xip/l:Ape","<>:xip/const:NOUN#10-13$<i>3",">:xip/d:NMOD$<i>1"],["s:oder","i:oder","_3#14-18","opennlp/p:KON","cnx/l:oder","cnx/p:CC","cnx/syn:@CC","tt/l:oder","tt/p:KON","mate/l:oder","mate/p:KON",">:mate/d:CD$<i>2","<:mate/d:CJ$<i>5","xip/p:CONJ","xip/l:oder","<>:xip/const:CONJ#14-18$<i>4"],["s:einfach","i:einfach","_4#19-26","opennlp/p:ADV","cnx/l:einfach","cnx/p:A","cnx/syn:@PREMOD","<>:cnx/const:np#19-31$<i>6","tt/l:einfach","tt/p:ADJD","mate/l:einfach","mate/p:ADV","mate/m:degree:pos",">:mate/d:MO$<i>5","xip/p:ADJ","xip/l:ein}fach","<>:xip/const:ADJ#19-26$<i>5"],["s:Bape","i:bape","_5#27-31","opennlp/p:NE","cnx/l:Bape","cnx/p:N","cnx/m:Prop","cnx/syn:@NH","tt/p:NN","tt/p:NE","mate/l:bape","mate/p:NE","mate/m:case:nom","mate/m:number:sg","mate/m:gender:*","<:mate/d:MO$<i>4",">:mate/d:CJ$<i>3","xip/p:NOUN","xip/l:Bape","<>:xip/const:NOUN#27-31$<i>6",">:xip/d:PRED$<i>6"],["s:ist","i:ist","_6#32-35","opennlp/p:VAFIN","cnx/l:sein","cnx/p:V","cnx/m:IND","cnx/m:PRES","cnx/syn:@MAIN","tt/l:sein","tt/p:VAFIN","mate/l:sein","mate/p:VAFIN","mate/m:number:sg","mate/m:person:3","mate/m:tense:pres","mate/m:mood:ind","<:mate/d:SB$<i>2","<:mate/d:PD$<i>9","xip/p:VERB","xip/l:sein","<>:xip/const:VERB#32-35$<i>7","<:xip/d:SUBJ$<i>0","<:xip/d:PRED$<i>1","<:xip/d:PRED$<i>5","xip/d:VMAIN"],["s:eine","i:eine","_7#36-40","opennlp/p:ART","cnx/l:eine","cnx/p:DET","cnx/syn:@PREMOD","tt/l:eine","tt/p:ART","mate/l:ein","mate/p:ART","mate/m:case:nom","mate/m:number:sg","mate/m:gender:fem",">:mate/d:NK$<i>9","xip/p:DET","xip/l:ein","<>:xip/const:DET#36-40$<i>8"],["s:japanisches","i:japanisches","_8#41-52","opennlp/p:ADJA","cnx/l:japanisch","cnx/p:A","cnx/syn:@PREMOD","<>:cnx/const:np#41-68$<i>10","tt/l:japanisch","tt/p:ADJA","mate/l:japanisch","mate/p:ADJA","mate/m:case:nom","mate/m:number:sg","mate/m:gender:neut","mate/m:degree:pos",">:mate/d:NK$<i>9","xip/p:ADJ","xip/l:japanisch","<>:xip/const:NP#41-68$<i>10<b>1","<>:xip/const:NPA#41-68$<i>10<b>2","<>:xip/const:AP#41-52$<i>9<b>3","<>:xip/const:ADJ#41-52$<i>9",">:xip/d:NMOD$<i>9"],["s:Modeunternehmen","i:modeunternehmen","_9#53-68","opennlp/p:NN","cnx/l:mode","cnx/l:unternehmen","cnx/p:N","cnx/syn:@NH","tt/l:Modeunternehmen","tt/p:NN","mate/l:modeunternehmen","mate/p:NN","mate/m:case:nom","mate/m:number:sg","mate/m:gender:neut","<:mate/d:NK$<i>7","<:mate/d:NK$<i>8",">:mate/d:PD$<i>6","xip/p:NOUN","xip/l:Mode","xip/l:unternehmen","xip/l:Modeunternehmen","<>:xip/const:NOUN#53-68$<i>10","<:xip/d:NMOD$<i>8","xip/d:THEMA"],["s:Das","i:das","_10#70-73","<>:s#70-131$<i>18","opennlp/p:ART","cnx/l:das","cnx/p:DET","cnx/syn:@PREMOD","tt/l:die","tt/p:ART","mate/l:der","mate/p:ART","mate/m:case:nom","mate/m:number:sg","mate/m:gender:neut",">:mate/d:NK$<i>11","xip/p:DET","xip/l:das","<>:xip/const:TOP#70-131$<i>18","<>:xip/const:MC#70-130$<i>18<b>1","<>:xip/const:NP#70-85$<i>12<b>2","<>:xip/const:DET#70-73$<i>11",">:xip/d:DETERM$<i>11"],["s:Unternehmen","i:unternehmen","_11#74-85","opennlp/p:NN","cnx/l:unternehmen","cnx/p:N","cnx/syn:@NH","<>:cnx/const:np#74-85$<i>12","tt/l:Unternehmen","tt/p:NN","mate/l:unternehmen","mate/p:NN","mate/m:case:nom","mate/m:number:sg","mate/m:gender:neut","<:mate/d:NK$<i>10",">:mate/d:SB$<i>12","xip/p:NOUN","xip/l:unternehmen","<>:xip/const:NOUN#74-85$<i>12","<>:xip/const:NPA#74-85$<i>12<b>3","<:xip/d:DETERM$<i>10",">:xip/d:SUBJ$<i>17"],["s:hat","i:hat","_12#86-89","opennlp/p:VAFIN","cnx/l:haben","cnx/p:V","cnx/m:IND","cnx/m:PRES","cnx/syn:@MAIN","tt/l:haben","tt/p:VAFIN","mate/l:haben","mate/p:VAFIN","mate/m:number:sg","mate/m:person:3","mate/m:tense:pres","mate/m:mood:ind","<:mate/d:SB$<i>11","<:mate/d:OC$<i>17","xip/p:VERB","xip/l:haben","<>:xip/const:VERB#86-89$<i>13","<:xip/d:AUXIL$<i>17"],["s:sich","i:sich","_13#90-94","opennlp/p:PRF","cnx/l:sich","cnx/p:PRON","cnx/syn:@NH","tt/l:er|es|sie","tt/p:PRF","mate/l:sich","mate/p:PRF","mate/m:case:acc","mate/m:number:sg","mate/m:person:3",">:mate/d:OA$<i>17","xip/p:PRON","xip/l:sich","<>:xip/const:PRON#90-94$<i>14","<>:xip/const:NP#90-94$<i>14<b>2",">:xip/d:REFLEX$<i>17"],["s:auf","i:auf","_14#95-98","opennlp/p:APPR","cnx/l:auf","cnx/p:PREP","cnx/syn:@PREMARK","tt/l:auf","tt/p:APPR","mate/l:auf","mate/p:APPR",">:mate/d:OP$<i>17","<:mate/d:NK$<i>16","xip/p:PREP","xip/l:auf","<>:xip/const:PREP#95-98$<i>15","<>:xip/const:PP#95-116$<i>17<b>2"],["s:urbane","i:urbane","_15#99-105","opennlp/p:ADJA","cnx/l:urban","cnx/p:A","cnx/syn:@PREMOD","<>:cnx/const:np#99-116$<i>17","tt/l:urban","tt/p:ADJA","mate/l:urban","mate/p:ADJA","mate/m:case:acc","mate/m:number:pl","mate/m:gender:neut","mate/m:degree:pos",">:mate/d:NK$<i>16","xip/p:ADJ","xip/l:urban","<>:xip/const:NP#99-116$<i>17<b>3","<>:xip/const:NPA#99-116$<i>17<b>4","<>:xip/const:AP#99-105$<i>16<b>5","<>:xip/const:ADJ#99-105$<i>16",">:xip/d:NMOD$<i>16"],["s:Streetwear","i:streetwear","_16#106-116","opennlp/p:NN","cnx/l:Streetwear","cnx/p:N","cnx/m:Prop","cnx/syn:@NH","tt/p:NN","tt/p:NE","mate/l:streetwear","mate/p:NN","mate/m:case:acc","mate/m:number:pl","mate/m:gender:neut","<:mate/d:NK$<i>15",">:mate/d:NK$<i>14","xip/p:NOUN","xip/l:Streetwear","<>:xip/const:NOUN#106-116$<i>17","<:xip/d:NMOD$<i>15"],["s:spezialisiert","i:spezialisiert","_17#117-130","opennlp/p:VVPP","cnx/l:spezialisieren","cnx/p:V","cnx/m:PCP","cnx/m:PERF","cnx/syn:@MAIN","tt/l:spezialisieren","tt/p:VVPP","tt/l:spezialisiert","tt/p:ADJD","tt/l:spezialisieren","tt/p:VVFIN","mate/l:spezialisieren","mate/p:VVPP","<:mate/d:OA$<i>13","<:mate/d:OP$<i>14",">:mate/d:OC$<i>12","xip/p:VERB","xip/l:spezialisieren","<>:xip/const:VERB#117-130$<i>18","<:xip/d:SUBJ$<i>11","<:xip/d:REFLEX$<i>13",">:xip/d:AUXIL$<i>12","xip/d:VMAIN"],["s:Das","i:das","_18#132-135","<>:s#132-225$<i>33","opennlp/p:ART","cnx/l:das","cnx/p:DET","cnx/syn:@PREMOD","tt/l:die","tt/p:ART","tt/l:die","tt/p:PDS","mate/l:der","mate/p:ART","mate/m:case:nom","mate/m:number:sg","mate/m:gender:neut",">:mate/d:NK$<i>19","xip/p:DET","xip/l:das","<>:xip/const:DET#132-135$<i>19","<>:xip/const:TOP#132-225$<i>33","<>:xip/const:MC#132-224$<i>33<b>1","<>:xip/const:NP#132-140$<i>20<b>2",">:xip/d:DETERM$<i>19"],["s:Logo","i:logo","_19#136-140","opennlp/p:NN","cnx/l:logo","cnx/p:N","cnx/syn:@NH","<>:cnx/const:np#136-140$<i>20","tt/l:Logo","tt/p:NE","mate/l:logo","mate/p:NN","mate/m:case:nom","mate/m:number:sg","mate/m:gender:neut","<:mate/d:NK$<i>18",">:mate/d:SB$<i>26","<:mate/d:AG$<i>21","<:mate/d:CD$<i>22","xip/p:NOUN","xip/l:Logo","<>:xip/const:NOUN#136-140$<i>20","<>:xip/const:NPA#136-140$<i>20<b>3","<:xip/d:DETERM$<i>18",">:xip/d:OBJ$<i>32","<:xip/d:NMOD$<i>21"],["s:des","i:des","_20#141-144","opennlp/p:ART","cnx/l:das","cnx/p:DET","cnx/syn:@PREMOD","tt/l:die","tt/p:ART","mate/l:der","mate/p:ART","mate/m:case:gen","mate/m:number:sg","mate/m:gender:neut",">:mate/d:NK$<i>21","xip/p:DET","xip/l:der","<>:xip/const:NP#141-157$<i>22<b>2","<>:xip/const:DET#141-144$<i>21",">:xip/d:DETERM$<i>21"],["s:Unternehmens","i:unternehmens","_21#145-157","opennlp/p:NN","cnx/l:unternehmen","cnx/p:N","cnx/syn:@NH","<>:cnx/const:np#145-157$<i>22","tt/l:Unternehmen","tt/p:NN","mate/l:unternehmen","mate/p:NN","mate/m:case:gen","mate/m:number:sg","mate/m:gender:neut","<:mate/d:NK$<i>20",">:mate/d:AG$<i>19","xip/p:NOUN","xip/l:unternehmen","<>:xip/const:NPA#145-157$<i>22<b>3","<>:xip/const:NOUN#145-157$<i>22","<:xip/d:DETERM$<i>20",">:xip/d:NMOD$<i>19"],["s:und","i:und","_22#158-161","opennlp/p:KON","cnx/l:und","cnx/p:CC","cnx/syn:@CC","tt/l:und","tt/p:KON","mate/l:und","mate/p:KON",">:mate/d:CD$<i>19","<:mate/d:CJ$<i>25","xip/p:CONJ","xip/l:und","<>:xip/const:CONJ#158-161$<i>23"],["s:die","i:die","_23#162-165","opennlp/p:ART","cnx/l:die","cnx/p:DET","cnx/syn:@PREMOD","tt/l:die","tt/p:ART","mate/l:der","mate/p:ART","mate/m:case:nom","mate/m:number:pl","mate/m:gender:fem",">:mate/d:NK$<i>25","xip/p:DET","xip/l:die","<>:xip/const:DET#162-165$<i>24","<>:xip/const:NP#162-184$<i>26<b>2",">:xip/d:DETERM$<i>25"],["s:verwendeten","i:verwendeten","_24#166-177","opennlp/p:ADJA","cnx/l:verwendet","cnx/p:A","cnx/syn:@PREMOD","<>:cnx/const:np#166-184$<i>26","tt/l:verwandt","tt/p:ADJA","mate/l:verwendet","mate/p:ADJA","mate/m:case:nom","mate/m:number:pl","mate/m:gender:fem","mate/m:degree:pos",">:mate/d:NK$<i>25","xip/p:ADJ","xip/l:verwenden","<>:xip/const:NPA#166-184$<i>26<b>3","<>:xip/const:AP#166-177$<i>25<b>4","<>:xip/const:ADJ#166-177$<i>25",">:xip/d:NMOD$<i>25"],["s:Motive","i:motive","_25#178-184","opennlp/p:NN","cnx/l:motiv","cnx/p:N","cnx/m:PL","cnx/syn:@NH","tt/l:Motiv","tt/p:NN","mate/l:motiv","mate/p:NN","mate/m:case:nom","mate/m:number:pl","mate/m:gender:fem","<:mate/d:NK$<i>23","<:mate/d:NK$<i>24",">:mate/d:CJ$<i>22","xip/p:NOUN","xip/l:Motiv","<>:xip/const:NOUN#178-184$<i>26","<:xip/d:DETERM$<i>23","<:xip/d:NMOD$<i>24",">:xip/d:SUBJ$<i>32"],["s:sind","i:sind","_26#185-189","opennlp/p:VAFIN","cnx/l:sein","cnx/p:V","cnx/m:IND","cnx/m:PRES","cnx/syn:@MAIN","tt/l:sein","tt/p:VAFIN","mate/l:sein","mate/p:VAFIN","mate/m:number:pl","mate/m:person:3","mate/m:tense:pres","mate/m:mood:ind","<:mate/d:SB$<i>19","<:mate/d:PD$<i>32","xip/p:VERB","xip/l:sein","<>:xip/const:VERB#185-189$<i>27","<:xip/d:AUXIL$<i>32"],["s:dem","i:dem","_27#190-193","opennlp/p:ART","cnx/l:der","cnx/p:DET","cnx/syn:@PREMOD","tt/l:die","tt/p:ART","mate/l:der","mate/p:ART","mate/m:case:dat","mate/m:number:sg","mate/m:gender:masc",">:mate/d:NK$<i>28","xip/p:DET","xip/l:der","<>:xip/const:DET#190-193$<i>28","<>:xip/const:NP#190-198$<i>29<b>2",">:xip/d:DETERM$<i>28"],["s:Film","i:film","_28#194-198","opennlp/p:NN","cnx/l:film","cnx/p:N","cnx/syn:@NH","<>:cnx/const:np#194-198$<i>29","tt/l:Film","tt/p:NN","mate/l:film","mate/p:NN","mate/m:case:dat","mate/m:number:sg","mate/m:gender:masc","<:mate/d:NK$<i>27",">:mate/d:DA$<i>32","<:mate/d:NK$<i>29","xip/p:NOUN","xip/l:Film","<>:xip/const:NOUN#194-198$<i>29","<>:xip/const:NPA#194-198$<i>29<b>3","<:xip/d:DETERM$<i>27",">:xip/d:OBJ$<i>32"],["s:Planet","i:planet","_29#199-205","opennlp/p:NN","cnx/l:planet","cnx/p:N","cnx/syn:@NH","<>:cnx/const:np#199-205$<i>30","tt/l:Planet","tt/p:NN","mate/l:planet","mate/p:NN","mate/m:case:nom","mate/m:number:sg","mate/m:gender:neut",">:mate/d:NK$<i>28","<:mate/d:AG$<i>31","xip/p:NOUN","xip/l:Planet","<>:xip/const:NOUN#199-205$<i>30","<>:xip/const:NP#199-205$<i>30<b>2","<>:xip/const:NPA#199-205$<i>30<b>3",">:xip/d:OBJ$<i>32","<:xip/d:NMOD$<i>31"],["s:der","i:der","_30#206-209","opennlp/p:ART","cnx/l:die","cnx/p:DET","cnx/syn:@PREMOD","tt/l:die","tt/p:ART","mate/l:der","mate/p:ART","mate/m:case:gen","mate/m:number:sg","mate/m:gender:fem",">:mate/d:NK$<i>31","xip/p:DET","xip/l:der","<>:xip/const:DET#206-209$<i>31","<>:xip/const:NP#206-215$<i>32<b>2",">:xip/d:DETERM$<i>31"],["s:Affen","i:affen","_31#210-215","opennlp/p:NN","cnx/l:affe","cnx/p:N","cnx/m:PL","cnx/syn:@NH","<>:cnx/const:np#210-215$<i>32","tt/l:Affe","tt/p:NN","mate/l:affen","mate/p:NN","mate/m:case:gen","mate/m:number:sg","mate/m:gender:fem","<:mate/d:NK$<i>30",">:mate/d:AG$<i>29","xip/p:NOUN","xip/l:Affe","<>:xip/const:NOUN#210-215$<i>32","<>:xip/const:NPA#210-215$<i>32<b>3","<:xip/d:DETERM$<i>30",">:xip/d:NMOD$<i>29"],["s:entlehnt","i:entlehnt","_32#216-224","opennlp/p:VVPP","cnx/l:entlehnen","cnx/p:V","cnx/m:PCP","cnx/m:PERF","cnx/syn:@MAIN","tt/l:entlehnen","tt/p:VVPP","tt/l:entlehnen","tt/p:VVFIN","mate/l:entlehnen","mate/p:VVPP","<:mate/d:DA$<i>28",">:mate/d:PD$<i>26","xip/p:VERB","xip/l:entlehnen","<>:xip/const:VERB#216-224$<i>33","<:xip/d:OBJ$<i>19","<:xip/d:SUBJ$<i>25","<:xip/d:OBJ$<i>28","<:xip/d:OBJ$<i>29",">:xip/d:AUXIL$<i>26","xip/d:VMAIN"],["s:A","i:a","_33#226-227","<>:s#226-335$<i>49","opennlp/p:NE","cnx/l:a","cnx/p:PREP","cnx/syn:@PREMARK","tt/l:A","tt/p:NN","tt/l:A","tt/p:FM","mate/p:NE","mate/m:case:*","mate/m:number:*","mate/m:gender:*",">:mate/d:PNC$<i>35","xip/p:SYMBOL","xip/l:A","<>:xip/const:TOP#226-335$<i>49","<>:xip/const:MC#226-335$<i>49<b>1","<>:xip/const:NP#226-227$<i>34<b>2","<>:xip/const:NPA#226-227$<i>34<b>3","<>:xip/const:NOUN#226-227$<i>34<b>4","<>:xip/const:SYMBOL#226-227$<i>34",">:xip/d:SUBJ$<i>36"],["s:Bathing","i:bathing","_34#228-235","opennlp/p:NE","corenlp/ne_dewac_175m_600:I-LOC","cnx/l:Bathing","cnx/p:N","cnx/m:Prop","cnx/syn:@PREMOD","<>:cnx/const:np#228-239$<i>36","tt/p:NE","mate/l:bathing","mate/p:NE","mate/m:case:*","mate/m:number:*","mate/m:gender:*",">:mate/d:PNC$<i>35","xip/p:ADJ","xip/l:bathing","<>:xip/const:ADJ#228-235$<i>35","<>:xip/const:NP#228-235$<i>35<b>2","<>:xip/const:AP#228-235$<i>35<b>3","xip/d:LOC",">:xip/d:PRED$<i>36","<:xip/d:NMOD$<i>35"],["s:Ape","i:ape","_35#236-239","opennlp/p:NE","corenlp/ne_dewac_175m_600:I-LOC","cnx/l:Ape","cnx/p:N","cnx/m:Prop","cnx/syn:@NH","tt/p:NE","mate/l:ape","mate/p:NE","mate/m:case:nom","mate/m:number:sg","mate/m:gender:*","<:mate/d:PNC$<i>33","<:mate/d:PNC$<i>34",">:mate/d:SB$<i>36","xip/p:NOUN","xip/l:Ape","<>:xip/const:NOUN#236-239$<i>36","<>:xip/const:NP#236-239$<i>36<b>2","<>:xip/const:NPA#236-239$<i>36<b>3",">:xip/d:NMOD$<i>34"],["s:ist","i:ist","_36#240-243","opennlp/p:VAFIN","cnx/l:sein","cnx/p:V","cnx/m:IND","cnx/m:PRES","cnx/syn:@MAIN","tt/l:sein","tt/p:VAFIN","mate/l:sein","mate/p:VAFIN","mate/m:number:sg","mate/m:person:3","mate/m:tense:pres","mate/m:mood:ind","<:mate/d:SB$<i>35","<:mate/d:PD$<i>37","xip/p:VERB","xip/l:sein","<>:xip/const:VERB#240-243$<i>37","<:xip/d:SUBJ$<i>33","<:xip/d:PRED$<i>34","xip/d:VMAIN","<:xip/d:PRED$<i>37","<:xip/d:VMOD$<i>38"],["s:bekannt","i:bekannt","_37#244-251","opennlp/p:ADJD","cnx/l:bekannt","cnx/p:A","cnx/syn:@NH","tt/l:bekannt","tt/p:ADJD","mate/l:bekannt","mate/p:ADJD","mate/m:degree:pos",">:mate/d:PD$<i>36","<:mate/d:MO$<i>38","xip/p:ADJ","xip/l:bekannt","<>:xip/const:ADJ#244-251$<i>38","<>:xip/const:AP#244-251$<i>38<b>2",">:xip/d:PRED$<i>36"],["s:dafür","i:dafür","_38#252-257","opennlp/p:PROAV","cnx/l:dafür","cnx/p:ADV","cnx/syn:@ADVL","tt/l:dafür","tt/p:PROAV","mate/l:dafür","mate/p:PROAV",">:mate/d:MO$<i>37","<:mate/d:RE$<i>48","xip/p:ADV","xip/l:dafür","<>:xip/const:ADV#252-257$<i>39",">:xip/d:VMOD$<i>36"],["s:durch","i:durch","_39#259-264","opennlp/p:APPR","cnx/l:durch","cnx/p:PREP","cnx/syn:@PREMARK","tt/l:durch","tt/p:APPR","mate/l:durch","mate/p:APPR",">:mate/d:MO$<i>48","<:mate/d:NK$<i>41","xip/p:PREP","xip/l:durch","<>:xip/const:INFC#259-334$<i>49","<>:xip/const:PP#259-284$<i>42<b>1","<>:xip/const:PREP#259-264$<i>40"],["s:limitierte","i:limitierte","_40#265-275","opennlp/p:ADJA","cnx/l:limitiert","cnx/p:A","cnx/syn:@PREMOD","<>:cnx/const:np#265-284$<i>42","tt/l:limitiert","tt/p:ADJA","mate/l:limitiert","mate/p:ADJA","mate/m:case:acc","mate/m:number:pl","mate/m:gender:fem","mate/m:degree:pos",">:mate/d:NK$<i>41","xip/p:ADJ","xip/l:limitieren","<>:xip/const:NP#265-284$<i>42<b>2","<>:xip/const:NPA#265-284$<i>42<b>3","<>:xip/const:AP#265-275$<i>41<b>4","<>:xip/const:ADJ#265-275$<i>41",">:xip/d:NMOD$<i>41"],["s:Auflagen","i:auflagen","_41#276-284","opennlp/p:NN","cnx/l:auflage","cnx/p:N","cnx/m:PL","cnx/syn:@NH","tt/l:Auflage","tt/p:NN","mate/l:auflage","mate/p:NN","mate/m:case:acc","mate/m:number:pl","mate/m:gender:fem","<:mate/d:NK$<i>40",">:mate/d:NK$<i>39","<:mate/d:AG$<i>43","xip/p:NOUN","xip/l:Auflage","<>:xip/const:NOUN#276-284$<i>42","<:xip/d:NMOD$<i>40","<:xip/d:NMOD$<i>43"],["s:seiner","i:seiner","_42#285-291","opennlp/p:PPOSAT","cnx/l:sein","cnx/p:PRON","cnx/syn:@PREMOD","tt/l:sein","tt/p:PPOSAT","mate/l:sein","mate/p:PPOSAT","mate/m:case:gen","mate/m:number:pl","mate/m:gender:masc",">:mate/d:NK$<i>43","xip/p:DET","xip/l:sein","<>:xip/const:NP#285-300$<i>44<b>1","<>:xip/const:DET#285-291$<i>43",">:xip/d:DETERM$<i>43"],["s:Produkte","i:produkte","_43#292-300","opennlp/p:NN","cnx/l:produkt","cnx/p:N","cnx/m:PL","cnx/syn:@NH","<>:cnx/const:np#292-324$<i>47","tt/l:Produkt","tt/p:NN","mate/l:produkt","mate/p:NN","mate/m:case:gen","mate/m:number:pl","mate/m:gender:masc","<:mate/d:NK$<i>42",">:mate/d:AG$<i>41","xip/p:NOUN","xip/l:Produkt","<>:xip/const:NPA#292-300$<i>44<b>2","<>:xip/const:NOUN#292-300$<i>44","<:xip/d:DETERM$<i>42",">:xip/d:NMOD$<i>41"],["s:für","i:für","_44#301-304","opennlp/p:APPR","cnx/l:für","cnx/p:PREP","cnx/syn:@POSTMOD","tt/l:für","tt/p:APPR","mate/l:für","mate/p:APPR",">:mate/d:OP$<i>48","<:mate/d:NK$<i>46","xip/p:PREP","xip/l:für","<>:xip/const:PP#301-324$<i>47<b>1","<>:xip/const:PREP#301-304$<i>45"],["s:steigende","i:steigende","_45#305-314","opennlp/p:ADJA","cnx/l:steigend","cnx/p:A","cnx/syn:@PREMOD","tt/l:steigend","tt/p:ADJA","mate/l:steigend","mate/p:ADJA","mate/m:case:acc","mate/m:number:sg","mate/m:gender:fem","mate/m:degree:pos",">:mate/d:NK$<i>46","xip/p:ADJ","xip/l:steigen","<>:xip/const:NP#305-324$<i>47<b>2","<>:xip/const:NPA#305-324$<i>47<b>3","<>:xip/const:AP#305-314$<i>46<b>4","<>:xip/const:ADJ#305-314$<i>46",">:xip/d:NMOD$<i>46"],["s:Nachfrage","i:nachfrage","_46#315-324","opennlp/p:NN","cnx/l:nachfrage","cnx/p:N","cnx/syn:@NH","tt/l:Nachfrage","tt/p:NN","mate/l:nachfrage","mate/p:NN","mate/m:case:acc","mate/m:number:sg","mate/m:gender:fem","<:mate/d:NK$<i>45",">:mate/d:NK$<i>44","xip/p:NOUN","xip/l:Nachfrage","<>:xip/const:NOUN#315-324$<i>47","<:xip/d:NMOD$<i>45"],["s:zu","i:zu","_47#325-327","opennlp/p:PTKZU","cnx/l:zu","cnx/p:PREP","cnx/syn:@PREMARK","tt/l:zu","tt/p:PTKZU","mate/l:zu","mate/p:PTKZU",">:mate/d:PM$<i>48","xip/p:PTCL","xip/l:zu","<>:xip/const:VERB#325-334$<i>49<b>1","<>:xip/const:PTCL#325-327$<i>48"],["s:sorgen","i:sorgen","_48#328-334","opennlp/p:VVINF","cnx/l:sorgen","cnx/p:V","cnx/m:INF","cnx/syn:@MAIN","tt/l:sorgen","tt/p:VVINF","mate/l:sorgen","mate/p:VVINF","<:mate/d:MO$<i>39","<:mate/d:OP$<i>44","<:mate/d:PM$<i>47",">:mate/d:RE$<i>38","xip/p:VERB","xip/l:sorgen","<>:xip/const:VERB#328-334$<i>49"],["s:Der","i:der","_49#336-339","<>:s#336-580$<i>83","<>:p#336-580$<i>83","opennlp/p:ART","cnx/l:der","cnx/p:PRON","cnx/syn:@NH","tt/l:die","tt/p:ART","mate/l:der","mate/p:ART","mate/m:case:nom","mate/m:number:sg","mate/m:gender:masc",">:mate/d:NK$<i>51","xip/p:DET","xip/l:der","<>:xip/const:DET#336-339$<i>50","<>:xip/const:TOP#336-580$<i>83","<>:xip/const:MC#336-580$<i>83<b>1","<>:xip/const:NP#336-359$<i>52<b>2",">:xip/d:DETERM$<i>51"],["s:32-jährige","i:32-jährige","_50#340-350","opennlp/p:ADJA","tt/p:ADJA","mate/l:32-jährig","mate/p:ADJA","mate/m:case:nom","mate/m:number:sg","mate/m:gender:masc","mate/m:degree:pos",">:mate/d:NK$<i>51","xip/p:ADJ","xip/l:32-jährig","<>:xip/const:ADJ#340-350$<i>51","<>:xip/const:NPA#340-359$<i>52<b>3","<>:xip/const:AP#340-350$<i>51<b>4",">:xip/d:NMOD$<i>51"],["s:Designer","i:designer","_51#351-359","opennlp/p:NN","cnx/l:designer","cnx/p:N","cnx/syn:@NH","tt/l:Designer","tt/p:NN","mate/l:designer","mate/p:NN","mate/m:case:nom","mate/m:number:sg","mate/m:gender:masc","<:mate/d:NK$<i>49","<:mate/d:NK$<i>50",">:mate/d:SB$<i>53","<:mate/d:NK$<i>52","xip/p:NOUN","xip/l:Designer","<>:xip/const:NOUN#351-359$<i>52","<:xip/d:DETERM$<i>49","<:xip/d:NMOD$<i>50",">:xip/d:SUBJ$<i>53","<:xip/d:NMOD$<i>52"],["s:Nigo","i:nigo","_52#360-364","opennlp/p:NE","corenlp/ne_dewac_175m_600:I-PER","corenlp/ne_hgc_175m_600:I-PER","cnx/l:Nigo","cnx/p:N","cnx/m:Prop","cnx/syn:@NH","<>:cnx/const:np#360-364$<i>53","tt/p:NE","tt/p:NN","mate/l:nigo","mate/p:NE","mate/m:case:nom","mate/m:number:sg","mate/m:gender:masc",">:mate/d:NK$<i>51","xip/p:NOUN","xip/l:Nigo","<>:xip/const:NOUN#360-364$<i>53","<>:xip/const:NP#360-364$<i>53<b>2","<>:xip/const:NPA#360-364$<i>53<b>3",">:xip/d:NMOD$<i>51"],["s:bekam","i:bekam","_53#365-370","opennlp/p:VVFIN","cnx/l:bekommen","cnx/p:V","cnx/m:IND","cnx/m:PAST","cnx/syn:@MAIN","tt/l:bekommen","tt/p:VVFIN","mate/l:bekommen","mate/p:VVFIN","mate/m:number:sg","mate/m:person:3","mate/m:tense:past","mate/m:mood:ind","<:mate/d:SB$<i>51","<:mate/d:SB$<i>58","<:mate/d:MO$<i>83","xip/p:VERB","xip/l:bekommen","<>:xip/const:VERB#365-370$<i>54","<:xip/d:SUBJ$<i>51","xip/d:VMAIN","<:xip/d:OBJ$<i>58"],["s:von","i:von","_54#371-374","opennlp/p:APPR","cnx/l:von","cnx/p:PREP","cnx/syn:@PREMARK","tt/l:von","tt/p:APPR","mate/l:von","mate/p:APPR",">:mate/d:PG$<i>58","<:mate/d:NK$<i>56","xip/p:PREP","xip/l:von","<>:xip/const:PREP#371-374$<i>55","<>:xip/const:PP#371-390$<i>57<b>2"],["s:dem","i:dem","_55#375-378","opennlp/p:ART","cnx/l:das","cnx/p:DET","cnx/syn:@PREMOD","tt/l:die","tt/p:ART","mate/l:der","mate/p:ART","mate/m:case:dat","mate/m:number:sg","mate/m:gender:neut",">:mate/d:NK$<i>56","xip/p:DET","xip/l:der","<>:xip/const:DET#375-378$<i>56","<>:xip/const:NP#375-390$<i>57<b>3",">:xip/d:DETERM$<i>56"],["s:Unternehmen","i:unternehmen","_56#379-390","opennlp/p:NN","cnx/l:unternehmen","cnx/p:N","cnx/syn:@NH","<>:cnx/const:np#379-390$<i>57","tt/l:Unternehmen","tt/p:NN","mate/l:unternehmen","mate/p:NN","mate/m:case:dat","mate/m:number:sg","mate/m:gender:neut","<:mate/d:NK$<i>55",">:mate/d:NK$<i>54","xip/p:NOUN","xip/l:unternehmen","<>:xip/const:NOUN#379-390$<i>57","<>:xip/const:NPA#379-390$<i>57<b>4","<:xip/d:DETERM$<i>55"],["s:einen","i:einen","_57#391-396","opennlp/p:ART","cnx/l:ein","cnx/p:DET","cnx/syn:@PREMOD","tt/l:eine","tt/p:ART","mate/l:ein","mate/p:ART","mate/m:case:acc","mate/m:number:sg","mate/m:gender:masc",">:mate/d:NK$<i>58","xip/p:DET","xip/l:ein","<>:xip/const:DET#391-396$<i>58","<>:xip/const:NP#391-408$<i>59<b>2",">:xip/d:DETERM$<i>58"],["s:Lamborghini","i:lamborghini","_58#397-408","opennlp/p:NN","cnx/l:Lamborghini","cnx/p:N","cnx/m:Prop","cnx/syn:@NH","<>:cnx/const:np#397-408$<i>59","tt/l:Lamborghini","tt/p:NE","mate/l:lamborghini","mate/p:NN","mate/m:case:acc","mate/m:number:sg","mate/m:gender:masc","<:mate/d:PG$<i>54","<:mate/d:NK$<i>57",">:mate/d:SB$<i>53","<:mate/d:CJ$<i>61","xip/p:NOUN","xip/l:Lamborghini","<>:xip/const:NOUN#397-408$<i>59","<>:xip/const:NPA#397-408$<i>59<b>3","<:xip/d:DETERM$<i>57",">:xip/d:OBJ$<i>53"],["s:einen","i:einen","_59#410-415","opennlp/p:ART","cnx/l:ein","cnx/p:DET","cnx/syn:@PREMOD","tt/l:eine","tt/p:ART","mate/l:ein","mate/p:ART","mate/m:case:acc","mate/m:number:sg","mate/m:gender:masc",">:mate/d:NK$<i>61","xip/p:DET","xip/l:ein","<>:xip/const:DET#410-415$<i>60","<>:xip/const:NP#410-421$<i>61",">:xip/d:DETERM$<i>60"],["s:Aston","i:aston","_60#416-421","opennlp/p:NN","cnx/l:Aston","cnx/p:N","cnx/m:Prop","cnx/syn:@PREMOD","<>:cnx/const:np#416-428$<i>62","tt/l:Aston","tt/p:NN","mate/l:aston","mate/p:NE","mate/m:case:*","mate/m:number:*","mate/m:gender:*",">:mate/d:PNC$<i>61","xip/p:NOUN","xip/l:Aston","<>:xip/const:NPA#416-421$<i>61<b>1","<>:xip/const:NOUN#416-421$<i>61","<:xip/d:DETERM$<i>59","xip/d:PERSON","<:xip/d:NMOD$<i>61"],["s:Martin","i:martin","_61#422-428","opennlp/p:NE","corenlp/ne_dewac_175m_600:I-PER","corenlp/ne_hgc_175m_600:I-PER","cnx/l:Martin","cnx/p:N","cnx/m:Prop","cnx/syn:@NH","tt/l:Martin","tt/p:NE","mate/l:martin","mate/p:NE","mate/m:case:acc","mate/m:number:sg","mate/m:gender:masc","<:mate/d:NK$<i>59","<:mate/d:PNC$<i>60",">:mate/d:CJ$<i>58","<:mate/d:APP$<i>66","<:mate/d:CJ$<i>68","xip/p:NOUN","xip/l:Martin","<>:xip/const:NP#422-428$<i>62","<>:xip/const:NPA#422-428$<i>62<b>1","<>:xip/const:NOUN#422-428$<i>62",">:xip/d:NMOD$<i>60","xip/d:PERSON"],["s:eine","i:eine","_62#430-434","opennlp/p:ART","cnx/l:eine","cnx/p:DET","cnx/syn:@PREMOD","tt/l:eine","tt/p:ART","mate/l:ein","mate/p:ART","mate/m:case:acc","mate/m:number:sg","mate/m:gender:fem",">:mate/d:NK$<i>66","xip/p:DET","xip/l:ein","<>:xip/const:DET#430-434$<i>63"],["s:Bentley","i:bentley","_63#435-442","opennlp/p:NE","corenlp/ne_dewac_175m_600:I-PER","cnx/l:Bentley","cnx/p:N","cnx/m:Prop","cnx/syn:@PREMOD","<>:cnx/const:np#435-471$<i>67","tt/p:NE","tt/p:NN","mate/l:bentley","mate/p:NE","mate/m:case:acc","mate/m:number:sg","mate/m:gender:fem",">:mate/d:PNC$<i>64","xip/p:NOUN","xip/l:Bentley","<>:xip/const:NOUN#435-442$<i>64"],["s:Continental","i:continental","_64#443-454","opennlp/p:NE","corenlp/ne_dewac_175m_600:I-PER","corenlp/ne_hgc_175m_600:I-ORG","cnx/l:Continental","cnx/p:N","cnx/m:Prop","cnx/syn:@PREMOD","tt/p:NE","mate/l:continental","mate/p:NE","<:mate/d:PNC$<i>63",">:mate/d:MO$<i>65","xip/p:NOUN","xip/l:Continental","<>:xip/const:NOUN#443-454$<i>65"],["s:Mulliner","i:mulliner","_65#455-463","opennlp/p:NN","corenlp/ne_dewac_175m_600:I-PER","corenlp/ne_hgc_175m_600:I-ORG","cnx/l:Mulliner","cnx/p:N","cnx/m:Prop","cnx/syn:@PREMOD","tt/p:NE","tt/p:ADJA","mate/l:mulliner","mate/p:ADJA","mate/m:case:*","mate/m:number:*","mate/m:gender:*","mate/m:degree:pos","<:mate/d:MO$<i>64",">:mate/d:NK$<i>66","xip/p:NOUN","xip/l:Mulliner","<>:xip/const:NOUN#455-463$<i>66"],["s:Edition","i:edition","_66#464-471","opennlp/p:NN","corenlp/ne_dewac_175m_600:I-PER","corenlp/ne_hgc_175m_600:I-ORG","cnx/l:edition","cnx/p:N","cnx/syn:@NH","tt/l:Edition","tt/p:NN","mate/l:edition","mate/p:NN","mate/m:case:acc","mate/m:number:sg","mate/m:gender:fem","<:mate/d:NK$<i>62","<:mate/d:NK$<i>65",">:mate/d:APP$<i>61","xip/p:NOUN","xip/l:Edition","<>:xip/const:NOUN#464-471$<i>67"],["s:einen","i:einen","_67#473-478","opennlp/p:ART","cnx/l:ein","cnx/p:DET","cnx/syn:@PREMOD","tt/l:eine","tt/p:ART","mate/l:ein","mate/p:ART","mate/m:case:acc","mate/m:number:sg","mate/m:gender:masc",">:mate/d:NK$<i>68","xip/p:DET","xip/l:ein","<>:xip/const:NP#473-486$<i>69","<>:xip/const:DET#473-478$<i>68",">:xip/d:DETERM$<i>68"],["s:Ferrari","i:ferrari","_68#479-486","opennlp/p:NN","cnx/l:Ferrari","cnx/p:N","cnx/m:Prop","cnx/syn:@PREMOD","<>:cnx/const:np#479-497$<i>71","tt/l:Ferrari","tt/p:NN","tt/l:Ferrari","tt/p:NE","mate/l:ferrari","mate/p:NN","mate/m:case:acc","mate/m:number:sg","mate/m:gender:masc","<:mate/d:NK$<i>67",">:mate/d:CJ$<i>61","<:mate/d:CJ$<i>70","xip/p:NOUN","xip/l:Ferrari","<>:xip/const:NOUN#479-486$<i>69","<>:xip/const:NPA#479-486$<i>69<b>1","<:xip/d:DETERM$<i>67","xip/d:PERSON"],["s:360","i:360","_69#487-490","opennlp/p:CARD","cnx/l:360","cnx/p:N","cnx/m:Prop","cnx/syn:@PREMOD","tt/l:@card@","tt/p:CARD","mate/l:360","mate/p:CARD",">:mate/d:NK$<i>70","xip/p:NUM","xip/l:360","<>:xip/const:NUM#487-490$<i>70","<>:xip/const:NP#487-497$<i>71","<>:xip/const:NPA#487-497$<i>71<b>1","<>:xip/const:NUM#487-490$<i>70<b>2",">:xip/d:NMOD$<i>70"],["s:Modena","i:modena","_70#491-497","opennlp/p:NN","corenlp/ne_dewac_175m_600:I-LOC","corenlp/ne_hgc_175m_600:I-LOC","cnx/l:Modena","cnx/p:N","cnx/m:Prop","cnx/syn:@NH","tt/l:Modena","tt/p:NE","mate/l:modena","mate/p:NN","mate/m:case:acc","mate/m:number:sg","mate/m:gender:masc","<:mate/d:NK$<i>69",">:mate/d:CJ$<i>68","<:mate/d:CD$<i>71","xip/p:NOUN","xip/l:Modena","<>:xip/const:NOUN#491-497$<i>71","<:xip/d:NMOD$<i>69","<:xip/d:COORD$<i>71"],["s:und","i:und","_71#498-501","opennlp/p:KON","cnx/l:und","cnx/p:CC","cnx/syn:@CC","tt/l:und","tt/p:KON","mate/l:und","mate/p:KON",">:mate/d:CD$<i>70","<:mate/d:CJ$<i>73","xip/p:CONJ","xip/l:und","<>:xip/const:CONJ#498-501$<i>72",">:xip/d:COORD$<i>70",">:xip/d:COORD$<i>74"],["s:30","i:30","_72#502-504","opennlp/p:CARD","cnx/l:30","cnx/p:NUM","cnx/syn:@PREMOD","tt/l:30","tt/p:CARD","mate/l:30","mate/p:CARD",">:mate/d:NMC$<i>73","xip/p:NUM","xip/l:30","<>:xip/const:NP#502-524$<i>75","<>:xip/const:NPA#502-524$<i>75<b>1","<>:xip/const:NUM#502-514$<i>74<b>2","<>:xip/const:NUM#502-514$<i>74<b>3","<>:xip/const:NUM#502-504$<i>73"],["s:Millionen","i:millionen","_73#505-514","opennlp/p:NN","cnx/l:million","cnx/p:NUM","cnx/syn:@PREMOD","tt/l:Million","tt/p:NN","mate/l:million","mate/p:NN","mate/m:case:acc","mate/m:number:pl","mate/m:gender:fem","<:mate/d:NMC$<i>72",">:mate/d:CJ$<i>71","<:mate/d:NK$<i>74","xip/p:NOUN","xip/l:Million","<>:xip/const:NOUN#505-514$<i>74"],["s:US-Dollar","i:us-dollar","_74#515-524","opennlp/p:NN","corenlp/ne_dewac_175m_600:I-MISC","corenlp/ne_hgc_175m_600:I-MISC","tt/l:US-Dollar","tt/p:NN","mate/l:us-dollar","mate/p:NN","mate/m:case:*","mate/m:number:*","mate/m:gender:masc",">:mate/d:NK$<i>73","xip/p:NOUN","xip/l:US-Dollar","<>:xip/const:NOUN#515-524$<i>75","<:xip/d:COORD$<i>71"],["s:damit","i:damit","_75#526-531","opennlp/p:KOUS","cnx/l:damit","cnx/p:CS","cnx/syn:@PREMARK","tt/l:damit","tt/p:KOUS","tt/l:damit","tt/p:PROAV","mate/l:damit","mate/p:KOUS",">:mate/d:CP$<i>83","xip/p:CONJ","xip/l:damit","<>:xip/const:CONJ#526-531$<i>76",">:xip/d:CONNECT$<i>83"],["s:er","i:er","_76#532-534","opennlp/p:PPER","cnx/l:er","cnx/p:PRON","cnx/syn:@NH","tt/l:er","tt/p:PPER","mate/l:er","mate/p:PPER","mate/m:case:nom","mate/m:number:sg","mate/m:gender:masc","mate/m:person:3",">:mate/d:SB$<i>83","xip/p:PRON","xip/l:er","<>:xip/const:PRON#532-534$<i>77",">:xip/d:SUBJ$<i>83"],["s:als","i:als","_77#535-538","opennlp/p:APPR","cnx/l:als","cnx/p:PREP","cnx/syn:@PREMARK","tt/l:als","tt/p:KOKOM","mate/l:als","mate/p:APPR",">:mate/d:MO$<i>83","<:mate/d:NK$<i>78","xip/p:PREP","xip/l:als","<>:xip/const:PREP#535-538$<i>78"],["s:Chef-Designer","i:chef-designer","_78#539-552","opennlp/p:NN","cnx/l:chef","cnx/l:designer","cnx/p:N","cnx/syn:@NH","<>:cnx/const:np#539-552$<i>79","tt/p:NN","mate/l:chef-designer","mate/p:NN","mate/m:case:nom","mate/m:number:sg","mate/m:gender:masc",">:mate/d:NK$<i>77","xip/p:NOUN","xip/l:Chef-Designer","<>:xip/const:NOUN#539-552$<i>79"],["s:bei","i:bei","_79#553-556","opennlp/p:APPR","cnx/l:bei","cnx/p:PREP","cnx/syn:@POSTMOD","tt/l:bei","tt/p:APPR","mate/l:bei","mate/p:APPR",">:mate/d:MO$<i>83","<:mate/d:NK$<i>82","xip/p:PREP","xip/l:bei","<>:xip/const:PREP#553-556$<i>80"],["s:A","i:a","_80#557-558","opennlp/p:NE","cnx/l:a","cnx/p:PREP","cnx/syn:@PREMARK","tt/l:A","tt/p:NN","mate/p:NE","mate/m:case:*","mate/m:number:*","mate/m:gender:*",">:mate/d:PNC$<i>82","xip/p:SYMBOL","xip/l:A","<>:xip/const:SYMBOL#557-558$<i>81"],["s:Bathing","i:bathing","_81#559-566","opennlp/p:NE","cnx/l:Bathing","cnx/p:N","cnx/m:Prop","cnx/syn:@PREMOD","<>:cnx/const:np#559-570$<i>83","tt/p:NE","mate/l:bathing","mate/p:NE","mate/m:case:*","mate/m:number:*","mate/m:gender:*",">:mate/d:PNC$<i>82","xip/p:ADJ","xip/l:bathing","<>:xip/const:ADJ#559-566$<i>82","xip/d:LOC",">:xip/d:OBJ$<i>83","<:xip/d:NMOD$<i>82"],["s:Ape","i:ape","_82#567-570","opennlp/p:NE","cnx/l:Ape","cnx/p:N","cnx/m:Prop","cnx/syn:@NH","tt/p:NE","mate/l:ape","mate/p:NE","mate/m:case:dat","mate/m:number:sg","mate/m:gender:*","<:mate/d:PNC$<i>80","<:mate/d:PNC$<i>81",">:mate/d:NK$<i>79","xip/p:NOUN","xip/l:Ape","<>:xip/const:NOUN#567-570$<i>83",">:xip/d:NMOD$<i>81"],["s:arbeitet","i:arbeitet","_83#571-579","opennlp/p:VVFIN","cnx/l:arbeiten","cnx/p:V","cnx/m:IND","cnx/m:PRES","cnx/syn:@MAIN","tt/l:arbeiten","tt/p:VVFIN","mate/l:arbeiten","mate/p:VVFIN","mate/m:number:sg","mate/m:person:3","mate/m:tense:pres","mate/m:mood:ind","<:mate/d:CP$<i>75","<:mate/d:SB$<i>76","<:mate/d:MO$<i>77","<:mate/d:MO$<i>79",">:mate/d:MO$<i>53","xip/p:VERB","xip/l:arbeiten","<>:xip/const:VERB#571-579$<i>84","<:xip/d:CONNECT$<i>75","<:xip/d:SUBJ$<i>76","<:xip/d:OBJ$<i>81","xip/d:VMAIN"]],"foundries":"base base#paragraphs mate mate#morpho mate#dependency connexor connexor#morpho connexor#syntax connexor#phrase treetagger treetagger#morpho corenlp corenlp#namedentities corenlp#namedentities#ne_dewac_175m_600 corenlp#namedentities corenlp#namedentities#ne_hgc_175m_600 xip xip#morpho xip#constituency xip#dependency opennlp opennlp#sentences opennlp#morpho","name":"tokens","tokenization":"opennlp#tokens"}],"corpusID":"WPD","pubDate":"20050328","author":"","ID":"WPD_AAA.00006","subTitle":"Die freie Enzyklopädie","title":"Wikipedia"}
\ No newline at end of file
diff --git a/trunk/src/test/resources/wiki/00006.json.gz b/trunk/src/test/resources/wiki/00006.json.gz
new file mode 100644
index 0000000..8f41729
--- /dev/null
+++ b/trunk/src/test/resources/wiki/00006.json.gz
Binary files differ
diff --git a/trunk/src/test/resources/wiki/02439.json b/trunk/src/test/resources/wiki/02439.json
new file mode 100644
index 0000000..a9eb3db
--- /dev/null
+++ b/trunk/src/test/resources/wiki/02439.json
@@ -0,0 +1 @@
+{"title":"Wikipedia","ID":"WPD_AAA.02439","textClass":"kultur,musik,freizeit-unterhaltung,reisen","author":"","fields":[{"primaryData":"Aegukga ist ebenfalls die Nationalhymne Nordkoreas. Siehe Achimun pinnara.Aegukka ist die Nationalhymne Südkoreas. Der Titel bedeutet wörtlich \"Das Lied der Liebe für das Land\", oder \"Das patriotische Lied\". Es wird angenommen, dass der Liedtext zum Ende des 19. Jahrhunderts entweder von dem Politiker Yun Chi-ho oder dem Unabhängigkeitsführer und Erzieher An Chang-ho geschrieben wurde. Ursprünglich wurde Aegukka zur der schottischen Volksmelodie Auld Lang Syne gesungen. Während der japanischen Besatzungszeit von 1910 bis 1945 wurde das Lied verboten. Im Ausland lebende Koreaner sangen es weiter, um ihre Sehnsucht für die Unabhängigkeit auszudrücken. Im Jahre 1937 hat Ahn Eak-tae, ein international bekannter koreanischer Musiker aus Spanien, eine neue Melodie für Aegukka komponiert. Seine Arbeit wurde offiziell von der provisorischen Regierung der Republik Korea (1919-1945) in Shanghai angenommen worden, und als inoffizielle Hymne verwendet. 1. Koreanisches Original 1. Strophe 동해물과 백두산이마르고닳도록 하느님이 보우하사우리나라만세 무궁화 삼천리화려강산 대한사람 대한으로길이보전하세. 2. Strophe 남산위에 저소나무철갑을두른듯 바람서리 불변함은우리기상일세. 무궁화 삼천리화려강산 대한사람 대한으로길이보전하세. 3. Strophe 가을하늘 공활한데높고구름없이 밝은달은 우리가슴일편단심일세. 무궁화 삼천리화려강산 대한사람 대한으로길이보전하세. 4. Strophe 이기상과 이맘으로충성을다하여 괴로우나 즐거우나나라사랑하세. 무궁화 삼천리화려강산 대한사람 대한으로길이보전하세. 2. Lateinische Transkription 1. Strophe Donghae mulgwa Baekdusani mareugo daltorok haneunimi bouhasa urinara manse 2. Strophe Namsan wie jeo sonamu cheolgabeul dureundeut baram seori bulbyeonhameun uri gisangilse 3. Strophe gaeul haneul gonghwalhande nopgo gureum eopsi balgeun dareun uri gaseum ilpyeondansimilse 4. Strophe i gisanggwa i mameuro chungseongeul dahayeo goerouna jeulgeouna nara saranghase Refrain mugunghwa samcheolli hwaryeogangsan Daehan saram Daehaneuro giri bojeonhase 3. Deutsche Übersetzung 1. Strophe Bis das Meer des Ostens ausdörrt und der Paektusan-Berg abgetragen ist, möge Gott Korea schützen. 2. Strophe Wie die wetterfeste Kiefer auf dem Namsan-Berg, wie die unveränderliche Stimme des Windes so sei unser Wesen, fest und unbeugsam. 3. Strophe Wir bleiben treu wie die Unendlichkeit, wie die Reinheit und Weite des Herbsthimmels, wie der klare Schein des Mondes. 4. Strophe Mit unserem Wesen und ergebenem Herzen wollen wir unser Vaterland lieben in der Not ebenso wie in Zeiten des Glücks. Refrain Wir Koreaner werden immer wachen über unser Land mit seinen Flüssen und Bergen, auf denen die Sharonrose blüht. 4. Weblinks MIDI File Artikel der Regierung Südkorea (engl.)"},{"foundries":"opennlp opennlp#sentences opennlp#morpho mate mate#morpho mate#dependency treetagger treetagger#morpho corenlp corenlp#namedentities corenlp#namedentities#ne_dewac_175m_600 corenlp#namedentities corenlp#namedentities#ne_hgc_175m_600 xip xip#morpho xip#constituency xip#dependency connexor connexor#morpho connexor#syntax connexor#phrase base base#paragraphs","tokenization":"opennlp#tokens","data":[["s:Aegukga","i:aegukga","_0#0-7","-:t$<i>405","<>:s#0-51$<i>6","-:s$<i>18","<>:p#0-207$<i>28","-:p$<i>49","opennlp/p:NE","cnx/l:Aegukga","cnx/p:N","cnx/m:Prop","cnx/syn:@NH","tt/p:NE","tt/p:NN","mate/l:aegukga","mate/p:NE","mate/m:case:nom","mate/m:number:sg","mate/m:gender:*",">:mate/d:SB$<i>1","xip/p:NOUN","xip/l:Aegukga","<>:xip/const:TOP#0-51$<i>6","<>:xip/const:MC#0-50$<i>6<b>1",">:xip/d:SUBJ$<i>1"],["s:ist","i:ist","_1#8-11","opennlp/p:VAFIN","cnx/l:sein","cnx/p:V","cnx/m:IND","cnx/m:PRES","cnx/syn:@MAIN","tt/l:sein","tt/p:VAFIN","mate/l:sein","mate/p:VAFIN","mate/m:number:sg","mate/m:person:3","mate/m:tense:pres","mate/m:mood:ind","<:mate/d:SB$<i>0","<:mate/d:MO$<i>2","<:mate/d:SB$<i>4","xip/p:VERB","xip/l:sein","<>:xip/const:VERB#8-11$<i>2","<:xip/d:SUBJ$<i>0","xip/d:VMAIN","<:xip/d:VMOD$<i>2","<:xip/d:PRED$<i>4"],["s:ebenfalls","i:ebenfalls","_2#12-21","opennlp/p:ADV","cnx/l:ebenfalls","cnx/p:ADV","cnx/syn:@ADVL","tt/l:ebenfalls","tt/p:ADV","mate/l:ebenfalls","mate/p:ADV",">:mate/d:MO$<i>1","xip/p:ADV","xip/l:ebenfalls","<>:xip/const:ADV#12-21$<i>3",">:xip/d:VMOD$<i>1"],["s:die","i:die","_3#22-25","opennlp/p:ART","cnx/l:die","cnx/p:DET","cnx/syn:@PREMOD","tt/l:die","tt/p:ART","mate/l:der","mate/p:ART","mate/m:case:nom","mate/m:number:sg","mate/m:gender:fem",">:mate/d:NK$<i>4","xip/p:DET","xip/l:die","<>:xip/const:DET#22-25$<i>4",">:xip/d:DETERM$<i>4"],["s:Nationalhymne","i:nationalhymne","_4#26-39","opennlp/p:NN","cnx/l:national","cnx/l:hymne","cnx/p:N","cnx/syn:@NH","<>:cnx/const:np#26-39$<i>5","tt/l:Nationalhymne","tt/p:NN","mate/l:nationalhymne","mate/p:NN","mate/m:case:nom","mate/m:number:sg","mate/m:gender:fem","<:mate/d:NK$<i>3",">:mate/d:SB$<i>1","<:mate/d:NK$<i>5","xip/p:NOUN","xip/l:national","xip/l:Hymne","xip/l:Nationalhymne","<>:xip/const:NOUN#26-39$<i>5","<:xip/d:DETERM$<i>3",">:xip/d:PRED$<i>1","<:xip/d:NMOD$<i>5"],["s:Nordkoreas","i:nordkoreas","_5#40-50","opennlp/p:NE","corenlp/ne_dewac_175m_600:I-LOC","corenlp/ne_hgc_175m_600:I-LOC","cnx/l:Nordkorea","cnx/p:N","cnx/m:Prop","cnx/syn:@NH","<>:cnx/const:np#40-50$<i>6","tt/l:Nordkorea","tt/p:NE","mate/l:nordkorea","mate/p:NE","mate/m:case:gen","mate/m:number:sg","mate/m:gender:neut",">:mate/d:NK$<i>4","xip/p:NOUN","xip/l:Nordkorea","<>:xip/const:NOUN#40-50$<i>6","xip/d:LOC",">:xip/d:NMOD$<i>4"],["s:Siehe","i:siehe","_6#52-57","<>:s#52-114$<i>13","opennlp/p:VVIMP","cnx/l:sehen","cnx/p:V","cnx/m:IMP","cnx/syn:@MAIN","tt/l:sehen","tt/p:VVIMP","mate/l:sehen","mate/p:VVIMP","mate/m:number:sg","mate/m:person:2","mate/m:mood:imp",">:mate/d:MO$<i>8","xip/p:VERB","xip/l:sehen","<>:xip/const:VERB#52-57$<i>7","<>:xip/const:TOP#52-114$<i>13","<>:xip/const:MC#52-81$<i>9<b>1","xip/d:VMAIN"],["s:Achimun","i:achimun","_7#58-65","opennlp/p:NE","cnx/l:Achimun","cnx/p:N","cnx/m:Prop","cnx/syn:@PREMOD","<>:cnx/const:np#58-81$<i>9","tt/p:NE","tt/p:NN","mate/l:achimun","mate/p:NE","mate/m:case:acc","mate/m:number:sg","mate/m:gender:*",">:mate/d:PNC$<i>8","xip/p:NOUN","xip/l:Achimun","<>:xip/const:NOUN#58-65$<i>8","<>:xip/const:NP#58-81$<i>9<b>2","<>:xip/const:NPA#58-81$<i>9<b>3","<>:xip/const:NOUN#58-81$<i>9<b>4"],["s:pinnara.Aegukka","i:pinnara.aegukka","_8#66-81","opennlp/p:NE","mate/l:pinnara.aegukka","mate/p:NE","mate/m:degree:pos","<:mate/d:MO$<i>6","<:mate/d:PNC$<i>7",">:mate/d:PD$<i>9","xip/p:NOUN","xip/l:pinnara.Aegukka","<>:xip/const:NOUN#66-81$<i>9"],["s:ist","i:ist","_9#82-85","opennlp/p:VAFIN","cnx/l:sein","cnx/p:V","cnx/m:IND","cnx/m:PRES","cnx/syn:@MAIN","tt/l:sein","tt/p:VAFIN","mate/l:sein","mate/p:VAFIN","mate/m:number:sg","mate/m:person:3","mate/m:tense:pres","mate/m:mood:ind","<:mate/d:PD$<i>8","<:mate/d:PD$<i>11","xip/p:VERB","xip/l:sein","<>:xip/const:VERB#82-85$<i>10","<>:xip/const:MC#82-113$<i>13<b>1","xip/d:VMAIN","<:xip/d:SUBJ$<i>11"],["s:die","i:die","_10#86-89","opennlp/p:ART","cnx/l:die","cnx/p:DET","cnx/syn:@PREMOD","tt/l:die","tt/p:ART","mate/l:der","mate/p:ART","mate/m:case:nom","mate/m:number:sg","mate/m:gender:fem",">:mate/d:NK$<i>11","xip/p:DET","xip/l:die","<>:xip/const:DET#86-89$<i>11","<>:xip/const:NP#86-103$<i>12<b>2",">:xip/d:DETERM$<i>11"],["s:Nationalhymne","i:nationalhymne","_11#90-103","opennlp/p:NN","cnx/l:national","cnx/l:hymne","cnx/p:N","cnx/syn:@NH","<>:cnx/const:np#90-103$<i>12","tt/l:Nationalhymne","tt/p:NN","mate/l:nationalhymne","mate/p:NN","mate/m:case:nom","mate/m:number:sg","mate/m:gender:fem","<:mate/d:NK$<i>10",">:mate/d:PD$<i>9","<:mate/d:NK$<i>12","xip/p:NOUN","xip/l:national","xip/l:Hymne","xip/l:Nationalhymne","<>:xip/const:NPA#90-103$<i>12<b>3","<>:xip/const:NOUN#90-103$<i>12","<:xip/d:DETERM$<i>10",">:xip/d:SUBJ$<i>9","<:xip/d:NMOD$<i>12"],["s:Südkoreas","i:südkoreas","_12#104-113","opennlp/p:NE","cnx/l:Südkorea","cnx/p:N","cnx/m:Prop","cnx/syn:@NH","<>:cnx/const:np#104-113$<i>13","tt/l:Südkorea","tt/p:NE","mate/l:südkorea","mate/p:NE","mate/m:case:gen","mate/m:number:sg","mate/m:gender:neut",">:mate/d:NK$<i>11","xip/p:NOUN","xip/l:Südkorea","<>:xip/const:NOUN#104-113$<i>13","<>:xip/const:NP#104-113$<i>13<b>2","<>:xip/const:NPA#104-113$<i>13<b>3","xip/d:LOC",">:xip/d:NMOD$<i>11"],["s:Der","i:der","_13#115-118","<>:s#115-207$<i>28","opennlp/p:ART","cnx/l:der","cnx/p:DET","cnx/syn:@PREMOD","tt/l:die","tt/p:ART","mate/l:der","mate/p:ART","mate/m:case:nom","mate/m:number:sg","mate/m:gender:masc",">:mate/d:NK$<i>14","xip/p:DET","xip/l:der","<>:xip/const:TOP#115-207$<i>28","<>:xip/const:INS#115-177$<i>24<b>1","<>:xip/const:NP#115-124$<i>15<b>2","<>:xip/const:DET#115-118$<i>14",">:xip/d:DETERM$<i>14"],["s:Titel","i:titel","_14#119-124","opennlp/p:NN","cnx/l:titel","cnx/p:N","cnx/syn:@NH","<>:cnx/const:np#119-124$<i>15","tt/l:Titel","tt/p:NN","mate/l:titel","mate/p:NN","mate/m:case:nom","mate/m:number:sg","mate/m:gender:masc","<:mate/d:NK$<i>13",">:mate/d:SB$<i>15","xip/p:NOUN","xip/l:Titel","<>:xip/const:NOUN#119-124$<i>15","<>:xip/const:NPA#119-124$<i>15<b>3","<:xip/d:DETERM$<i>13"],["s:bedeutet","i:bedeutet","_15#125-133","opennlp/p:VVFIN","cnx/l:bedeuten","cnx/p:V","cnx/m:IND","cnx/m:PRES","cnx/syn:@MAIN","tt/l:bedeuten","tt/p:VVFIN","mate/l:bedeuten","mate/p:VVFIN","mate/m:number:sg","mate/m:person:3","mate/m:tense:pres","mate/m:mood:ind","<:mate/d:SB$<i>14","<:mate/d:MO$<i>16","<:mate/d:OA$<i>18","<:mate/d:CD$<i>24","xip/p:ADJ","xip/l:bedeuten","<>:xip/const:AP#125-142$<i>17<b>2","<>:xip/const:ADJ#125-133$<i>16",">:xip/d:ADJMOD$<i>16"],["s:wörtlich","i:wörtlich","_16#134-142","opennlp/p:ADJD","cnx/l:wörtlich","cnx/p:A","cnx/syn:@NH","tt/l:wörtlich","tt/p:ADJD","mate/l:wörtlich","mate/p:ADJD","mate/m:degree:pos",">:mate/d:MO$<i>15","xip/p:ADJ","xip/l:wörtlich","<>:xip/const:ADJ#134-142$<i>17","<:xip/d:ADJMOD$<i>15"],["s:\"Das","i:\"das","_17#143-147","opennlp/p:ART"],["s:Lied","i:lied","_18#148-152","opennlp/p:NN","cnx/l:lied","cnx/p:N","cnx/syn:@NH","<>:cnx/const:np#148-152$<i>19","tt/l:Lied","tt/p:NN","mate/l:lied","mate/p:NN","mate/m:case:acc","mate/m:number:sg","mate/m:gender:neut",">:mate/d:OA$<i>15","<:mate/d:AG$<i>20","xip/p:NOUN","xip/l:Lied","<>:xip/const:NPA#148-152$<i>19","<>:xip/const:NOUN#148-152$<i>19","<:xip/d:NMOD$<i>20"],["s:der","i:der","_19#153-156","opennlp/p:ART","cnx/l:die","cnx/p:DET","cnx/syn:@PREMOD","tt/l:die","tt/p:ART","mate/l:der","mate/p:ART","mate/m:case:gen","mate/m:number:sg","mate/m:gender:fem",">:mate/d:NK$<i>20","xip/p:DET","xip/l:der","<>:xip/const:DET#153-156$<i>20",">:xip/d:DETERM$<i>20"],["s:Liebe","i:liebe","_20#157-162","opennlp/p:NN","cnx/l:liebe","cnx/p:N","cnx/syn:@NH","tt/l:Liebe","tt/p:NN","mate/l:liebe","mate/p:NN","mate/m:case:gen","mate/m:number:sg","mate/m:gender:fem","<:mate/d:NK$<i>19",">:mate/d:AG$<i>18","<:mate/d:MNR$<i>21","xip/p:NOUN","xip/l:lieb","<>:xip/const:NOUN#157-162$<i>21","<:xip/d:DETERM$<i>19",">:xip/d:NMOD$<i>18"],["s:für","i:für","_21#163-166","opennlp/p:APPR","cnx/l:für","cnx/p:PREP","cnx/syn:@POSTMOD","tt/l:für","tt/p:APPR","mate/l:für","mate/p:APPR",">:mate/d:MNR$<i>20","xip/p:PREP","xip/l:für","<>:xip/const:PREP#163-166$<i>22"],["s:das","i:das","_22#167-170","opennlp/p:ART","cnx/l:das","cnx/p:DET","cnx/syn:@PREMOD","tt/l:die","tt/p:ART","mate/l:der","mate/p:ART","mate/m:case:acc","mate/m:number:sg","mate/m:gender:neut","xip/p:DET","xip/l:das","<>:xip/const:DET#167-170$<i>23"],["s:Land\"","i:land\"","_23#171-176","opennlp/p:NN"],["s:oder","i:oder","_24#178-182","opennlp/p:KON","cnx/l:oder","cnx/p:CC","cnx/syn:@CC","tt/l:oder","tt/p:KON","mate/l:oder","mate/p:KON",">:mate/d:CD$<i>15","xip/p:CONJ","xip/l:oder","<>:xip/const:CONJ#178-182$<i>25"],["s:\"Das","i:\"das","_25#183-187","opennlp/p:NE"],["s:patriotische","i:patriotische","_26#188-200","opennlp/p:ADJA","cnx/l:patriotisch","cnx/p:A","cnx/syn:@PREMOD","tt/l:patriotisch","tt/p:ADJA","mate/l:patriotisch","mate/p:ADJA","mate/m:case:acc","mate/m:number:sg","mate/m:gender:neut","mate/m:degree:pos","xip/p:ADJ","xip/l:patriotisch","<>:xip/const:AP#188-200$<i>27","<>:xip/const:ADJ#188-200$<i>27"],["s:Lied\"","i:lied\"","_27#201-206","opennlp/p:NN"],["s:Es","i:es","_28#208-210","<>:s#208-388$<i>54","<>:p#208-954$<i>131","opennlp/p:PPER","cnx/l:es","cnx/p:PRON","cnx/syn:@NH","tt/l:es","tt/p:PPER","mate/l:es","mate/p:PPER","mate/m:case:nom","mate/m:number:sg","mate/m:gender:neut","mate/m:person:3",">:mate/d:SB$<i>29","xip/p:PRON","xip/l:es","<>:xip/const:PRON#208-210$<i>29","<>:xip/const:TOP#208-388$<i>54","<>:xip/const:MC#208-226$<i>31<b>1","<>:xip/const:NP#208-210$<i>29<b>2",">:xip/d:SUBJ$<i>30"],["s:wird","i:wird","_29#211-215","opennlp/p:VAFIN","cnx/l:werden","cnx/p:V","cnx/m:IND","cnx/m:PRES","cnx/syn:@AUX","tt/l:werden","tt/p:VAFIN","mate/l:werden","mate/p:VAFIN","mate/m:number:sg","mate/m:person:3","mate/m:tense:pres","mate/m:mood:ind","<:mate/d:SB$<i>28","<:mate/d:OC$<i>30","xip/p:VERB","xip/l:werden","<>:xip/const:VERB#211-215$<i>30","<:xip/d:AUXIL$<i>30"],["s:angenommen","i:angenommen","_30#216-226","opennlp/p:VVPP","cnx/l:annehmen","cnx/p:V","cnx/m:PCP","cnx/m:PERF","cnx/syn:@MAIN","tt/l:annehmen","tt/p:VVPP","mate/l:annehmen","mate/p:VVPP",">:mate/d:OC$<i>29","<:mate/d:MO$<i>53","xip/p:VERB","xip/l:annehmen","<>:xip/const:VERB#216-226$<i>31","<:xip/d:SUBJ$<i>28",">:xip/d:AUXIL$<i>29","xip/d:VMAIN"],["s:dass","i:dass","_31#228-232","opennlp/p:KOUS","cnx/l:dass","cnx/p:CS","cnx/syn:@PREMARK","tt/l:dass","tt/p:KOUS","mate/l:dass","mate/p:KOUS",">:mate/d:CP$<i>53","xip/p:CONJ","xip/l:dass","<>:xip/const:CONJ#228-232$<i>32"],["s:der","i:der","_32#233-236","opennlp/p:ART","cnx/l:der","cnx/p:DET","cnx/syn:@PREMOD","tt/l:die","tt/p:ART","mate/l:der","mate/p:ART","mate/m:case:nom","mate/m:number:sg","mate/m:gender:masc",">:mate/d:NK$<i>33","xip/p:DET","xip/l:der","<>:xip/const:NP#233-245$<i>34<b>1","<>:xip/const:DET#233-236$<i>33",">:xip/d:DETERM$<i>33"],["s:Liedtext","i:liedtext","_33#237-245","opennlp/p:NN","cnx/l:lied","cnx/l:text","cnx/p:N","cnx/syn:@NH","<>:cnx/const:np#237-254$<i>36","tt/l:Liedtext","tt/p:NN","mate/l:liedtext","mate/p:NN","mate/m:case:nom","mate/m:number:sg","mate/m:gender:masc","<:mate/d:NK$<i>32",">:mate/d:SB$<i>53","<:mate/d:MNR$<i>34","xip/p:NOUN","xip/l:Lied","xip/l:Text","xip/l:Liedtext","<>:xip/const:NOUN#237-245$<i>34","<>:xip/const:NPA#237-245$<i>34<b>2","<:xip/d:DETERM$<i>32","xip/d:THEMA"],["s:zum","i:zum","_34#246-249","opennlp/p:APPRART","tt/l:zum","tt/p:APPRART","mate/l:zu","mate/p:APPRART","mate/m:case:dat","mate/m:number:sg","mate/m:gender:neut",">:mate/d:MNR$<i>33","<:mate/d:NK$<i>35","xip/p:PREP","xip/l:zu","<>:xip/const:PREP#246-249$<i>35","<>:xip/const:PP#246-254$<i>36<b>1"],["s:Ende","i:ende","_35#250-254","opennlp/p:NN","cnx/l:ende","cnx/p:N","cnx/syn:@NH","tt/l:Ende","tt/p:NN","mate/l:ende","mate/p:NN","mate/m:case:dat","mate/m:number:sg","mate/m:gender:neut",">:mate/d:NK$<i>34","<:mate/d:AG$<i>38","xip/p:NOUN","xip/l:Ende","<>:xip/const:NOUN#250-254$<i>36","<>:xip/const:NP#250-254$<i>36<b>2","<>:xip/const:NPA#250-254$<i>36<b>3","<:xip/d:NMOD$<i>38"],["s:des","i:des","_36#255-258","opennlp/p:ART","cnx/l:der","cnx/p:DET","cnx/syn:@PREMOD","tt/l:die","tt/p:ART","mate/l:der","mate/p:ART","mate/m:case:gen","mate/m:number:sg","mate/m:gender:masc","xip/p:DET","xip/l:der","<>:xip/const:DET#255-258$<i>37","<>:xip/const:NP#255-275$<i>39<b>1",">:xip/d:DETERM$<i>38"],["s:19.","i:19.","_37#259-262","opennlp/p:ADJA","cnx/l:19.","cnx/p:NUM","cnx/m:ORD","cnx/syn:@PREMOD","<>:cnx/const:np#259-275$<i>39","tt/l:19.","tt/p:ADJA","xip/p:NUM","xip/l:19.","<>:xip/const:NPA#259-275$<i>39<b>2","<>:xip/const:NUM#259-262$<i>38"],["s:Jahrhunderts","i:jahrhunderts","_38#263-275","opennlp/p:NN","cnx/l:jahr","cnx/l:hundert","cnx/p:N","cnx/syn:@NH","tt/l:Jahrhundert","tt/p:NN","mate/l:jahrhundert","mate/p:NN","mate/m:case:acc","mate/m:number:pl","mate/m:gender:neut",">:mate/d:AG$<i>35","xip/p:NOUN","xip/l:Jahrhundert","<>:xip/const:NOUN#263-275$<i>39","<:xip/d:DETERM$<i>36",">:xip/d:NMOD$<i>35"],["s:entweder","i:entweder","_39#276-284","opennlp/p:KON","cnx/l:entweder","cnx/p:ADV","cnx/syn:@PREMARK","tt/l:entweder","tt/p:KON","mate/l:entweder","mate/p:KON",">:mate/d:CD$<i>40","xip/p:CONJ","xip/l:entweder","<>:xip/const:CONJ#276-284$<i>40"],["s:von","i:von","_40#285-288","opennlp/p:APPR","cnx/l:von","cnx/p:PREP","cnx/syn:@PREMARK","tt/l:von","tt/p:APPR","mate/l:von","mate/p:APPR","<:mate/d:CD$<i>39",">:mate/d:SBP$<i>52","<:mate/d:NK$<i>42","xip/p:PREP","xip/l:von","<>:xip/const:PP#285-302$<i>43<b>1","<>:xip/const:PREP#285-288$<i>41"],["s:dem","i:dem","_41#289-292","opennlp/p:ART","cnx/l:der","cnx/p:DET","cnx/syn:@PREMOD","tt/l:die","tt/p:ART","mate/l:der","mate/p:ART","mate/m:case:dat","mate/m:number:sg","mate/m:gender:masc",">:mate/d:NK$<i>42","xip/p:DET","xip/l:der","<>:xip/const:NP#289-302$<i>43<b>2","<>:xip/const:DET#289-292$<i>42",">:xip/d:DETERM$<i>42"],["s:Politiker","i:politiker","_42#293-302","opennlp/p:NN","cnx/l:politiker","cnx/p:N","cnx/syn:@PREMOD","<>:cnx/const:np#293-313$<i>45","tt/l:Politiker","tt/p:NN","mate/l:politiker","mate/p:NN","mate/m:case:dat","mate/m:number:sg","mate/m:gender:masc","<:mate/d:NK$<i>41",">:mate/d:NK$<i>40","<:mate/d:NK$<i>44","<:mate/d:CD$<i>45","xip/p:NOUN","xip/l:Politiker","<>:xip/const:NPA#293-302$<i>43<b>3","<>:xip/const:NOUN#293-302$<i>43","<:xip/d:DETERM$<i>41","<:xip/d:NMOD$<i>43"],["s:Yun","i:yun","_43#303-306","opennlp/p:NE","corenlp/ne_dewac_175m_600:I-PER","cnx/l:Yun","cnx/p:N","cnx/m:Prop","cnx/syn:@PREMOD","tt/l:Yun","tt/p:NE","mate/l:yun","mate/p:NE","mate/m:case:nom","mate/m:number:sg","mate/m:gender:masc",">:mate/d:PNC$<i>44","xip/p:NOUN","xip/l:Yun","<>:xip/const:NP#303-306$<i>44<b>1","<>:xip/const:NPA#303-306$<i>44<b>2","<>:xip/const:NOUN#303-306$<i>44",">:xip/d:NMOD$<i>42"],["s:Chi-ho","i:chi-ho","_44#307-313","opennlp/p:NE","corenlp/ne_dewac_175m_600:I-PER","cnx/l:chi-ho","cnx/p:N","cnx/syn:@NH","tt/p:NE","mate/l:chi-ho","mate/p:NE","mate/m:case:nom","mate/m:number:sg","mate/m:gender:masc","<:mate/d:PNC$<i>43",">:mate/d:NK$<i>42","xip/p:ADV","xip/l:Chi-ho","<>:xip/const:ADV#307-313$<i>45"],["s:oder","i:oder","_45#314-318","opennlp/p:KON","cnx/l:oder","cnx/p:CC","cnx/syn:@CC","tt/l:oder","tt/p:KON","mate/l:oder","mate/p:KON",">:mate/d:CD$<i>42","<:mate/d:CJ$<i>47","xip/p:CONJ","xip/l:oder","<>:xip/const:CONJ#314-318$<i>46"],["s:dem","i:dem","_46#319-322","opennlp/p:ART","cnx/l:der","cnx/p:DET","cnx/syn:@PREMOD","tt/l:die","tt/p:ART","mate/l:der","mate/p:ART","mate/m:case:dat","mate/m:number:sg","mate/m:gender:masc",">:mate/d:NK$<i>47","xip/p:DET","xip/l:der","<>:xip/const:NP#319-344$<i>48<b>1","<>:xip/const:DET#319-322$<i>47",">:xip/d:DETERM$<i>47"],["s:Unabhängigkeitsführer","i:unabhängigkeitsführer","_47#323-344","opennlp/p:NN","cnx/l:unabhängigkeit","cnx/l:führer","cnx/p:N","cnx/syn:@NH","<>:cnx/const:np#323-344$<i>48","tt/l:Unabhängigkeitsführer","tt/p:NN","mate/l:unabhängigkeitsführer","mate/p:NN","mate/m:case:dat","mate/m:number:sg","mate/m:gender:masc","<:mate/d:NK$<i>46",">:mate/d:CJ$<i>45","<:mate/d:CD$<i>48","<:mate/d:MNR$<i>50","xip/p:NOUN","xip/l:unAbhängigkeit","xip/l:Führer","xip/l:Unabhängigkeitsführer","<>:xip/const:NPA#323-344$<i>48<b>2","<>:xip/const:NOUN#323-344$<i>48","<:xip/d:DETERM$<i>46","<:xip/d:COORD$<i>48"],["s:und","i:und","_48#345-348","opennlp/p:KON","cnx/l:und","cnx/p:CC","cnx/syn:@CC","tt/l:und","tt/p:KON","mate/l:und","mate/p:KON",">:mate/d:CD$<i>47","<:mate/d:CJ$<i>49","xip/p:CONJ","xip/l:und","<>:xip/const:CONJ#345-348$<i>49",">:xip/d:COORD$<i>47",">:xip/d:COORD$<i>49"],["s:Erzieher","i:erzieher","_49#349-357","opennlp/p:NN","cnx/l:erzieher","cnx/p:N","cnx/syn:@NH","<>:cnx/const:np#349-357$<i>50","tt/l:Erzieher","tt/p:NN","mate/l:erzieher","mate/p:NN","mate/m:case:dat","mate/m:number:sg","mate/m:gender:masc",">:mate/d:CJ$<i>48","xip/p:NOUN","xip/l:Erzieher","<>:xip/const:NP#349-357$<i>50<b>1","<>:xip/const:NPA#349-357$<i>50<b>2","<>:xip/const:NOUN#349-357$<i>50","<:xip/d:COORD$<i>48","xip/d:THEMA"],["s:An","i:an","_50#358-360","opennlp/p:APPR","cnx/l:An","cnx/p:N","cnx/m:Prop","cnx/syn:@PREMOD","<>:cnx/const:np#358-369$<i>52","tt/l:an","tt/p:APPR","mate/l:an","mate/p:APPR",">:mate/d:MNR$<i>47","<:mate/d:NK$<i>51","xip/p:PREP","xip/l:an","<>:xip/const:PREP#358-360$<i>51"],["s:Chang-ho","i:chang-ho","_51#361-369","opennlp/p:NE","cnx/l:chang-ho","cnx/p:N","cnx/syn:@NH","tt/p:NE","tt/p:NN","mate/l:chang-ho","mate/p:NE","mate/m:case:dat","mate/m:number:sg","mate/m:gender:neut",">:mate/d:NK$<i>50","xip/p:ADV","xip/l:Chang-ho","<>:xip/const:MC#361-387$<i>54<b>1","<>:xip/const:ADV#361-369$<i>52",">:xip/d:VMOD$<i>52"],["s:geschrieben","i:geschrieben","_52#370-381","opennlp/p:VVPP","cnx/l:schreiben","cnx/p:V","cnx/m:PCP","cnx/m:PERF","cnx/syn:@MAIN","tt/l:schreiben","tt/p:VVPP","mate/l:schreiben","mate/p:VVPP","<:mate/d:SBP$<i>40",">:mate/d:OC$<i>53","xip/p:VERB","xip/l:schreiben","<>:xip/const:VERB#370-381$<i>53","<:xip/d:VMOD$<i>51",">:xip/d:AUXIL$<i>53","xip/d:VMAIN"],["s:wurde","i:wurde","_53#382-387","opennlp/p:VAFIN","cnx/l:werden","cnx/p:V","cnx/m:IND","cnx/m:PAST","cnx/syn:@AUX","tt/l:werden","tt/p:VAFIN","mate/l:werden","mate/p:VAFIN","mate/m:number:sg","mate/m:person:3","mate/m:tense:past","mate/m:mood:ind","<:mate/d:CP$<i>31","<:mate/d:SB$<i>33","<:mate/d:OC$<i>52",">:mate/d:MO$<i>30","xip/p:VERB","xip/l:werden","<>:xip/const:VERB#382-387$<i>54","<:xip/d:AUXIL$<i>52"],["s:Ursprünglich","i:ursprünglich","_54#389-401","<>:s#389-474$<i>65","opennlp/p:ADJD","cnx/l:ursprünglich","cnx/p:A","cnx/syn:@NH","tt/l:ursprünglich","tt/p:ADJD","mate/l:ursprünglich","mate/p:ADJD","mate/m:degree:pos",">:mate/d:MO$<i>64","xip/p:ADJ","xip/l:ursprünglich","<>:xip/const:ADJ#389-401$<i>55","<>:xip/const:TOP#389-474$<i>65","<>:xip/const:MC#389-473$<i>65<b>1","<>:xip/const:AP#389-401$<i>55<b>2",">:xip/d:VMOD$<i>64"],["s:wurde","i:wurde","_55#402-407","opennlp/p:VAFIN","cnx/l:werden","cnx/p:V","cnx/m:IND","cnx/m:PAST","cnx/syn:@AUX","tt/l:werden","tt/p:VAFIN","mate/l:werden","mate/p:VAFIN","mate/m:number:sg","mate/m:person:3","mate/m:tense:past","mate/m:mood:ind","<:mate/d:SB$<i>56","<:mate/d:OC$<i>64","xip/p:VERB","xip/l:werden","<>:xip/const:VERB#402-407$<i>56","<:xip/d:AUXIL$<i>64"],["s:Aegukka","i:aegukka","_56#408-415","opennlp/p:NE","cnx/l:aegukka","cnx/p:N","cnx/syn:@NH","<>:cnx/const:np#408-415$<i>57","tt/p:NN","tt/p:NE","mate/l:aegukka","mate/p:NE","mate/m:case:nom","mate/m:number:sg","mate/m:gender:*",">:mate/d:SB$<i>55","xip/p:NOUN","xip/l:Aegukka","<>:xip/const:NOUN#408-415$<i>57","<>:xip/const:NP#408-415$<i>57<b>2","<>:xip/const:NPA#408-415$<i>57<b>3",">:xip/d:SUBJ$<i>64"],["s:zur","i:zur","_57#416-419","opennlp/p:APPRART","tt/l:zur","tt/p:APPRART","mate/l:zu","mate/p:APPRART","mate/m:case:dat","mate/m:number:sg","mate/m:gender:fem",">:mate/d:OP$<i>64","<:mate/d:NK$<i>63","xip/p:PREP","xip/l:zu","<>:xip/const:PREP#416-419$<i>58","<>:xip/const:PP#416-449$<i>61<b>2"],["s:der","i:der","_58#420-423","opennlp/p:ART","cnx/l:die","cnx/p:DET","cnx/syn:@PREMOD","tt/l:die","tt/p:ART","mate/l:der","mate/p:ART","mate/m:case:dat","mate/m:number:sg","mate/m:gender:fem",">:mate/d:NK$<i>63","xip/p:DET","xip/l:der","<>:xip/const:DET#420-423$<i>59","<>:xip/const:NP#420-449$<i>61<b>3",">:xip/d:DETERM$<i>60"],["s:schottischen","i:schottischen","_59#424-436","opennlp/p:ADJA","corenlp/ne_dewac_175m_600:I-MISC","corenlp/ne_hgc_175m_600:I-MISC","cnx/l:schottisch","cnx/p:A","cnx/syn:@PREMOD","<>:cnx/const:np#424-454$<i>62","tt/l:schottisch","tt/p:ADJA","mate/l:schottisch","mate/p:ADJA","mate/m:case:gen","mate/m:number:sg","mate/m:gender:fem","mate/m:degree:pos",">:mate/d:MO$<i>63","xip/p:ADJ","xip/l:schottisch","<>:xip/const:ADJ#424-436$<i>60","<>:xip/const:NPA#424-449$<i>61<b>4","<>:xip/const:AP#424-436$<i>60<b>5",">:xip/d:NMOD$<i>60"],["s:Volksmelodie","i:volksmelodie","_60#437-449","opennlp/p:NN","cnx/l:volk","cnx/l:melodie","cnx/p:N","cnx/syn:@PREMOD","tt/l:Volksmelodie","tt/p:NN","mate/l:volksmelodie","mate/p:NN","mate/m:case:gen","mate/m:number:sg","mate/m:gender:fem",">:mate/d:PNC$<i>63","xip/p:NOUN","xip/l:Volk","xip/l:Melodie","xip/l:Volksmelodie","<>:xip/const:NOUN#437-449$<i>61","<:xip/d:DETERM$<i>58","<:xip/d:NMOD$<i>59"],["s:Auld","i:auld","_61#450-454","opennlp/p:NE","cnx/l:Auld","cnx/p:N","cnx/m:Prop","cnx/syn:@NH","tt/p:NE","mate/l:auld","mate/p:NE","mate/m:case:nom","mate/m:number:sg","mate/m:gender:*",">:mate/d:PNC$<i>63","xip/p:NOUN","xip/l:Auld","<>:xip/const:NOUN#450-454$<i>62","<>:xip/const:NP#450-459$<i>63<b>2","<>:xip/const:NPA#450-459$<i>63<b>3","<>:xip/const:NOUN#450-459$<i>63<b>4"],["s:Lang","i:lang","_62#455-459","opennlp/p:NE","cnx/l:lang","cnx/p:A","cnx/syn:@PREMOD","<>:cnx/const:np#455-464$<i>64","tt/l:Lang","tt/p:NE","mate/l:lang","mate/p:NE","mate/m:case:nom","mate/m:number:sg","mate/m:gender:masc",">:mate/d:PNC$<i>63","xip/p:NOUN","xip/l:Lang","<>:xip/const:NOUN#455-459$<i>63"],["s:Syne","i:syne","_63#460-464","opennlp/p:NE","cnx/l:syne","cnx/p:N","cnx/syn:@NH","tt/p:NE","mate/l:syne","mate/p:NE","mate/m:case:nom","mate/m:number:sg","mate/m:gender:masc","<:mate/d:NK$<i>58","<:mate/d:MO$<i>59","<:mate/d:PNC$<i>60","<:mate/d:PNC$<i>61","<:mate/d:PNC$<i>62",">:mate/d:NK$<i>57","xip/p:NOUN","xip/l:Syne","<>:xip/const:NOUN#460-464$<i>64","<>:xip/const:NP#460-464$<i>64<b>2","<>:xip/const:NPA#460-464$<i>64<b>3"],["s:gesungen","i:gesungen","_64#465-473","opennlp/p:VVPP","cnx/l:singen","cnx/p:V","cnx/m:PCP","cnx/m:PERF","cnx/syn:@MAIN","tt/l:singen","tt/p:VVPP","mate/l:singen","mate/p:VVPP","<:mate/d:MO$<i>54","<:mate/d:OP$<i>57",">:mate/d:OC$<i>55","xip/p:VERB","xip/l:singen","<>:xip/const:VERB#465-473$<i>65","<:xip/d:VMOD$<i>54","<:xip/d:SUBJ$<i>56",">:xip/d:AUXIL$<i>55","xip/d:VMAIN"],["s:Während","i:während","_65#475-482","<>:s#475-556$<i>77","opennlp/p:KOUS","cnx/l:während","cnx/p:CS","cnx/syn:@PREMARK","tt/l:während","tt/p:KOUS","tt/l:während","tt/p:APPR","mate/l:während","mate/p:APPR",">:mate/d:MO$<i>76","<:mate/d:NK$<i>68","xip/p:ADJ","xip/l:währen","<>:xip/const:TOP#475-556$<i>77","<>:xip/const:MC#475-555$<i>77<b>1","<>:xip/const:AP#475-482$<i>66<b>2","<>:xip/const:ADJ#475-482$<i>66",">:xip/d:VMOD$<i>76"],["s:der","i:der","_66#483-486","opennlp/p:ART","cnx/l:die","cnx/p:DET","cnx/syn:@PREMOD","tt/l:die","tt/p:ART","mate/l:der","mate/p:ART","mate/m:case:dat","mate/m:number:sg","mate/m:gender:fem",">:mate/d:NK$<i>68","xip/p:DET","xip/l:der","<>:xip/const:NP#483-513$<i>69<b>2","<>:xip/const:DET#483-486$<i>67",">:xip/d:DETERM$<i>68"],["s:japanischen","i:japanischen","_67#487-498","opennlp/p:ADJA","corenlp/ne_dewac_175m_600:I-MISC","corenlp/ne_hgc_175m_600:I-MISC","cnx/l:japanisch","cnx/p:A","cnx/syn:@PREMOD","<>:cnx/const:np#487-513$<i>69","tt/l:japanisch","tt/p:ADJA","mate/l:japanisch","mate/p:ADJA","mate/m:case:dat","mate/m:number:sg","mate/m:gender:fem","mate/m:degree:pos",">:mate/d:NK$<i>68","xip/p:ADJ","xip/l:japanisch","<>:xip/const:NPA#487-513$<i>69<b>3","<>:xip/const:AP#487-498$<i>68<b>4","<>:xip/const:ADJ#487-498$<i>68",">:xip/d:NMOD$<i>68"],["s:Besatzungszeit","i:besatzungszeit","_68#499-513","opennlp/p:NN","cnx/l:besatzung","cnx/l:zeit","cnx/p:N","cnx/syn:@NH","tt/l:Besatzungszeit","tt/p:NN","mate/l:besatzungszeit","mate/p:NN","mate/m:case:dat","mate/m:number:sg","mate/m:gender:fem","<:mate/d:NK$<i>66","<:mate/d:NK$<i>67",">:mate/d:NK$<i>65","<:mate/d:MNR$<i>69","<:mate/d:MNR$<i>71","xip/p:NOUN","xip/l:Besatzung","xip/l:Zeit","xip/l:Besatzungszeit","<>:xip/const:NOUN#499-513$<i>69","<:xip/d:DETERM$<i>66","<:xip/d:NMOD$<i>67",">:xip/d:OBJ$<i>76"],["s:von","i:von","_69#514-517","opennlp/p:APPR","cnx/l:von","cnx/p:PREP","cnx/syn:@POSTMOD","tt/l:von","tt/p:APPR","mate/l:von","mate/p:APPR",">:mate/d:MNR$<i>68","<:mate/d:NK$<i>70","xip/p:PREP","xip/l:von","<>:xip/const:PP#514-531$<i>73<b>2","<>:xip/const:PREP#514-517$<i>70"],["s:1910","i:1910","_70#518-522","opennlp/p:CARD","cnx/l:1910","cnx/p:NUM","cnx/syn:@NH","tt/l:@card@","tt/p:CARD","mate/l:1910","mate/p:CARD",">:mate/d:NK$<i>69","xip/p:NUM","xip/l:1910","<>:xip/const:NP#518-531$<i>73<b>3","<>:xip/const:NPA#518-531$<i>73<b>4","<>:xip/const:NUM#518-531$<i>73<b>5","<>:xip/const:NUM#518-522$<i>71","<:xip/d:COORD$<i>71"],["s:bis","i:bis","_71#523-526","opennlp/p:APPR","cnx/l:bis","cnx/p:CC","cnx/syn:@CC","tt/l:bis","tt/p:APPR","tt/l:bis","tt/p:KON","mate/l:bis","mate/p:APPR",">:mate/d:MNR$<i>68","<:mate/d:NK$<i>72","xip/p:CONJ","xip/l:bis","<>:xip/const:CONJ#523-526$<i>72",">:xip/d:COORD$<i>70",">:xip/d:COORD$<i>72"],["s:1945","i:1945","_72#527-531","opennlp/p:CARD","cnx/l:1945","cnx/p:NUM","cnx/syn:@NH","tt/l:1945","tt/p:CARD","mate/l:1945","mate/p:CARD",">:mate/d:NK$<i>71","xip/p:NUM","xip/l:1945","<>:xip/const:NUM#527-531$<i>73","<:xip/d:COORD$<i>71","xip/d:DATE"],["s:wurde","i:wurde","_73#532-537","opennlp/p:VAFIN","cnx/l:werden","cnx/p:V","cnx/m:IND","cnx/m:PAST","cnx/syn:@MAIN","tt/l:werden","tt/p:VAFIN","mate/l:werden","mate/p:VAFIN","mate/m:number:sg","mate/m:person:3","mate/m:tense:past","mate/m:mood:ind","<:mate/d:SB$<i>75","<:mate/d:OC$<i>76","xip/p:VERB","xip/l:werden","<>:xip/const:VERB#532-537$<i>74","<:xip/d:AUXIL$<i>76"],["s:das","i:das","_74#538-541","opennlp/p:ART","cnx/l:das","cnx/p:DET","cnx/syn:@PREMOD","tt/l:die","tt/p:ART","mate/l:der","mate/p:ART","mate/m:case:nom","mate/m:number:sg","mate/m:gender:neut",">:mate/d:NK$<i>75","xip/p:DET","xip/l:das","<>:xip/const:NP#538-546$<i>76<b>2","<>:xip/const:DET#538-541$<i>75",">:xip/d:DETERM$<i>75"],["s:Lied","i:lied","_75#542-546","opennlp/p:NN","cnx/l:lied","cnx/p:N","cnx/syn:@NH","<>:cnx/const:np#542-546$<i>76","tt/l:Lied","tt/p:NN","mate/l:lied","mate/p:NN","mate/m:case:nom","mate/m:number:sg","mate/m:gender:neut","<:mate/d:NK$<i>74",">:mate/d:SB$<i>73","xip/p:NOUN","xip/l:Lied","<>:xip/const:NPA#542-546$<i>76<b>3","<>:xip/const:NOUN#542-546$<i>76","<:xip/d:DETERM$<i>74",">:xip/d:SUBJ$<i>76"],["s:verboten","i:verboten","_76#547-555","opennlp/p:VVPP","cnx/l:verbieten","cnx/p:V","cnx/m:PCP","cnx/m:PERF","cnx/syn:@MAIN","tt/l:verbieten","tt/p:VVPP","mate/l:verbieten","mate/p:VVPP","<:mate/d:MO$<i>65",">:mate/d:OC$<i>73","xip/p:VERB","xip/l:verbieten","<>:xip/const:VERB#547-555$<i>77","<:xip/d:VMOD$<i>65","<:xip/d:OBJ$<i>68","<:xip/d:SUBJ$<i>75",">:xip/d:AUXIL$<i>73","xip/d:VMAIN"],["s:Im","i:im","_77#557-559","<>:s#557-657$<i>91","opennlp/p:APPRART","tt/l:im","tt/p:APPRART","mate/l:in","mate/p:APPRART","mate/m:case:dat","mate/m:number:sg","mate/m:gender:neut",">:mate/d:MO$<i>81","<:mate/d:NK$<i>78","xip/p:PREP","xip/l:in","<>:xip/const:TOP#557-657$<i>91","<>:xip/const:MC#557-657$<i>91<b>1","<>:xip/const:NP#557-584$<i>81<b>2","<>:xip/const:NPA#557-584$<i>81<b>3","<>:xip/const:AP#557-575$<i>80<b>4","<>:xip/const:PP#557-567$<i>79<b>5","<>:xip/const:PREP#557-559$<i>78"],["s:Ausland","i:ausland","_78#560-567","opennlp/p:NN","cnx/l:ausland","cnx/p:N","cnx/syn:@NH","<>:cnx/const:np#560-567$<i>79","tt/l:Ausland","tt/p:NN","mate/l:ausland","mate/p:NN","mate/m:case:dat","mate/m:number:sg","mate/m:gender:neut",">:mate/d:NK$<i>77","<:mate/d:AG$<i>80","xip/p:NOUN","xip/l:Ausland","<>:xip/const:NP#560-567$<i>79<b>6","<>:xip/const:NPA#560-567$<i>79<b>7","<>:xip/const:NOUN#560-567$<i>79"],["s:lebende","i:lebende","_79#568-575","opennlp/p:ADJA","cnx/l:lebend","cnx/p:A","cnx/syn:@PREMOD","<>:cnx/const:np#568-584$<i>81","tt/l:lebend","tt/p:ADJA","mate/l:lebend","mate/p:ADJA","mate/m:case:acc","mate/m:number:pl","mate/m:gender:masc","mate/m:degree:pos",">:mate/d:NK$<i>80","xip/p:ADJ","xip/l:leben","<>:xip/const:ADJ#568-575$<i>80",">:xip/d:NMOD$<i>80"],["s:Koreaner","i:koreaner","_80#576-584","opennlp/p:NN","cnx/l:Koreaner","cnx/p:N","cnx/syn:@NH","tt/l:Koreaner","tt/p:NN","mate/l:koreaner","mate/p:NN","mate/m:case:acc","mate/m:number:pl","mate/m:gender:masc","<:mate/d:NK$<i>79",">:mate/d:AG$<i>78","xip/p:NOUN","xip/l:Koreaner","<>:xip/const:NOUN#576-584$<i>81","<:xip/d:NMOD$<i>79","xip/d:PERSON",">:xip/d:SUBJ$<i>81"],["s:sangen","i:sangen","_81#585-591","opennlp/p:VVFIN","cnx/l:singen","cnx/p:V","cnx/m:IND","cnx/m:PAST","cnx/syn:@MAIN","tt/l:singen","tt/p:VVFIN","mate/l:singen","mate/p:VVFIN","mate/m:number:pl","mate/m:person:3","mate/m:tense:past","mate/m:mood:ind","<:mate/d:MO$<i>77","<:mate/d:OA$<i>82","<:mate/d:MO$<i>83","xip/p:VERB","xip/l:singen","<>:xip/const:VERB#585-591$<i>82","<:xip/d:SUBJ$<i>80","xip/d:VMAIN","<:xip/d:OBJ$<i>82","<:xip/d:VPREF$<i>83"],["s:es","i:es","_82#592-594","opennlp/p:PPER","cnx/l:es","cnx/p:PRON","cnx/syn:@NH","tt/l:es","tt/p:PPER","mate/l:es","mate/p:PPER","mate/m:case:nom","mate/m:number:sg","mate/m:gender:neut","mate/m:person:3",">:mate/d:OA$<i>81","xip/p:PRON","xip/l:es","<>:xip/const:NP#592-594$<i>83<b>2","<>:xip/const:PRON#592-594$<i>83",">:xip/d:OBJ$<i>81"],["s:weiter","i:weiter","_83#595-601","opennlp/p:ADV","cnx/l:weiter","cnx/p:ADV","cnx/syn:@ADVL","tt/l:weiter","tt/p:PTKVZ","tt/l:weiter","tt/p:ADV","tt/l:weit","tt/p:ADJD","mate/l:weiter","mate/p:ADV",">:mate/d:MO$<i>81","<:mate/d:CC$<i>90","xip/p:PTCL","xip/l:weiter","<>:xip/const:PTCL#595-601$<i>84",">:xip/d:VPREF$<i>81"],["s:um","i:um","_84#603-605","opennlp/p:KOUI","cnx/l:um","cnx/p:CS","cnx/syn:@PREMARK","tt/l:um","tt/p:KOUI","tt/l:um","tt/p:APPR","mate/l:um","mate/p:KOUI",">:mate/d:CP$<i>90","xip/p:CONJ","xip/l:um","<>:xip/const:CONJ#603-605$<i>85","<>:xip/const:INFC#603-656$<i>91"],["s:ihre","i:ihre","_85#606-610","opennlp/p:PPOSAT","cnx/l:ihr","cnx/p:PRON","cnx/syn:@PREMOD","tt/l:ihr","tt/p:PPOSAT","mate/l:ihr","mate/p:PPOSAT","mate/m:case:acc","mate/m:number:sg","mate/m:gender:fem",">:mate/d:NK$<i>86","xip/p:DET","xip/l:ihr","<>:xip/const:DET#606-610$<i>86","<>:xip/const:NP#606-620$<i>87<b>1",">:xip/d:DETERM$<i>86"],["s:Sehnsucht","i:sehnsucht","_86#611-620","opennlp/p:NN","cnx/l:sehnsucht","cnx/p:N","cnx/syn:@NH","<>:cnx/const:np#611-643$<i>90","tt/l:Sehnsucht","tt/p:NN","mate/l:sehnsucht","mate/p:NN","mate/m:case:acc","mate/m:number:sg","mate/m:gender:fem","<:mate/d:NK$<i>85",">:mate/d:OA$<i>90","<:mate/d:MNR$<i>87","xip/p:NOUN","xip/l:Sehnsucht","<>:xip/const:NPA#611-620$<i>87<b>2","<>:xip/const:NOUN#611-620$<i>87","<:xip/d:DETERM$<i>85",">:xip/d:OBJ$<i>90"],["s:für","i:für","_87#621-624","opennlp/p:APPR","cnx/l:für","cnx/p:PREP","cnx/syn:@POSTMOD","tt/l:für","tt/p:APPR","mate/l:für","mate/p:APPR",">:mate/d:MNR$<i>86","<:mate/d:NK$<i>89","xip/p:PREP","xip/l:für","<>:xip/const:PREP#621-624$<i>88","<>:xip/const:PP#621-643$<i>90<b>1"],["s:die","i:die","_88#625-628","opennlp/p:ART","cnx/l:die","cnx/p:DET","cnx/syn:@PREMOD","tt/l:die","tt/p:ART","mate/l:der","mate/p:ART","mate/m:case:acc","mate/m:number:sg","mate/m:gender:fem",">:mate/d:NK$<i>89","xip/p:DET","xip/l:die","<>:xip/const:DET#625-628$<i>89","<>:xip/const:NP#625-643$<i>90<b>2",">:xip/d:DETERM$<i>89"],["s:Unabhängigkeit","i:unabhängigkeit","_89#629-643","opennlp/p:NN","cnx/l:unabhängigkeit","cnx/p:N","cnx/syn:@NH","tt/l:Unabhängigkeit","tt/p:NN","mate/l:unabhängigkeit","mate/p:NN","mate/m:case:acc","mate/m:number:sg","mate/m:gender:fem","<:mate/d:NK$<i>88",">:mate/d:NK$<i>87","xip/p:NOUN","xip/l:unAbhängigkeit","<>:xip/const:NOUN#629-643$<i>90","<>:xip/const:NPA#629-643$<i>90<b>3","<:xip/d:DETERM$<i>88"],["s:auszudrücken","i:auszudrücken","_90#644-656","opennlp/p:VVIZU","cnx/l:ausdrücken","cnx/p:V","cnx/m:INF","cnx/syn:@MAIN","tt/l:ausdrücken","tt/p:VVIZU","mate/l:ausdrücken","mate/p:VVIZU","<:mate/d:CP$<i>84","<:mate/d:OA$<i>86",">:mate/d:CC$<i>83","xip/p:VERB","xip/l:ausdrücken","<>:xip/const:VERB#644-656$<i>91","<:xip/d:OBJ$<i>86","xip/d:VMAIN"],["s:Im","i:im","_91#658-660","<>:s#658-792$<i>110","opennlp/p:APPRART","tt/l:im","tt/p:APPRART","mate/l:in","mate/p:APPRART","mate/m:case:dat","mate/m:number:sg","mate/m:gender:neut",">:mate/d:MO$<i>109","<:mate/d:NK$<i>92","xip/p:PREP","xip/l:in","<>:xip/const:PREP#658-660$<i>92","<>:xip/const:TOP#658-792$<i>110","<>:xip/const:MC#658-687$<i>97<b>1","<>:xip/const:PP#658-666$<i>93<b>2"],["s:Jahre","i:jahre","_92#661-666","opennlp/p:NN","cnx/l:jahr","cnx/p:N","cnx/m:PL","cnx/syn:@NH","<>:cnx/const:np#661-666$<i>93","tt/l:Jahr","tt/p:NN","mate/l:jahr","mate/p:NN","mate/m:case:dat","mate/m:number:sg","mate/m:gender:neut",">:mate/d:NK$<i>91","<:mate/d:NK$<i>93","xip/p:NOUN","xip/l:Jahr","<>:xip/const:NP#661-666$<i>93<b>3","<>:xip/const:NPA#661-666$<i>93<b>4","<>:xip/const:NOUN#661-666$<i>93","<:xip/d:NMOD$<i>93"],["s:1937","i:1937","_93#667-671","opennlp/p:CARD","cnx/l:1937","cnx/p:NUM","cnx/syn:@NH","tt/l:1937","tt/p:CARD","mate/l:1937","mate/p:CARD",">:mate/d:NK$<i>92","xip/p:NUM","xip/l:1937","<>:xip/const:NP#667-671$<i>94<b>2","<>:xip/const:NPA#667-671$<i>94<b>3","<>:xip/const:NUM#667-671$<i>94<b>4","<>:xip/const:NUM#667-671$<i>94","xip/d:DATE",">:xip/d:NMOD$<i>92"],["s:hat","i:hat","_94#672-675","opennlp/p:VAFIN","cnx/l:haben","cnx/p:V","cnx/m:IND","cnx/m:PRES","cnx/syn:@MAIN","tt/l:haben","tt/p:VAFIN","mate/l:haben","mate/p:VAFIN","mate/m:number:sg","mate/m:person:3","mate/m:tense:pres","mate/m:mood:ind","<:mate/d:SB$<i>96","<:mate/d:OC$<i>109","xip/p:VERB","xip/l:haben","<>:xip/const:VERB#672-675$<i>95","xip/d:VMAIN","<:xip/d:SUBJ$<i>95","<:xip/d:VMOD$<i>96"],["s:Ahn","i:ahn","_95#676-679","opennlp/p:NE","corenlp/ne_dewac_175m_600:I-PER","cnx/l:Ahn","cnx/p:N","cnx/m:Prop","cnx/syn:@PREMOD","<>:cnx/const:np#676-687$<i>97","tt/l:Ahn","tt/p:NN","mate/l:ahn","mate/p:NE","mate/m:case:acc","mate/m:number:sg","mate/m:gender:fem",">:mate/d:PNC$<i>96","xip/p:NOUN","xip/l:Ahn","<>:xip/const:NP#676-679$<i>96<b>2","<>:xip/const:NPA#676-679$<i>96<b>3","<>:xip/const:NOUN#676-679$<i>96",">:xip/d:SUBJ$<i>94",">:xip/d:SUBJ$<i>96"],["s:Eak-tae","i:eak-tae","_96#680-687","opennlp/p:NE","corenlp/ne_dewac_175m_600:I-PER","cnx/l:Eak-tae","cnx/p:N","cnx/m:Prop","cnx/syn:@NH","tt/p:NE","tt/p:NN","mate/l:eak-tae","mate/p:NE","mate/m:case:acc","mate/m:number:sg","mate/m:gender:fem","<:mate/d:PNC$<i>95",">:mate/d:SB$<i>94","<:mate/d:APP$<i>101","xip/p:ADV","xip/l:Eak-tae","<>:xip/const:ADV#680-687$<i>97","<:xip/d:SUBJ$<i>95","xip/d:VMAIN",">:xip/d:VMOD$<i>94"],["s:ein","i:ein","_97#689-692","opennlp/p:ART","cnx/l:ein","cnx/p:DET","cnx/syn:@PREMOD","tt/l:eine","tt/p:ART","mate/l:ein","mate/p:ART","mate/m:case:acc","mate/m:number:sg","mate/m:gender:neut",">:mate/d:NK$<i>101","xip/p:DET","xip/l:ein","<>:xip/const:NP#689-737$<i>102<b>1","<>:xip/const:DET#689-692$<i>98",">:xip/d:DETERM$<i>101"],["s:international","i:international","_98#693-706","opennlp/p:ADJD","cnx/l:international","cnx/p:A","cnx/syn:@PREMOD","<>:cnx/const:np#693-737$<i>102","tt/l:international","tt/p:ADJD","tt/l:international","tt/p:NE","mate/l:international","mate/p:ADJD","mate/m:degree:pos",">:mate/d:MO$<i>99","xip/p:ADJ","xip/l:international","<>:xip/const:ADJ#693-706$<i>99","<>:xip/const:NPA#693-737$<i>102<b>2","<>:xip/const:AP#693-729$<i>101<b>3",">:xip/d:ADJMOD$<i>99"],["s:bekannter","i:bekannter","_99#707-716","opennlp/p:ADJA","cnx/l:bekannt","cnx/p:A","cnx/syn:@PREMOD","tt/l:bekannt","tt/p:ADJA","tt/l:bekannt","tt/p:ADJD","mate/l:bekannt","mate/p:ADJA","mate/m:case:nom","mate/m:number:sg","mate/m:gender:masc","mate/m:degree:pos","<:mate/d:MO$<i>98",">:mate/d:NK$<i>101","xip/p:ADJ","xip/l:bekannt","<>:xip/const:ADJ#707-716$<i>100","<:xip/d:ADJMOD$<i>98",">:xip/d:ADJMOD$<i>100"],["s:koreanischer","i:koreanischer","_100#717-729","opennlp/p:ADJA","cnx/l:koreanisch","cnx/p:A","cnx/syn:@PREMOD","tt/l:koreanisch","tt/p:ADJA","mate/l:koreanisch","mate/p:ADJA","mate/m:case:nom","mate/m:number:sg","mate/m:gender:masc","mate/m:degree:pos",">:mate/d:NK$<i>101","xip/p:ADJ","xip/l:koreanisch","<>:xip/const:ADJ#717-729$<i>101","<:xip/d:ADJMOD$<i>99",">:xip/d:NMOD$<i>101"],["s:Musiker","i:musiker","_101#730-737","opennlp/p:NN","cnx/l:musiker","cnx/p:N","cnx/syn:@NH","tt/l:Musiker","tt/p:NN","mate/l:musiker","mate/p:NN","mate/m:case:nom","mate/m:number:sg","mate/m:gender:masc","<:mate/d:NK$<i>97","<:mate/d:NK$<i>99","<:mate/d:NK$<i>100",">:mate/d:APP$<i>96","<:mate/d:MNR$<i>102","xip/p:NOUN","xip/l:Musiker","<>:xip/const:NOUN#730-737$<i>102","<:xip/d:DETERM$<i>97","<:xip/d:NMOD$<i>100","xip/d:THEMA"],["s:aus","i:aus","_102#738-741","opennlp/p:APPR","cnx/l:aus","cnx/p:ADV","cnx/syn:@ADVL","tt/l:aus","tt/p:APPR","mate/l:aus","mate/p:APPR",">:mate/d:MNR$<i>101","<:mate/d:NK$<i>103","xip/p:PREP","xip/l:aus","<>:xip/const:PREP#738-741$<i>103","<>:xip/const:PP#738-749$<i>104<b>1"],["s:Spanien","i:spanien","_103#742-749","opennlp/p:NE","corenlp/ne_dewac_175m_600:I-LOC","corenlp/ne_hgc_175m_600:I-LOC","cnx/l:Spanien","cnx/p:N","cnx/m:Prop","cnx/syn:@NH","<>:cnx/const:np#742-749$<i>104","tt/l:Spanien","tt/p:NE","mate/l:spanien","mate/p:NE","mate/m:case:dat","mate/m:number:sg","mate/m:gender:neut",">:mate/d:NK$<i>102","xip/p:NOUN","xip/l:Spanien","<>:xip/const:NP#742-749$<i>104<b>2","<>:xip/const:NPA#742-749$<i>104<b>3","<>:xip/const:NOUN#742-749$<i>104","xip/d:LOC"],["s:eine","i:eine","_104#751-755","opennlp/p:ART","cnx/l:eine","cnx/p:DET","cnx/syn:@PREMOD","tt/l:eine","tt/p:ART","mate/l:ein","mate/p:ART","mate/m:case:acc","mate/m:number:sg","mate/m:gender:fem",">:mate/d:NK$<i>106","xip/p:DET","xip/l:ein","<>:xip/const:MC#751-791$<i>110<b>1","<>:xip/const:NP#751-768$<i>107<b>2","<>:xip/const:DET#751-755$<i>105",">:xip/d:DETERM$<i>106"],["s:neue","i:neue","_105#756-760","opennlp/p:ADJA","cnx/l:neu","cnx/p:A","cnx/syn:@PREMOD","<>:cnx/const:np#756-780$<i>109","tt/l:neu","tt/p:ADJA","mate/l:neu","mate/p:ADJA","mate/m:case:acc","mate/m:number:sg","mate/m:gender:fem","mate/m:degree:pos",">:mate/d:NK$<i>106","xip/p:ADJ","xip/l:neu","<>:xip/const:NPA#756-768$<i>107<b>3","<>:xip/const:AP#756-760$<i>106<b>4","<>:xip/const:ADJ#756-760$<i>106",">:xip/d:NMOD$<i>106"],["s:Melodie","i:melodie","_106#761-768","opennlp/p:NN","cnx/l:melodie","cnx/p:N","cnx/syn:@NH","tt/l:Melodie","tt/p:NN","mate/l:melodie","mate/p:NN","mate/m:case:acc","mate/m:number:sg","mate/m:gender:fem","<:mate/d:NK$<i>104","<:mate/d:NK$<i>105",">:mate/d:OA$<i>109","<:mate/d:MNR$<i>107","xip/p:NOUN","xip/l:Melodie","<>:xip/const:NOUN#761-768$<i>107","<:xip/d:DETERM$<i>104","<:xip/d:NMOD$<i>105",">:xip/d:SUBJ$<i>109"],["s:für","i:für","_107#769-772","opennlp/p:APPR","cnx/l:für","cnx/p:PREP","cnx/syn:@POSTMOD","tt/l:für","tt/p:APPR","mate/l:für","mate/p:APPR",">:mate/d:MNR$<i>106","<:mate/d:NK$<i>108","xip/p:PREP","xip/l:für","<>:xip/const:PREP#769-772$<i>108","<>:xip/const:PP#769-780$<i>109<b>2"],["s:Aegukka","i:aegukka","_108#773-780","opennlp/p:NE","cnx/l:Aegukka","cnx/p:N","cnx/m:Prop","cnx/syn:@NH","tt/p:NE","tt/p:NN","mate/l:aegukka","mate/p:NE","mate/m:case:acc","mate/m:number:sg","mate/m:gender:*",">:mate/d:NK$<i>107","xip/p:NOUN","xip/l:Aegukka","<>:xip/const:NOUN#773-780$<i>109","<>:xip/const:NP#773-780$<i>109<b>3","<>:xip/const:NPA#773-780$<i>109<b>4"],["s:komponiert","i:komponiert","_109#781-791","opennlp/p:VVPP","cnx/l:komponieren","cnx/p:V","cnx/m:PCP","cnx/m:PERF","cnx/syn:@MAIN","tt/l:komponieren","tt/p:VVPP","tt/l:komponieren","tt/p:VVFIN","mate/l:komponieren","mate/p:VVPP","<:mate/d:MO$<i>91","<:mate/d:OA$<i>106",">:mate/d:OC$<i>94","xip/p:VERB","xip/l:komponieren","<>:xip/const:VERB#781-791$<i>110","<:xip/d:SUBJ$<i>106","xip/d:VMAIN"],["s:Seine","i:seine","_110#793-798","<>:s#793-954$<i>131","opennlp/p:PPOSAT","cnx/l:sein","cnx/p:PRON","cnx/syn:@PREMOD","tt/l:sein","tt/p:PPOSAT","mate/l:sein","mate/p:PPOSAT","mate/m:case:nom","mate/m:number:sg","mate/m:gender:fem",">:mate/d:NK$<i>111","xip/p:DET","xip/l:sein","<>:xip/const:TOP#793-954$<i>131","<>:xip/const:MC#793-915$<i>126<b>1","<>:xip/const:NP#793-805$<i>112<b>2","<>:xip/const:DET#793-798$<i>111",">:xip/d:DETERM$<i>111"],["s:Arbeit","i:arbeit","_111#799-805","opennlp/p:NN","cnx/l:arbeit","cnx/p:N","cnx/syn:@NH","<>:cnx/const:np#799-805$<i>112","tt/l:Arbeit","tt/p:NN","mate/l:arbeit","mate/p:NN","mate/m:case:nom","mate/m:number:sg","mate/m:gender:fem","<:mate/d:NK$<i>110",">:mate/d:SB$<i>112","xip/p:NOUN","xip/l:Arbeit","<>:xip/const:NOUN#799-805$<i>112","<>:xip/const:NPA#799-805$<i>112<b>3","<:xip/d:DETERM$<i>110",">:xip/d:SUBJ$<i>124"],["s:wurde","i:wurde","_112#806-811","opennlp/p:VAFIN","cnx/l:werden","cnx/p:V","cnx/m:IND","cnx/m:PAST","cnx/syn:@MAIN","tt/l:werden","tt/p:VAFIN","mate/l:werden","mate/p:VAFIN","mate/m:number:sg","mate/m:person:3","mate/m:tense:past","mate/m:mood:ind","<:mate/d:SB$<i>111","<:mate/d:OC$<i>125","xip/p:VERB","xip/l:werden","<>:xip/const:VERB#806-811$<i>113","<:xip/d:AUXIL$<i>124"],["s:offiziell","i:offiziell","_113#812-821","opennlp/p:ADJD","cnx/l:offiziell","cnx/p:A","cnx/syn:@NH","tt/l:offiziell","tt/p:ADJD","mate/l:offiziell","mate/p:ADJD","mate/m:degree:pos",">:mate/d:MO$<i>124","xip/p:ADJ","xip/l:offiziell","<>:xip/const:AP#812-821$<i>114<b>2","<>:xip/const:ADJ#812-821$<i>114",">:xip/d:VMOD$<i>124"],["s:von","i:von","_114#822-825","opennlp/p:APPR","cnx/l:von","cnx/p:PREP","cnx/syn:@POSTMOD","tt/l:von","tt/p:APPR","mate/l:von","mate/p:APPR",">:mate/d:SBP$<i>124","<:mate/d:NK$<i>117","xip/p:PREP","xip/l:von","<>:xip/const:PP#822-854$<i>118<b>2","<>:xip/const:PREP#822-825$<i>115"],["s:der","i:der","_115#826-829","opennlp/p:ART","cnx/l:die","cnx/p:DET","cnx/syn:@PREMOD","tt/l:die","tt/p:ART","mate/l:der","mate/p:ART","mate/m:case:dat","mate/m:number:sg","mate/m:gender:fem",">:mate/d:NK$<i>117","xip/p:DET","xip/l:der","<>:xip/const:DET#826-829$<i>116","<>:xip/const:NP#826-854$<i>118<b>3",">:xip/d:DETERM$<i>117"],["s:provisorischen","i:provisorischen","_116#830-844","opennlp/p:ADJA","corenlp/ne_dewac_175m_600:I-MISC","cnx/l:provisorisch","cnx/p:A","cnx/syn:@PREMOD","<>:cnx/const:np#830-854$<i>118","tt/l:provisorisch","tt/p:ADJA","mate/l:provisorisch","mate/p:ADJA","mate/m:case:dat","mate/m:number:sg","mate/m:gender:fem","mate/m:degree:pos",">:mate/d:NK$<i>117","xip/p:ADJ","xip/l:provisorisch","<>:xip/const:NPA#830-854$<i>118<b>4","<>:xip/const:AP#830-844$<i>117<b>5","<>:xip/const:ADJ#830-844$<i>117",">:xip/d:NMOD$<i>117"],["s:Regierung","i:regierung","_117#845-854","opennlp/p:NN","cnx/l:regierung","cnx/p:N","cnx/syn:@NH","tt/l:Regierung","tt/p:NN","mate/l:regierung","mate/p:NN","mate/m:case:dat","mate/m:number:sg","mate/m:gender:fem","<:mate/d:NK$<i>115","<:mate/d:NK$<i>116",">:mate/d:NK$<i>114","<:mate/d:AG$<i>119","xip/p:NOUN","xip/l:Regierung","<>:xip/const:NOUN#845-854$<i>118","<:xip/d:DETERM$<i>115","<:xip/d:NMOD$<i>116","<:xip/d:NMOD$<i>119"],["s:der","i:der","_118#855-858","opennlp/p:ART","cnx/l:die","cnx/p:DET","cnx/syn:@PREMOD","tt/l:die","tt/p:ART","mate/l:der","mate/p:ART","mate/m:case:gen","mate/m:number:sg","mate/m:gender:fem",">:mate/d:NK$<i>119","xip/p:DET","xip/l:der","<>:xip/const:DET#855-858$<i>119","<>:xip/const:NP#855-867$<i>120<b>2",">:xip/d:DETERM$<i>119"],["s:Republik","i:republik","_119#859-867","opennlp/p:NN","corenlp/ne_hgc_175m_600:I-LOC","cnx/l:Republik","cnx/p:N","cnx/m:Prop","cnx/syn:@PREMOD","<>:cnx/const:np#859-873$<i>121","tt/l:Republik","tt/p:NN","mate/l:republik","mate/p:NN","mate/m:case:gen","mate/m:number:sg","mate/m:gender:fem","<:mate/d:NK$<i>118",">:mate/d:AG$<i>117","<:mate/d:NK$<i>120","<:mate/d:PAR$<i>121","xip/p:NOUN","xip/l:Republik","<>:xip/const:NOUN#859-867$<i>120","<>:xip/const:NPA#859-867$<i>120<b>3","<:xip/d:DETERM$<i>118",">:xip/d:NMOD$<i>117","<:xip/d:NMOD$<i>120"],["s:Korea","i:korea","_120#868-873","opennlp/p:NE","corenlp/ne_dewac_175m_600:I-LOC","corenlp/ne_hgc_175m_600:I-LOC","cnx/l:Korea","cnx/p:N","cnx/m:Prop","cnx/syn:@NH","tt/l:Korea","tt/p:NE","mate/l:korea","mate/p:NE","mate/m:case:nom","mate/m:number:sg","mate/m:gender:neut",">:mate/d:NK$<i>119","xip/p:NOUN","xip/l:Korea","<>:xip/const:NP#868-873$<i>121<b>2","<>:xip/const:NPA#868-873$<i>121<b>3","<>:xip/const:NOUN#868-873$<i>121","xip/d:LOC",">:xip/d:NMOD$<i>119"],["s:1919-1945","i:1919-1945","_121#875-884","opennlp/p:CARD","cnx/l:1919-1945","cnx/p:NUM","cnx/syn:@NH","tt/l:@card@","tt/p:CARD","mate/l:1919-1945","mate/p:CARD",">:mate/d:PAR$<i>119","xip/p:NUM","xip/l:1919-1945","<>:xip/const:NUM#875-884$<i>122","<>:xip/const:INS#874-885$<i>122<b>2","<>:xip/const:NP#875-884$<i>122<b>3","<>:xip/const:NPA#875-884$<i>122<b>4","<>:xip/const:NUM#875-884$<i>122<b>5"],["s:in","i:in","_122#886-888","opennlp/p:APPR","cnx/l:in","cnx/p:PREP","cnx/syn:@PREMARK","tt/l:in","tt/p:APPR","mate/l:in","mate/p:APPR",">:mate/d:MO$<i>124","<:mate/d:NK$<i>123","xip/p:PREP","xip/l:in","<>:xip/const:PP#886-897$<i>124<b>2","<>:xip/const:PREP#886-888$<i>123"],["s:Shanghai","i:shanghai","_123#889-897","opennlp/p:NE","corenlp/ne_dewac_175m_600:I-LOC","corenlp/ne_hgc_175m_600:I-LOC","cnx/l:Shanghai","cnx/p:N","cnx/m:Prop","cnx/syn:@NH","<>:cnx/const:np#889-897$<i>124","tt/l:Shanghai","tt/p:NE","mate/l:shanghai","mate/p:NE","mate/m:case:dat","mate/m:number:sg","mate/m:gender:neut",">:mate/d:NK$<i>122","xip/p:NOUN","xip/l:Shanghai","<>:xip/const:NP#889-897$<i>124<b>3","<>:xip/const:NPA#889-897$<i>124<b>4","<>:xip/const:NOUN#889-897$<i>124","xip/d:LOC"],["s:angenommen","i:angenommen","_124#898-908","opennlp/p:VVPP","cnx/l:annehmen","cnx/p:V","cnx/m:PCP","cnx/m:PERF","cnx/syn:@MAIN","tt/l:annehmen","tt/p:VVPP","mate/l:annehmen","mate/p:VVPP","<:mate/d:MO$<i>113","<:mate/d:SBP$<i>114","<:mate/d:MO$<i>122",">:mate/d:OC$<i>125","<:mate/d:CD$<i>126","xip/p:VERB","xip/l:annehmen","<>:xip/const:VERB#898-908$<i>125","<:xip/d:SUBJ$<i>111","<:xip/d:VMOD$<i>113",">:xip/d:AUXIL$<i>125",">:xip/d:AUXIL$<i>112","xip/d:VMAIN"],["s:worden","i:worden","_125#909-915","opennlp/p:VAPP","cnx/l:werden","cnx/p:V","cnx/m:PCP","cnx/m:PERF","cnx/syn:@AUX","tt/l:werden","tt/p:VAPP","mate/l:werden","mate/p:VAPP","<:mate/d:OC$<i>124",">:mate/d:OC$<i>112","xip/p:VERB","xip/l:werden","<>:xip/const:VERB#909-915$<i>126","<:xip/d:AUXIL$<i>124"],["s:und","i:und","_126#917-920","opennlp/p:KON","cnx/l:und","cnx/p:CC","cnx/syn:@CC","tt/l:und","tt/p:KON","mate/l:und","mate/p:KON",">:mate/d:CD$<i>124","<:mate/d:CJ$<i>130","xip/p:CONJ","xip/l:und","<>:xip/const:MC#917-953$<i>131<b>1","<>:xip/const:CONJ#917-920$<i>127"],["s:als","i:als","_127#921-924","opennlp/p:APPR","cnx/l:als","cnx/p:PREP","cnx/syn:@PREMARK","tt/l:als","tt/p:KOKOM","tt/l:als","tt/p:KOUS","mate/l:als","mate/p:APPR",">:mate/d:MO$<i>130","<:mate/d:NK$<i>129","xip/p:PREP","xip/l:als","<>:xip/const:PREP#921-924$<i>128","<>:xip/const:PP#921-943$<i>130<b>2"],["s:inoffizielle","i:inoffizielle","_128#925-937","opennlp/p:ADJA","cnx/l:inoffiziell","cnx/p:A","cnx/syn:@PREMOD","<>:cnx/const:np#925-943$<i>130","tt/l:inoffiziell","tt/p:ADJA","mate/l:inoffiziell","mate/p:ADJA","mate/m:case:acc","mate/m:number:sg","mate/m:gender:fem","mate/m:degree:pos",">:mate/d:NK$<i>129","xip/p:ADJ","xip/l:inoffiziell","<>:xip/const:ADJ#925-937$<i>129","<>:xip/const:NP#925-943$<i>130<b>3","<>:xip/const:NPA#925-943$<i>130<b>4","<>:xip/const:AP#925-937$<i>129<b>5",">:xip/d:NMOD$<i>129"],["s:Hymne","i:hymne","_129#938-943","opennlp/p:NN","cnx/l:hymne","cnx/p:N","cnx/syn:@NH","tt/l:Hymne","tt/p:NN","mate/l:hymne","mate/p:NN","mate/m:case:acc","mate/m:number:sg","mate/m:gender:fem","<:mate/d:NK$<i>128",">:mate/d:NK$<i>127","xip/p:NOUN","xip/l:Hymne","<>:xip/const:NOUN#938-943$<i>130","<:xip/d:NMOD$<i>128"],["s:verwendet","i:verwendet","_130#944-953","opennlp/p:VVPP","cnx/l:verwenden","cnx/p:V","cnx/m:IND","cnx/m:PRES","cnx/syn:@MAIN","tt/l:verwenden","tt/p:VVPP","mate/l:verwenden","mate/p:VVPP","<:mate/d:MO$<i>127",">:mate/d:CJ$<i>126","xip/p:VERB","xip/l:verwenden","<>:xip/const:VERB#944-953$<i>131","xip/d:VMAIN"],["s:1.","i:1.","_131#955-957","<>:s#955-1051$<i>159","opennlp/p:ADJA","cnx/l:1.","cnx/p:NUM","cnx/syn:@PREMOD","tt/l:1.","tt/p:ADJA","xip/p:NUM","xip/l:1.","<>:xip/const:TOP#955-1051$<i>159","<>:xip/const:NP#955-979$<i>134<b>1","<>:xip/const:NPA#955-979$<i>134<b>2","<>:xip/const:NUM#955-957$<i>132"],["s:Koreanisches","i:koreanisches","_132#958-970","opennlp/p:NN","cnx/l:koreanisch","cnx/p:A","cnx/syn:@PREMOD","<>:cnx/const:np#958-979$<i>134","tt/l:Koreanische","tt/p:NN","mate/l:koreanisch","mate/p:ADJA","mate/m:case:acc","mate/m:number:sg","mate/m:gender:neut","mate/m:degree:pos",">:mate/d:NK$<i>133","xip/p:ADJ","xip/l:koreanisch","<>:xip/const:ADJ#958-970$<i>133","<>:xip/const:AP#958-970$<i>133<b>3",">:xip/d:NMOD$<i>133"],["s:Original","i:original","_133#971-979","opennlp/p:NN","cnx/l:Original","cnx/p:N","cnx/m:Prop","cnx/syn:@NH","tt/l:original","tt/p:ADJD","mate/l:original","mate/p:NN","mate/m:case:acc","mate/m:number:sg","mate/m:gender:neut","<:mate/d:NK$<i>132","xip/p:NOUN","xip/l:Original","<>:xip/const:NOUN#971-979$<i>134","<:xip/d:NMOD$<i>132","xip/d:THEMA"],["s:1.","i:1.","_134#980-982","<>:p#980-990$<i>136","opennlp/p:ADJA","cnx/l:1.","cnx/p:NUM","cnx/syn:@PREMOD","tt/l:1.","tt/p:ADJA","xip/p:NUM","xip/l:1.","<>:xip/const:NUM#980-982$<i>135","<>:xip/const:NP#980-990$<i>136<b>1","<>:xip/const:NPA#980-990$<i>136<b>2"],["s:Strophe","i:strophe","_135#983-990","opennlp/p:NN","cnx/l:strophe","cnx/p:N","cnx/syn:@NH","<>:cnx/const:np#983-990$<i>136","tt/l:Strophe","tt/p:NN","mate/l:strophe","mate/p:NN","mate/m:case:nom","mate/m:number:sg","mate/m:gender:fem","xip/p:NOUN","xip/l:Strophe","<>:xip/const:NOUN#983-990$<i>136","xip/d:THEMA"],["s:동","i:동","_136#991-992","<>:p#991-995$<i>139","opennlp/p:$.","tt/p:$.","<>:xip/const:SYMBOL#991-995$<i>139","<>:xip/const:NP#991-995$<i>139<b>1","<>:xip/const:NPA#991-995$<i>139<b>2","<>:xip/const:NOUN#991-995$<i>139<b>3"],["s:해물","i:해물","_137#992-994","opennlp/p:PTKVZ"],["s:과","i:과","_138#994-995","opennlp/p:$.","tt/p:$."],["s:백","i:백","_139#996-997","opennlp/p:$.","tt/p:$."],["s:두산이마르고닳도","i:두산이마르고닳도","_140#997-1005","opennlp/p:NN"],["s:록","i:록","_141#1005-1006","opennlp/p:$.","tt/p:$.","xip/p:SYMBOL","xip/l:","<>:xip/const:SYMBOL#1005-1006$<i>142","xip/d:THEMA"],["s:하","i:하","_142#1007-1008","<>:p#1007-1011$<i>145","opennlp/p:$.","tt/p:$.","<>:xip/const:SYMBOL#1007-1010$<i>144"],["s:느님","i:느님","_143#1008-1010","opennlp/p:NN"],["s:이","i:이","_144#1010-1011","opennlp/p:$.","tt/p:$.","xip/p:SYMBOL","xip/l:´","<>:xip/const:SYMBOL#1010-1011$<i>145","xip/d:THEMA"],["s:보","i:보","_145#1012-1013","opennlp/p:$.","tt/p:$.","<>:xip/const:SYMBOL#1012-1022$<i>148"],["s:우하사우리나라만","i:우하사우리나라만","_146#1013-1021","opennlp/p:NN"],["s:세","i:세","_147#1021-1022","opennlp/p:$.","tt/p:$."],["s:무","i:무","_148#1023-1024","<>:p#1023-1026$<i>151","opennlp/p:$.","tt/p:$.","<>:xip/const:SYMBOL#1023-1026$<i>151"],["s:궁","i:궁","_149#1024-1025","opennlp/p:$.","tt/p:$."],["s:화","i:화","_150#1025-1026","opennlp/p:$.","tt/p:$."],["s:삼","i:삼","_151#1027-1028","opennlp/p:$.","tt/p:$."],["s:천리화려강","i:천리화려강","_152#1028-1033","opennlp/p:NN"],["s:산","i:산","_153#1033-1034","opennlp/p:$.","tt/p:$."],["s:대","i:대","_154#1035-1036","<>:p#1035-1039$<i>157","opennlp/p:$.","tt/p:$.","<>:xip/const:SYMBOL#1035-1039$<i>157"],["s:한사","i:한사","_155#1036-1038","opennlp/p:NN"],["s:람","i:람","_156#1038-1039","opennlp/p:$.","tt/p:$."],["s:대","i:대","_157#1040-1041","opennlp/p:$.","tt/p:$."],["s:한으로길이보전하세.","i:한으로길이보전하세.","_158#1041-1051","opennlp/p:$."],["s:2.","i:2.","_159#1052-1054","<>:s#1052-1124$<i>183","<>:p#1052-1062$<i>161","opennlp/p:ADJA","cnx/l:2.","cnx/p:NUM","cnx/syn:@PREMOD","tt/l:2.","tt/p:ADJA","xip/p:NUM","xip/l:2.","<>:xip/const:TOP#1052-1095$<i>172","<>:xip/const:NP#1052-1062$<i>161<b>1","<>:xip/const:NPA#1052-1062$<i>161<b>2","<>:xip/const:NUM#1052-1054$<i>160"],["s:Strophe","i:strophe","_160#1055-1062","opennlp/p:NN","cnx/l:strophe","cnx/p:N","cnx/syn:@NH","<>:cnx/const:np#1055-1062$<i>161","tt/l:Strophe","tt/p:NN","mate/l:strophe","mate/p:NN","mate/m:case:nom","mate/m:number:sg","mate/m:gender:fem","xip/p:NOUN","xip/l:Strophe","<>:xip/const:NOUN#1055-1062$<i>161","xip/d:THEMA"],["s:남","i:남","_161#1063-1064","<>:p#1063-1067$<i>164","opennlp/p:$.","tt/p:$.","<>:xip/const:SYMBOL#1063-1067$<i>164","<>:xip/const:NP#1063-1067$<i>164<b>1","<>:xip/const:NPA#1063-1067$<i>164<b>2","<>:xip/const:NOUN#1063-1067$<i>164<b>3"],["s:산위","i:산위","_162#1064-1066","opennlp/p:PTKVZ"],["s:에","i:에","_163#1066-1067","opennlp/p:$.","tt/p:$."],["s:저","i:저","_164#1068-1069","opennlp/p:$.","tt/p:$."],["s:소나무철갑을두른","i:소나무철갑을두른","_165#1069-1077","opennlp/p:NN"],["s:듯","i:듯","_166#1077-1078","opennlp/p:$.","tt/p:$."],["s:바","i:바","_167#1079-1080","<>:p#1079-1083$<i>170","opennlp/p:$.","tt/p:$.","<>:xip/const:SYMBOL#1079-1083$<i>170"],["s:람서","i:람서","_168#1080-1082","opennlp/p:NN"],["s:리","i:리","_169#1082-1083","opennlp/p:$.","tt/p:$."],["s:불","i:불","_170#1084-1085","opennlp/p:$.","tt/p:$."],["s:변함은우리기상일세.","i:변함은우리기상일세.","_171#1085-1095","opennlp/p:PTKVZ"],["s:무","i:무","_172#1096-1097","<>:p#1096-1099$<i>175","opennlp/p:$.","tt/p:$.","<>:xip/const:TOP#1096-1124$<i>183","<>:xip/const:NP#1096-1099$<i>175<b>1","<>:xip/const:NPA#1096-1099$<i>175<b>2","<>:xip/const:NOUN#1096-1099$<i>175<b>3","<>:xip/const:SYMBOL#1096-1099$<i>175"],["s:궁","i:궁","_173#1097-1098","opennlp/p:$.","tt/p:$."],["s:화","i:화","_174#1098-1099","opennlp/p:$.","tt/p:$."],["s:삼","i:삼","_175#1100-1101","opennlp/p:$.","tt/p:$."],["s:천리화려강","i:천리화려강","_176#1101-1106","opennlp/p:NN"],["s:산","i:산","_177#1106-1107","opennlp/p:$.","tt/p:$."],["s:대","i:대","_178#1108-1109","<>:p#1108-1112$<i>181","opennlp/p:$.","tt/p:$.","<>:xip/const:SYMBOL#1108-1112$<i>181"],["s:한사","i:한사","_179#1109-1111","opennlp/p:NN"],["s:람","i:람","_180#1111-1112","opennlp/p:$.","tt/p:$."],["s:대","i:대","_181#1113-1114","opennlp/p:$.","tt/p:$."],["s:한으로길이보전하세.","i:한으로길이보전하세.","_182#1114-1124","opennlp/p:$."],["s:3.","i:3.","_183#1125-1127","<>:s#1125-1270$<i>231","<>:p#1125-1135$<i>185","opennlp/p:ADJA","cnx/l:3.","cnx/p:NUM","cnx/syn:@PREMOD","tt/l:3.","tt/p:ADJA","xip/p:NUM","xip/l:3.","<>:xip/const:NUM#1125-1127$<i>184","<>:xip/const:TOP#1125-1168$<i>196","<>:xip/const:NP#1125-1135$<i>185<b>1","<>:xip/const:NPA#1125-1135$<i>185<b>2"],["s:Strophe","i:strophe","_184#1128-1135","opennlp/p:NN","cnx/l:strophe","cnx/p:N","cnx/syn:@NH","<>:cnx/const:np#1128-1135$<i>185","tt/l:Strophe","tt/p:NN","mate/l:strophe","mate/p:NN","mate/m:case:nom","mate/m:number:sg","mate/m:gender:fem","xip/p:NOUN","xip/l:Strophe","<>:xip/const:NOUN#1128-1135$<i>185","xip/d:THEMA"],["s:가","i:가","_185#1136-1137","<>:p#1136-1140$<i>188","opennlp/p:$.","tt/p:$.","<>:xip/const:NP#1136-1140$<i>188<b>1","<>:xip/const:NPA#1136-1140$<i>188<b>2","<>:xip/const:NOUN#1136-1140$<i>188<b>3","<>:xip/const:SYMBOL#1136-1140$<i>188"],["s:을하","i:을하","_186#1137-1139","opennlp/p:PTKVZ"],["s:늘","i:늘","_187#1139-1140","opennlp/p:$.","tt/p:$."],["s:공","i:공","_188#1141-1142","opennlp/p:$.","tt/p:$."],["s:활한데높고구름없","i:활한데높고구름없","_189#1142-1150","opennlp/p:NN"],["s:이","i:이","_190#1150-1151","opennlp/p:$.","tt/p:$.","xip/p:SYMBOL","xip/l:´","<>:xip/const:SYMBOL#1150-1151$<i>191","xip/d:THEMA"],["s:밝","i:밝","_191#1152-1153","<>:p#1152-1156$<i>194","opennlp/p:$.","tt/p:$.","<>:xip/const:SYMBOL#1152-1156$<i>194"],["s:은달","i:은달","_192#1153-1155","opennlp/p:NN"],["s:은","i:은","_193#1155-1156","opennlp/p:$.","tt/p:$."],["s:우","i:우","_194#1157-1158","opennlp/p:$.","tt/p:$."],["s:리가슴일편단심일세.","i:리가슴일편단심일세.","_195#1158-1168","opennlp/p:PTKVZ"],["s:무","i:무","_196#1169-1170","<>:p#1169-1172$<i>199","opennlp/p:$.","tt/p:$.","<>:xip/const:SYMBOL#1169-1172$<i>199","<>:xip/const:TOP#1169-1197$<i>207","<>:xip/const:NP#1169-1172$<i>199<b>1","<>:xip/const:NPA#1169-1172$<i>199<b>2","<>:xip/const:NOUN#1169-1172$<i>199<b>3"],["s:궁","i:궁","_197#1170-1171","opennlp/p:$.","tt/p:$."],["s:화","i:화","_198#1171-1172","opennlp/p:$.","tt/p:$."],["s:삼","i:삼","_199#1173-1174","opennlp/p:$.","tt/p:$."],["s:천리화려강","i:천리화려강","_200#1174-1179","opennlp/p:NN"],["s:산","i:산","_201#1179-1180","opennlp/p:$.","tt/p:$."],["s:대","i:대","_202#1181-1182","<>:p#1181-1185$<i>205","opennlp/p:$.","tt/p:$.","<>:xip/const:SYMBOL#1181-1185$<i>205"],["s:한사","i:한사","_203#1182-1184","opennlp/p:NN"],["s:람","i:람","_204#1184-1185","opennlp/p:$.","tt/p:$."],["s:대","i:대","_205#1186-1187","opennlp/p:$.","tt/p:$."],["s:한으로길이보전하세.","i:한으로길이보전하세.","_206#1187-1197","opennlp/p:ADJA"],["s:4.","i:4.","_207#1198-1200","<>:p#1198-1208$<i>209","opennlp/p:ADJA","cnx/l:4.","cnx/p:NUM","cnx/syn:@PREMOD","tt/l:4.","tt/p:ADJA","xip/p:NUM","xip/l:4.","<>:xip/const:TOP#1198-1241$<i>220","<>:xip/const:NP#1198-1208$<i>209<b>1","<>:xip/const:NPA#1198-1208$<i>209<b>2","<>:xip/const:NUM#1198-1200$<i>208"],["s:Strophe","i:strophe","_208#1201-1208","opennlp/p:NN","cnx/l:strophe","cnx/p:N","cnx/syn:@NH","<>:cnx/const:np#1201-1208$<i>209","tt/l:Strophe","tt/p:NN","mate/l:strophe","mate/p:NN","mate/m:case:nom","mate/m:number:sg","mate/m:gender:fem","xip/p:NOUN","xip/l:Strophe","<>:xip/const:NOUN#1201-1208$<i>209","xip/d:THEMA"],["s:이","i:이","_209#1209-1210","<>:p#1209-1213$<i>212","opennlp/p:$.","tt/p:$.","<>:xip/const:NP#1209-1213$<i>212<b>1","<>:xip/const:NPA#1209-1213$<i>212<b>2","<>:xip/const:NOUN#1209-1213$<i>212<b>3","<>:xip/const:SYMBOL#1209-1213$<i>212"],["s:기상","i:기상","_210#1210-1212","opennlp/p:PTKVZ"],["s:과","i:과","_211#1212-1213","opennlp/p:$.","tt/p:$."],["s:이","i:이","_212#1214-1215","opennlp/p:$.","tt/p:$."],["s:맘으로충성을다하","i:맘으로충성을다하","_213#1215-1223","opennlp/p:NN"],["s:여","i:여","_214#1223-1224","opennlp/p:$.","tt/p:$."],["s:괴","i:괴","_215#1225-1226","<>:p#1225-1229$<i>218","opennlp/p:$.","tt/p:$.","xip/p:SYMBOL","xip/l:´´","<>:xip/const:SYMBOL#1225-1226$<i>216","xip/d:THEMA"],["s:로우","i:로우","_216#1226-1228","opennlp/p:NN","<>:xip/const:SYMBOL#1226-1229$<i>218"],["s:나","i:나","_217#1228-1229","opennlp/p:$.","tt/p:$."],["s:즐","i:즐","_218#1230-1231","opennlp/p:$.","tt/p:$."],["s:거우나나라사랑하세.","i:거우나나라사랑하세.","_219#1231-1241","opennlp/p:PTKVZ"],["s:무","i:무","_220#1242-1243","<>:p#1242-1245$<i>223","opennlp/p:$.","tt/p:$.","<>:xip/const:SYMBOL#1242-1245$<i>223","<>:xip/const:TOP#1242-1270$<i>231","<>:xip/const:NP#1242-1245$<i>223<b>1","<>:xip/const:NPA#1242-1245$<i>223<b>2","<>:xip/const:NOUN#1242-1245$<i>223<b>3"],["s:궁","i:궁","_221#1243-1244","opennlp/p:$.","tt/p:$."],["s:화","i:화","_222#1244-1245","opennlp/p:$.","tt/p:$."],["s:삼","i:삼","_223#1246-1247","opennlp/p:$.","tt/p:$."],["s:천리화려강","i:천리화려강","_224#1247-1252","opennlp/p:NN"],["s:산","i:산","_225#1252-1253","opennlp/p:$.","tt/p:$."],["s:대","i:대","_226#1254-1255","<>:p#1254-1258$<i>229","opennlp/p:$.","tt/p:$.","<>:xip/const:SYMBOL#1254-1258$<i>229"],["s:한사","i:한사","_227#1255-1257","opennlp/p:NN"],["s:람","i:람","_228#1257-1258","opennlp/p:$.","tt/p:$."],["s:대","i:대","_229#1259-1260","opennlp/p:$.","tt/p:$."],["s:한으로길이보전하세.","i:한으로길이보전하세.","_230#1260-1270","opennlp/p:$."],["s:2.","i:2.","_231#1271-1273","<>:s#1271-1892$<i>312","opennlp/p:ADJA","cnx/l:2.","cnx/p:NUM","cnx/syn:@PREMOD","tt/l:2.","tt/p:ADJA","xip/p:NUM","xip/l:2.","<>:xip/const:NUM#1271-1273$<i>232","<>:xip/const:TOP#1271-1892$<i>312","<>:xip/const:MC#1271-1827$<i>303<b>1","<>:xip/const:NP#1271-1299$<i>234<b>2","<>:xip/const:NPA#1271-1299$<i>234<b>3"],["s:Lateinische","i:lateinische","_232#1274-1285","opennlp/p:ADJA","cnx/l:lateinisch","cnx/p:A","cnx/syn:@PREMOD","<>:cnx/const:np#1274-1299$<i>234","tt/l:Lateinische","tt/p:NN","mate/l:lateinisch","mate/p:ADJA","mate/m:case:nom","mate/m:number:sg","mate/m:gender:fem","mate/m:degree:pos",">:mate/d:NK$<i>233","xip/p:ADJ","xip/l:lateinisch","<>:xip/const:ADJ#1274-1285$<i>233","<>:xip/const:AP#1274-1285$<i>233<b>4",">:xip/d:NMOD$<i>233"],["s:Transkription","i:transkription","_233#1286-1299","opennlp/p:NN","cnx/l:Transkription","cnx/p:N","cnx/m:Prop","cnx/syn:@NH","tt/l:Transkription","tt/p:NN","mate/l:transkription","mate/p:NN","mate/m:case:nom","mate/m:number:sg","mate/m:gender:fem","<:mate/d:NK$<i>232","xip/p:NOUN","xip/l:Transkription","<>:xip/const:NOUN#1286-1299$<i>234","<:xip/d:NMOD$<i>232",">:xip/d:SUBJ$<i>244",">:xip/d:SUBJ$<i>262",">:xip/d:SUBJ$<i>282",">:xip/d:SUBJ$<i>291",">:xip/d:SUBJ$<i>302"],["s:1.","i:1.","_234#1300-1302","<>:p#1300-1310$<i>236","opennlp/p:ADJA","cnx/l:1.","cnx/p:NUM","cnx/syn:@PREMOD","tt/l:1.","tt/p:ADJA","xip/p:NUM","xip/l:1.","<>:xip/const:NP#1300-1310$<i>236<b>2","<>:xip/const:NPA#1300-1310$<i>236<b>3","<>:xip/const:NUM#1300-1302$<i>235"],["s:Strophe","i:strophe","_235#1303-1310","opennlp/p:NN","cnx/l:strophe","cnx/p:N","cnx/syn:@PREMOD","<>:cnx/const:np#1303-1494$<i>260","tt/l:Strophe","tt/p:NN","mate/l:strophe","mate/p:NN","mate/m:case:nom","mate/m:number:sg","mate/m:gender:fem","xip/p:NOUN","xip/l:Strophe","<>:xip/const:NOUN#1303-1310$<i>236",">:xip/d:OBJ$<i>244",">:xip/d:OBJ$<i>262",">:xip/d:OBJ$<i>282",">:xip/d:OBJ$<i>291",">:xip/d:OBJ$<i>302","<:xip/d:NMOD$<i>236"],["s:Donghae","i:donghae","_236#1311-1318","<>:p#1311-1353$<i>241","opennlp/p:NE","cnx/l:Donghae","cnx/p:N","cnx/m:Prop","cnx/syn:@PREMOD","tt/p:NE","tt/p:NN","mate/l:donghae","mate/p:NE","mate/m:case:nom","mate/m:number:sg","mate/m:gender:fem",">:mate/d:PNC$<i>240","xip/p:NOUN","xip/l:Donghae","<>:xip/const:NP#1311-1318$<i>237<b>2","<>:xip/const:NPA#1311-1318$<i>237<b>3","<>:xip/const:NOUN#1311-1318$<i>237",">:xip/d:NMOD$<i>235"],["s:mulgwa","i:mulgwa","_237#1319-1325","opennlp/p:ADV","cnx/l:mulgwa","cnx/p:N","cnx/m:Prop","cnx/syn:@PREMOD","tt/p:NE","mate/l:mulgwa","mate/p:NE","mate/m:case:nom","mate/m:number:sg","mate/m:gender:fem",">:mate/d:PNC$<i>240","xip/p:ADV","xip/l:mulgwa","<>:xip/const:ADV#1319-1325$<i>238",">:xip/d:VMOD$<i>244",">:xip/d:VMOD$<i>262",">:xip/d:VMOD$<i>282",">:xip/d:VMOD$<i>291",">:xip/d:VMOD$<i>302"],["s:Baekdusani","i:baekdusani","_238#1326-1336","opennlp/p:NE","cnx/l:Baekdusani","cnx/p:N","cnx/m:Prop","cnx/syn:@PREMOD","tt/p:NE","mate/l:baekdusani","mate/p:NE","mate/m:case:nom","mate/m:number:sg","mate/m:gender:fem",">:mate/d:PNC$<i>240","xip/p:NOUN","xip/l:Baekdusani","<>:xip/const:NP#1326-1336$<i>239<b>2","<>:xip/const:NPA#1326-1336$<i>239<b>3","<>:xip/const:NOUN#1326-1336$<i>239",">:xip/d:OBJ$<i>244",">:xip/d:OBJ$<i>262",">:xip/d:OBJ$<i>282",">:xip/d:OBJ$<i>291",">:xip/d:OBJ$<i>302"],["s:mareugo","i:mareugo","_239#1337-1344","opennlp/p:VVFIN","cnx/l:mareugo","cnx/p:N","cnx/syn:@PREMOD","tt/p:NE","mate/l:mareugo","mate/p:NE",">:mate/d:PNC$<i>240","xip/p:ADV","xip/l:mareugo","<>:xip/const:ADV#1337-1344$<i>240",">:xip/d:VMOD$<i>244",">:xip/d:VMOD$<i>262",">:xip/d:VMOD$<i>282",">:xip/d:VMOD$<i>291",">:xip/d:VMOD$<i>302"],["s:daltorok","i:daltorok","_240#1345-1353","opennlp/p:ART","cnx/l:daltorok","cnx/p:N","cnx/syn:@PREMOD","tt/p:NE","mate/l:daltorok","mate/p:NE","<:mate/d:PNC$<i>236","<:mate/d:PNC$<i>237","<:mate/d:PNC$<i>238","<:mate/d:PNC$<i>239","xip/p:ADV","xip/l:daltorok","<>:xip/const:ADV#1345-1353$<i>241",">:xip/d:VMOD$<i>244",">:xip/d:VMOD$<i>262",">:xip/d:VMOD$<i>282",">:xip/d:VMOD$<i>291",">:xip/d:VMOD$<i>302"],["s:haneunimi","i:haneunimi","_241#1354-1363","<>:p#1354-1385$<i>245","opennlp/p:ADJA","cnx/l:haneunimi","cnx/p:N","cnx/syn:@PREMOD","tt/p:NE","mate/l:haneunimi","mate/p:ADJD","mate/m:degree:pos",">:mate/d:PNC$<i>244","xip/p:ADV","xip/l:haneunimi","<>:xip/const:ADV#1354-1363$<i>242",">:xip/d:VMOD$<i>244",">:xip/d:VMOD$<i>262",">:xip/d:VMOD$<i>282",">:xip/d:VMOD$<i>291",">:xip/d:VMOD$<i>302"],["s:bouhasa","i:bouhasa","_242#1364-1371","opennlp/p:NE","cnx/l:bouhasa","cnx/p:N","cnx/syn:@PREMOD","tt/p:NE","mate/l:bouhasa","mate/p:NE","mate/m:case:nom","mate/m:number:sg","mate/m:gender:*",">:mate/d:PNC$<i>244","xip/p:ADV","xip/l:bouhasa","<>:xip/const:ADV#1364-1371$<i>243",">:xip/d:VMOD$<i>244",">:xip/d:VMOD$<i>262",">:xip/d:VMOD$<i>282",">:xip/d:VMOD$<i>291",">:xip/d:VMOD$<i>302"],["s:urinara","i:urinara","_243#1372-1379","opennlp/p:VVFIN","cnx/l:urinara","cnx/p:N","cnx/syn:@PREMOD","tt/p:NE","tt/p:NN","mate/l:urinara","mate/p:NE",">:mate/d:PNC$<i>244","xip/p:ADV","xip/l:urinara","<>:xip/const:ADV#1372-1379$<i>244",">:xip/d:VMOD$<i>244",">:xip/d:VMOD$<i>262",">:xip/d:VMOD$<i>282",">:xip/d:VMOD$<i>291",">:xip/d:VMOD$<i>302"],["s:manse","i:manse","_244#1380-1385","opennlp/p:ART","cnx/l:manse","cnx/p:N","cnx/syn:@NH","tt/p:VVFIN","mate/l:manse","mate/p:NE","<:mate/d:PNC$<i>241","<:mate/d:PNC$<i>242","<:mate/d:PNC$<i>243","xip/p:ADV","xip/l:manse","<>:xip/const:ADV#1380-1385$<i>245","<:xip/d:SUBJ$<i>233","<:xip/d:OBJ$<i>235","<:xip/d:VMOD$<i>237","<:xip/d:OBJ$<i>238","<:xip/d:VMOD$<i>239","<:xip/d:VMOD$<i>240","<:xip/d:VMOD$<i>241","<:xip/d:VMOD$<i>242","<:xip/d:VMOD$<i>243","xip/d:VMAIN",">:xip/d:VMOD$<i>262",">:xip/d:VMOD$<i>282",">:xip/d:VMOD$<i>291",">:xip/d:VMOD$<i>302","<:xip/d:OBJ$<i>246","<:xip/d:VMOD$<i>260","<:xip/d:VMOD$<i>261","<:xip/d:VMOD$<i>262","<:xip/d:VMOD$<i>263","<:xip/d:VMOD$<i>264","<:xip/d:VMOD$<i>265","<:xip/d:VMOD$<i>266","<:xip/d:VMOD$<i>267","<:xip/d:VMOD$<i>268","<:xip/d:VMOD$<i>269","<:xip/d:VMOD$<i>270","<:xip/d:OBJ$<i>272","<:xip/d:OBJ$<i>273","<:xip/d:VMOD$<i>274","<:xip/d:OBJ$<i>275","<:xip/d:VMOD$<i>276","<:xip/d:VMOD$<i>277","<:xip/d:VMOD$<i>278","<:xip/d:VMOD$<i>279","<:xip/d:VMOD$<i>280","<:xip/d:VMOD$<i>281","<:xip/d:VMOD$<i>282","<:xip/d:OBJ$<i>283","<:xip/d:VMOD$<i>284","<:xip/d:VMOD$<i>285","<:xip/d:VMOD$<i>286","<:xip/d:OBJ$<i>287","<:xip/d:VMOD$<i>288","<:xip/d:OBJ$<i>289","<:xip/d:VMOD$<i>290","<:xip/d:VMOD$<i>291","<:xip/d:OBJ$<i>294","<:xip/d:OBJ$<i>296","<:xip/d:OBJ$<i>299"],["s:2.","i:2.","_245#1386-1388","<>:p#1386-1396$<i>247","opennlp/p:ADJA","cnx/l:2.","cnx/p:NUM","cnx/syn:@PREMOD","tt/l:2.","tt/p:ADJA","xip/p:NUM","xip/l:2.","<>:xip/const:NP#1386-1396$<i>247<b>2","<>:xip/const:NPA#1386-1396$<i>247<b>3","<>:xip/const:NUM#1386-1388$<i>246"],["s:Strophe","i:strophe","_246#1389-1396","opennlp/p:NN","cnx/l:strophe","cnx/p:N","cnx/syn:@PREMOD","tt/l:Strophe","tt/p:NN","mate/l:strophe","mate/p:NN","mate/m:case:nom","mate/m:number:sg","mate/m:gender:fem","xip/p:NOUN","xip/l:Strophe","<>:xip/const:NOUN#1389-1396$<i>247",">:xip/d:OBJ$<i>244",">:xip/d:OBJ$<i>262",">:xip/d:OBJ$<i>282",">:xip/d:OBJ$<i>291",">:xip/d:OBJ$<i>302","<:xip/d:NMOD$<i>247"],["s:Namsan","i:namsan","_247#1397-1403","<>:p#1397-1441$<i>253","opennlp/p:NN","cnx/l:Namsan","cnx/p:N","cnx/m:Prop","cnx/syn:@NH","tt/p:NE","tt/p:NN","mate/l:namsan","mate/p:ADV","<:mate/d:CC$<i>252","xip/p:NOUN","xip/l:Namsan","<>:xip/const:NP#1397-1403$<i>248<b>2","<>:xip/const:NPA#1397-1403$<i>248<b>3","<>:xip/const:NOUN#1397-1403$<i>248",">:xip/d:NMOD$<i>246"],["s:wie","i:wie","_248#1404-1407","opennlp/p:KOKOM","cnx/l:wie","cnx/p:PREP","cnx/syn:@POSTMOD","tt/l:wie","tt/p:KOKOM","tt/l:wie","tt/p:KON","mate/l:wie","mate/p:KOKOM",">:mate/d:CM$<i>252","xip/p:CONJ","xip/l:wie","<>:xip/const:PP#1404-1494$<i>260<b>2","<>:xip/const:CONJ#1404-1407$<i>249"],["s:jeo","i:jeo","_249#1408-1411","opennlp/p:ADV","cnx/l:jeo","cnx/p:N","cnx/syn:@PREMOD","tt/p:NE","tt/p:NN","mate/l:jeo","mate/p:NE","mate/m:case:nom","mate/m:number:sg","mate/m:gender:*",">:mate/d:PNC$<i>252","xip/p:ADV","xip/l:jeo","<>:xip/const:ADV#1408-1411$<i>250"],["s:sonamu","i:sonamu","_250#1412-1418","opennlp/p:ADV","cnx/l:sonamu","cnx/p:N","cnx/syn:@PREMOD","tt/p:NE","mate/l:sonamu","mate/p:NE",">:mate/d:PNC$<i>252","xip/p:ADV","xip/l:sonamu","<>:xip/const:ADV#1412-1418$<i>251"],["s:cheolgabeul","i:cheolgabeul","_251#1419-1430","opennlp/p:ADJD","cnx/l:cheolgabeul","cnx/p:N","cnx/syn:@PREMOD","tt/p:NE","tt/p:NN","mate/l:cheolgabeul","mate/p:NE",">:mate/d:PNC$<i>252","xip/p:ADV","xip/l:cheolgabeul","<>:xip/const:ADV#1419-1430$<i>252"],["s:dureundeut","i:dureundeut","_252#1431-1441","opennlp/p:APPR","cnx/l:dureundeut","cnx/p:N","cnx/syn:@PREMOD","tt/p:VVFIN","tt/p:ADJA","tt/p:ADJD","mate/l:dureundeut","mate/p:NE","<:mate/d:CM$<i>248","<:mate/d:PNC$<i>249","<:mate/d:PNC$<i>250","<:mate/d:PNC$<i>251",">:mate/d:CC$<i>247","xip/p:ADV","xip/l:dureundeut","<>:xip/const:ADV#1431-1441$<i>253"],["s:baram","i:baram","_253#1442-1447","<>:p#1442-1483$<i>258","opennlp/p:ADJA","cnx/l:baram","cnx/p:N","cnx/syn:@PREMOD","tt/p:ADJD","tt/p:NN","tt/p:NE","mate/l:baram","mate/p:ADJD","mate/m:degree:pos",">:mate/d:MO$<i>257","<:mate/d:NK$<i>254","xip/p:ADV","xip/l:baram","<>:xip/const:ADV#1442-1447$<i>254"],["s:seori","i:seori","_254#1448-1453","opennlp/p:ADJA","cnx/l:seori","cnx/p:N","cnx/syn:@PREMOD","tt/p:NE","tt/p:NN","tt/p:ADJA","mate/l:seori","mate/p:CARD",">:mate/d:NK$<i>253","xip/p:ADV","xip/l:seori","<>:xip/const:ADV#1448-1453$<i>255"],["s:bulbyeonhameun","i:bulbyeonhameun","_255#1454-1468","opennlp/p:CARD","cnx/l:bulbyeonhameun","cnx/p:N","cnx/syn:@PREMOD","tt/p:NE","tt/p:NN","mate/l:bulbyeonhameun","mate/p:ADJD","mate/m:degree:pos",">:mate/d:MO$<i>257","xip/p:ADV","xip/l:bulbyeonhameun","<>:xip/const:ADV#1454-1468$<i>256"],["s:uri","i:uri","_256#1469-1472","opennlp/p:ADJA","cnx/l:uri","cnx/p:N","cnx/syn:@PREMOD","tt/l:uri","tt/p:NE","mate/l:uri","mate/p:XY","xip/p:ADV","xip/l:uri","<>:xip/const:ADV#1469-1472$<i>257"],["s:gisangilse","i:gisangilse","_257#1473-1483","opennlp/p:ADJA","cnx/l:gisangilse","cnx/p:N","cnx/syn:@NH","tt/p:VVFIN","tt/p:NE","mate/l:gisangils","mate/p:ADJA","mate/m:case:acc","mate/m:number:sg","mate/m:gender:neut","mate/m:degree:pos","<:mate/d:MO$<i>253","<:mate/d:MO$<i>255","xip/p:ADV","xip/l:gisangilse","<>:xip/const:ADV#1473-1483$<i>258"],["s:3.","i:3.","_258#1484-1486","<>:p#1484-1494$<i>260","opennlp/p:ADJA","cnx/l:3.","cnx/p:NUM","cnx/syn:@PREMOD","tt/l:3.","tt/p:ADJA","xip/p:NUM","xip/l:3.","<>:xip/const:NP#1484-1494$<i>260<b>3","<>:xip/const:NPA#1484-1494$<i>260<b>4","<>:xip/const:NUM#1484-1486$<i>259"],["s:Strophe","i:strophe","_259#1487-1494","opennlp/p:NN","cnx/l:strophe","cnx/p:N","cnx/syn:@NH","tt/l:Strophe","tt/p:NN","mate/l:strophe","mate/p:NN","mate/m:case:nom","mate/m:number:sg","mate/m:gender:fem","xip/p:NOUN","xip/l:Strophe","<>:xip/const:NOUN#1487-1494$<i>260"],["s:gaeul","i:gaeul","_260#1495-1500","<>:p#1495-1540$<i>266","opennlp/p:ADV","cnx/l:gaeul","cnx/p:N","cnx/syn:@PREMOD","<>:cnx/const:np#1495-1595$<i>273","tt/p:NE","tt/p:NN","tt/p:VVFIN","tt/p:ADJA","mate/l:gaeul","mate/p:NE","<:mate/d:UC$<i>261","<:mate/d:UC$<i>262","<:mate/d:UC$<i>263","<:mate/d:UC$<i>264","<:mate/d:UC$<i>265","xip/p:ADV","xip/l:gaeul","<>:xip/const:ADV#1495-1500$<i>261",">:xip/d:VMOD$<i>244",">:xip/d:VMOD$<i>262",">:xip/d:VMOD$<i>282",">:xip/d:VMOD$<i>291",">:xip/d:VMOD$<i>302"],["s:haneul","i:haneul","_261#1501-1507","opennlp/p:ADJD","cnx/l:haneul","cnx/p:N","cnx/syn:@PREMOD","tt/p:NE","tt/p:ADJA","tt/p:NN","mate/l:haneul","mate/p:NE",">:mate/d:UC$<i>260","xip/p:ADV","xip/l:haneul","<>:xip/const:ADV#1501-1507$<i>262",">:xip/d:VMOD$<i>244",">:xip/d:VMOD$<i>262",">:xip/d:VMOD$<i>282",">:xip/d:VMOD$<i>291",">:xip/d:VMOD$<i>302"],["s:gonghwalhande","i:gonghwalhande","_262#1508-1521","opennlp/p:ADJA","cnx/l:gonghwalhande","cnx/p:N","cnx/syn:@PREMOD","tt/p:NN","tt/p:VVFIN","tt/p:ADJA","mate/l:gonghwalhande","mate/p:FM",">:mate/d:UC$<i>260","xip/p:ADV","xip/l:gonghwalhande","<>:xip/const:ADV#1508-1521$<i>263","<:xip/d:SUBJ$<i>233","<:xip/d:OBJ$<i>235","<:xip/d:VMOD$<i>237","<:xip/d:OBJ$<i>238","<:xip/d:VMOD$<i>239","<:xip/d:VMOD$<i>240","<:xip/d:VMOD$<i>241","<:xip/d:VMOD$<i>242","<:xip/d:VMOD$<i>243","<:xip/d:VMOD$<i>244","<:xip/d:OBJ$<i>246","<:xip/d:VMOD$<i>260","<:xip/d:VMOD$<i>261","xip/d:VMAIN",">:xip/d:VMOD$<i>244",">:xip/d:VMOD$<i>282",">:xip/d:VMOD$<i>291",">:xip/d:VMOD$<i>302","<:xip/d:VMOD$<i>263","<:xip/d:VMOD$<i>264","<:xip/d:VMOD$<i>265","<:xip/d:VMOD$<i>266","<:xip/d:VMOD$<i>267","<:xip/d:VMOD$<i>268","<:xip/d:VMOD$<i>269","<:xip/d:VMOD$<i>270","<:xip/d:OBJ$<i>272","<:xip/d:OBJ$<i>273","<:xip/d:VMOD$<i>274","<:xip/d:OBJ$<i>275","<:xip/d:VMOD$<i>276","<:xip/d:VMOD$<i>277","<:xip/d:VMOD$<i>278","<:xip/d:VMOD$<i>279","<:xip/d:VMOD$<i>280","<:xip/d:VMOD$<i>281","<:xip/d:VMOD$<i>282","<:xip/d:OBJ$<i>283","<:xip/d:VMOD$<i>284","<:xip/d:VMOD$<i>285","<:xip/d:VMOD$<i>286","<:xip/d:OBJ$<i>287","<:xip/d:VMOD$<i>288","<:xip/d:OBJ$<i>289","<:xip/d:VMOD$<i>290","<:xip/d:VMOD$<i>291","<:xip/d:OBJ$<i>294","<:xip/d:OBJ$<i>296","<:xip/d:OBJ$<i>299"],["s:nopgo","i:nopgo","_263#1522-1527","opennlp/p:ADJA","cnx/l:nopgo","cnx/p:N","cnx/syn:@PREMOD","tt/p:NE","tt/p:NN","tt/p:ADJA","tt/p:VVFIN","mate/l:nopgo","mate/p:FM",">:mate/d:UC$<i>260","xip/p:ADV","xip/l:nopgo","<>:xip/const:ADV#1522-1527$<i>264",">:xip/d:VMOD$<i>244",">:xip/d:VMOD$<i>262",">:xip/d:VMOD$<i>282",">:xip/d:VMOD$<i>291",">:xip/d:VMOD$<i>302"],["s:gureum","i:gureum","_264#1528-1534","opennlp/p:NN","cnx/l:gureum","cnx/p:N","cnx/syn:@PREMOD","tt/p:NE","tt/p:NN","mate/l:gureum","mate/p:FM",">:mate/d:UC$<i>260","xip/p:ADV","xip/l:gureum","<>:xip/const:ADV#1528-1534$<i>265",">:xip/d:VMOD$<i>244",">:xip/d:VMOD$<i>262",">:xip/d:VMOD$<i>282",">:xip/d:VMOD$<i>291",">:xip/d:VMOD$<i>302"],["s:eopsi","i:eopsi","_265#1535-1540","opennlp/p:VVFIN","cnx/l:eopsi","cnx/p:N","cnx/syn:@PREMOD","tt/p:NE","mate/l:eopsi","mate/p:FM",">:mate/d:UC$<i>260","xip/p:ADV","xip/l:eopsi","<>:xip/const:ADV#1535-1540$<i>266",">:xip/d:VMOD$<i>244",">:xip/d:VMOD$<i>262",">:xip/d:VMOD$<i>282",">:xip/d:VMOD$<i>291",">:xip/d:VMOD$<i>302"],["s:balgeun","i:balgeun","_266#1541-1548","<>:p#1541-1584$<i>271","opennlp/p:ADV","cnx/l:balgeun","cnx/p:N","cnx/syn:@PREMOD","tt/p:NE","mate/l:balgeun","mate/p:VVFIN","mate/m:number:pl","mate/m:person:3","mate/m:tense:pres","mate/m:mood:ind","<:mate/d:MO$<i>267","<:mate/d:MO$<i>268","xip/p:ADV","xip/l:balgeun","<>:xip/const:ADV#1541-1548$<i>267",">:xip/d:VMOD$<i>244",">:xip/d:VMOD$<i>262",">:xip/d:VMOD$<i>282",">:xip/d:VMOD$<i>291",">:xip/d:VMOD$<i>302"],["s:dareun","i:dareun","_267#1549-1555","opennlp/p:ART","cnx/l:dareun","cnx/p:N","cnx/syn:@PREMOD","tt/p:NE","mate/l:dareun","mate/p:PROAV",">:mate/d:MO$<i>266","xip/p:ADV","xip/l:dareun","<>:xip/const:ADV#1549-1555$<i>268",">:xip/d:VMOD$<i>244",">:xip/d:VMOD$<i>262",">:xip/d:VMOD$<i>282",">:xip/d:VMOD$<i>291",">:xip/d:VMOD$<i>302"],["s:uri","i:uri","_268#1556-1559","opennlp/p:ADJA","cnx/l:uri","cnx/p:N","cnx/syn:@PREMOD","tt/l:uri","tt/p:NE","mate/l:uri","mate/p:APPR",">:mate/d:MO$<i>266","<:mate/d:NK$<i>270","xip/p:ADV","xip/l:uri","<>:xip/const:ADV#1556-1559$<i>269",">:xip/d:VMOD$<i>244",">:xip/d:VMOD$<i>262",">:xip/d:VMOD$<i>282",">:xip/d:VMOD$<i>291",">:xip/d:VMOD$<i>302"],["s:gaseum","i:gaseum","_269#1560-1566","opennlp/p:ADJA","cnx/l:gaseum","cnx/p:N","cnx/syn:@PREMOD","tt/p:NE","tt/p:NN","tt/p:VVFIN","mate/l:gaseum","mate/p:ADV",">:mate/d:MO$<i>270","xip/p:ADV","xip/l:gaseum","<>:xip/const:ADV#1560-1566$<i>270",">:xip/d:VMOD$<i>244",">:xip/d:VMOD$<i>262",">:xip/d:VMOD$<i>282",">:xip/d:VMOD$<i>291",">:xip/d:VMOD$<i>302"],["s:ilpyeondansimilse","i:ilpyeondansimilse","_270#1567-1584","opennlp/p:ADJA","cnx/l:ilpyeondansimilse","cnx/p:N","cnx/syn:@NH","tt/p:VVFIN","tt/p:NE","mate/l:ilpyeondansimils","mate/p:ADJA","mate/m:case:acc","mate/m:number:pl","mate/m:gender:masc","mate/m:degree:pos","<:mate/d:MO$<i>269",">:mate/d:NK$<i>268","xip/p:ADV","xip/l:ilpyeondansimilse","<>:xip/const:ADV#1567-1584$<i>271",">:xip/d:VMOD$<i>244",">:xip/d:VMOD$<i>262",">:xip/d:VMOD$<i>282",">:xip/d:VMOD$<i>291",">:xip/d:VMOD$<i>302"],["s:4.","i:4.","_271#1585-1587","<>:p#1585-1595$<i>273","opennlp/p:ADJA","cnx/l:4.","cnx/p:NUM","cnx/syn:@PREMOD","tt/l:4.","tt/p:ADJA","xip/p:NUM","xip/l:4.","<>:xip/const:NP#1585-1595$<i>273<b>2","<>:xip/const:NPA#1585-1595$<i>273<b>3","<>:xip/const:NUM#1585-1587$<i>272"],["s:Strophe","i:strophe","_272#1588-1595","opennlp/p:NN","cnx/l:strophe","cnx/p:N","cnx/syn:@NH","tt/l:Strophe","tt/p:NN","mate/l:strophe","mate/p:NN","mate/m:case:nom","mate/m:number:sg","mate/m:gender:fem","xip/p:NOUN","xip/l:Strophe","<>:xip/const:NOUN#1588-1595$<i>273",">:xip/d:OBJ$<i>244",">:xip/d:OBJ$<i>262",">:xip/d:OBJ$<i>282",">:xip/d:OBJ$<i>291",">:xip/d:OBJ$<i>302"],["s:i","i:i","_273#1596-1597","<>:p#1596-1639$<i>279","opennlp/p:APPR","cnx/l:i","cnx/p:N","cnx/syn:@PREMOD","<>:cnx/const:np#1596-1683$<i>284","tt/l:i","tt/p:NE","mate/l:I","mate/p:XY",">:mate/d:PNC$<i>275","xip/p:SYMBOL","xip/l:i","<>:xip/const:SYMBOL#1596-1597$<i>274","<>:xip/const:NP#1596-1597$<i>274<b>2","<>:xip/const:NPA#1596-1597$<i>274<b>3","<>:xip/const:NOUN#1596-1597$<i>274<b>4",">:xip/d:OBJ$<i>244",">:xip/d:OBJ$<i>262",">:xip/d:OBJ$<i>282",">:xip/d:OBJ$<i>291",">:xip/d:OBJ$<i>302"],["s:gisanggwa","i:gisanggwa","_274#1598-1607","opennlp/p:ADV","cnx/l:gisanggwa","cnx/p:N","cnx/syn:@NH","tt/p:NE","mate/l:gisanggwa","mate/p:XY",">:mate/d:PNC$<i>275","xip/p:ADV","xip/l:gisanggwa","<>:xip/const:ADV#1598-1607$<i>275",">:xip/d:VMOD$<i>244",">:xip/d:VMOD$<i>262",">:xip/d:VMOD$<i>282",">:xip/d:VMOD$<i>291",">:xip/d:VMOD$<i>302"],["s:i","i:i","_275#1608-1609","opennlp/p:VAFIN","cnx/l:i","cnx/p:N","cnx/syn:@PREMOD","tt/l:i","tt/p:NE","mate/l:I","mate/p:XY","<:mate/d:PNC$<i>273","<:mate/d:PNC$<i>274","xip/p:SYMBOL","xip/l:i","<>:xip/const:NP#1608-1609$<i>276<b>2","<>:xip/const:NPA#1608-1609$<i>276<b>3","<>:xip/const:NOUN#1608-1609$<i>276<b>4","<>:xip/const:SYMBOL#1608-1609$<i>276",">:xip/d:OBJ$<i>244",">:xip/d:OBJ$<i>262",">:xip/d:OBJ$<i>282",">:xip/d:OBJ$<i>291",">:xip/d:OBJ$<i>302"],["s:mameuro","i:mameuro","_276#1610-1617","opennlp/p:ADV","cnx/l:mameuro","cnx/p:N","cnx/syn:@PREMOD","tt/p:NE","mate/l:mameuro","mate/p:FM",">:mate/d:PNC$<i>277","xip/p:ADV","xip/l:mameuro","<>:xip/const:ADV#1610-1617$<i>277",">:xip/d:VMOD$<i>244",">:xip/d:VMOD$<i>262",">:xip/d:VMOD$<i>282",">:xip/d:VMOD$<i>291",">:xip/d:VMOD$<i>302"],["s:chungseongeul","i:chungseongeul","_277#1618-1631","opennlp/p:ADJD","cnx/l:chungseongeul","cnx/p:N","cnx/syn:@PREMOD","tt/p:NE","mate/l:chungseongeul","mate/p:FM","<:mate/d:PNC$<i>276","<:mate/d:OA$<i>278","xip/p:ADV","xip/l:chungseongeul","<>:xip/const:ADV#1618-1631$<i>278",">:xip/d:VMOD$<i>244",">:xip/d:VMOD$<i>262",">:xip/d:VMOD$<i>282",">:xip/d:VMOD$<i>291",">:xip/d:VMOD$<i>302"],["s:dahayeo","i:dahayeo","_278#1632-1639","opennlp/p:PROAV","cnx/l:dahayeo","cnx/p:N","cnx/syn:@PREMOD","tt/p:NE","mate/l:dahayeo","mate/p:FM",">:mate/d:OA$<i>277","xip/p:ADV","xip/l:dahayeo","<>:xip/const:ADV#1632-1639$<i>279",">:xip/d:VMOD$<i>244",">:xip/d:VMOD$<i>262",">:xip/d:VMOD$<i>282",">:xip/d:VMOD$<i>291",">:xip/d:VMOD$<i>302"],["s:goerouna","i:goerouna","_279#1640-1648","<>:p#1640-1675$<i>283","opennlp/p:NE","cnx/l:goerouna","cnx/p:N","cnx/syn:@PREMOD","tt/p:NE","mate/l:goerouna","mate/p:NE","mate/m:case:nom","mate/m:number:sg","mate/m:gender:fem",">:mate/d:PNC$<i>281","xip/p:ADV","xip/l:goerouna","<>:xip/const:ADV#1640-1648$<i>280",">:xip/d:VMOD$<i>244",">:xip/d:VMOD$<i>262",">:xip/d:VMOD$<i>282",">:xip/d:VMOD$<i>291",">:xip/d:VMOD$<i>302"],["s:jeulgeouna","i:jeulgeouna","_280#1649-1659","opennlp/p:ADV","cnx/l:jeulgeouna","cnx/p:N","cnx/syn:@PREMOD","tt/p:NE","mate/l:jeulgeouna","mate/p:NE","mate/m:case:nom","mate/m:number:sg","mate/m:gender:fem",">:mate/d:PNC$<i>281","xip/p:ADV","xip/l:jeulgeouna","<>:xip/const:ADV#1649-1659$<i>281",">:xip/d:VMOD$<i>244",">:xip/d:VMOD$<i>262",">:xip/d:VMOD$<i>282",">:xip/d:VMOD$<i>291",">:xip/d:VMOD$<i>302"],["s:nara","i:nara","_281#1660-1664","opennlp/p:ADV","cnx/l:nara","cnx/p:N","cnx/syn:@PREMOD","tt/p:NE","tt/p:NN","tt/p:ADJA","mate/l:nara","mate/p:NE","mate/m:case:nom","mate/m:number:sg","mate/m:gender:fem","<:mate/d:PNC$<i>279","<:mate/d:PNC$<i>280","<:mate/d:OC$<i>282","xip/p:ADV","xip/l:nara","<>:xip/const:ADV#1660-1664$<i>282",">:xip/d:VMOD$<i>244",">:xip/d:VMOD$<i>262",">:xip/d:VMOD$<i>282",">:xip/d:VMOD$<i>291",">:xip/d:VMOD$<i>302"],["s:saranghase","i:saranghase","_282#1665-1675","opennlp/p:ADJA","cnx/l:saranghase","cnx/p:N","cnx/syn:@PREMOD","tt/p:ADJA","tt/p:NN","tt/p:VVFIN","mate/l:saranghase","mate/p:VVFIN","mate/m:number:sg","mate/m:person:3","mate/m:tense:pres","mate/m:mood:subj",">:mate/d:OC$<i>281","xip/p:ADV","xip/l:saranghase","<>:xip/const:ADV#1665-1675$<i>283","<:xip/d:SUBJ$<i>233","<:xip/d:OBJ$<i>235","<:xip/d:VMOD$<i>237","<:xip/d:OBJ$<i>238","<:xip/d:VMOD$<i>239","<:xip/d:VMOD$<i>240","<:xip/d:VMOD$<i>241","<:xip/d:VMOD$<i>242","<:xip/d:VMOD$<i>243","<:xip/d:VMOD$<i>244","<:xip/d:OBJ$<i>246","<:xip/d:VMOD$<i>260","<:xip/d:VMOD$<i>261","<:xip/d:VMOD$<i>262","<:xip/d:VMOD$<i>263","<:xip/d:VMOD$<i>264","<:xip/d:VMOD$<i>265","<:xip/d:VMOD$<i>266","<:xip/d:VMOD$<i>267","<:xip/d:VMOD$<i>268","<:xip/d:VMOD$<i>269","<:xip/d:VMOD$<i>270","<:xip/d:OBJ$<i>272","<:xip/d:OBJ$<i>273","<:xip/d:VMOD$<i>274","<:xip/d:OBJ$<i>275","<:xip/d:VMOD$<i>276","<:xip/d:VMOD$<i>277","<:xip/d:VMOD$<i>278","<:xip/d:VMOD$<i>279","<:xip/d:VMOD$<i>280","<:xip/d:VMOD$<i>281","xip/d:VMAIN",">:xip/d:VMOD$<i>244",">:xip/d:VMOD$<i>262",">:xip/d:VMOD$<i>291",">:xip/d:VMOD$<i>302","<:xip/d:OBJ$<i>283","<:xip/d:VMOD$<i>284","<:xip/d:VMOD$<i>285","<:xip/d:VMOD$<i>286","<:xip/d:OBJ$<i>287","<:xip/d:VMOD$<i>288","<:xip/d:OBJ$<i>289","<:xip/d:VMOD$<i>290","<:xip/d:VMOD$<i>291","<:xip/d:OBJ$<i>294","<:xip/d:OBJ$<i>296","<:xip/d:OBJ$<i>299"],["s:Refrain","i:refrain","_283#1676-1683","<>:p#1676-1683$<i>284","opennlp/p:NN","cnx/l:refrain","cnx/p:N","cnx/syn:@NH","tt/l:Refrain","tt/p:NN","mate/l:refrain","mate/p:NN","mate/m:case:nom","mate/m:number:sg","mate/m:gender:masc","xip/p:NOUN","xip/l:Refrain","<>:xip/const:NP#1676-1683$<i>284<b>2","<>:xip/const:NPA#1676-1683$<i>284<b>3","<>:xip/const:NOUN#1676-1683$<i>284",">:xip/d:OBJ$<i>244",">:xip/d:OBJ$<i>262",">:xip/d:OBJ$<i>282",">:xip/d:OBJ$<i>291",">:xip/d:OBJ$<i>302"],["s:mugunghwa","i:mugunghwa","_284#1684-1693","<>:p#1684-1719$<i>287","opennlp/p:ADV","cnx/l:mugunghwa","cnx/p:N","cnx/syn:@PREMOD","<>:cnx/const:np#1684-1783$<i>295","tt/p:NE","mate/l:mugunghwa","mate/p:NE",">:mate/d:PNC$<i>286","xip/p:ADV","xip/l:mugunghwa","<>:xip/const:ADV#1684-1693$<i>285",">:xip/d:VMOD$<i>244",">:xip/d:VMOD$<i>262",">:xip/d:VMOD$<i>282",">:xip/d:VMOD$<i>291",">:xip/d:VMOD$<i>302"],["s:samcheolli","i:samcheolli","_285#1694-1704","opennlp/p:APPR","cnx/l:samcheolli","cnx/p:N","cnx/syn:@PREMOD","tt/p:NE","mate/l:samcheolli","mate/p:NE",">:mate/d:PNC$<i>286","xip/p:ADV","xip/l:samcheolli","<>:xip/const:ADV#1694-1704$<i>286",">:xip/d:VMOD$<i>244",">:xip/d:VMOD$<i>262",">:xip/d:VMOD$<i>282",">:xip/d:VMOD$<i>291",">:xip/d:VMOD$<i>302"],["s:hwaryeogangsan","i:hwaryeogangsan","_286#1705-1719","opennlp/p:ADJA","cnx/l:hwaryeogangsan","cnx/p:N","cnx/m:Prop","cnx/syn:@PREMOD","tt/p:NE","mate/l:hwaryeogangsan","mate/p:NE","<:mate/d:PNC$<i>284","<:mate/d:PNC$<i>285","xip/p:ADV","xip/l:hwaryeogangsan","<>:xip/const:ADV#1705-1719$<i>287",">:xip/d:VMOD$<i>244",">:xip/d:VMOD$<i>262",">:xip/d:VMOD$<i>282",">:xip/d:VMOD$<i>291",">:xip/d:VMOD$<i>302"],["s:Daehan","i:daehan","_287#1720-1726","<>:p#1720-1759$<i>292","opennlp/p:NN","cnx/l:Daehan","cnx/p:N","cnx/m:Prop","cnx/syn:@PREMOD","tt/p:NE","mate/l:daehan","mate/p:NE","mate/m:case:nom","mate/m:number:sg","mate/m:gender:*",">:mate/d:SB$<i>288","xip/p:NOUN","xip/l:Daehan","<>:xip/const:NP#1720-1726$<i>288<b>2","<>:xip/const:NPA#1720-1726$<i>288<b>3","<>:xip/const:NOUN#1720-1726$<i>288",">:xip/d:OBJ$<i>244",">:xip/d:OBJ$<i>262",">:xip/d:OBJ$<i>282",">:xip/d:OBJ$<i>291",">:xip/d:OBJ$<i>302"],["s:saram","i:saram","_288#1727-1732","opennlp/p:VVFIN","cnx/l:saram","cnx/p:N","cnx/m:Prop","cnx/syn:@PREMOD","tt/p:NE","tt/p:ADJD","mate/l:saram","mate/p:VVFIN","mate/m:number:sg","mate/m:person:3","mate/m:tense:past","mate/m:mood:ind","<:mate/d:SB$<i>287","<:mate/d:OA$<i>291","xip/p:ADV","xip/l:saram","<>:xip/const:ADV#1727-1732$<i>289",">:xip/d:VMOD$<i>244",">:xip/d:VMOD$<i>262",">:xip/d:VMOD$<i>282",">:xip/d:VMOD$<i>291",">:xip/d:VMOD$<i>302"],["s:Daehaneuro","i:daehaneuro","_289#1733-1743","opennlp/p:NE","cnx/l:Daehaneuro","cnx/p:N","cnx/m:Prop","cnx/syn:@PREMOD","tt/p:NE","mate/l:daehaneuro","mate/p:NE","mate/m:case:acc","mate/m:number:sg","mate/m:gender:*",">:mate/d:PNC$<i>291","xip/p:NOUN","xip/l:Daehaneuro","<>:xip/const:NP#1733-1743$<i>290<b>2","<>:xip/const:NPA#1733-1743$<i>290<b>3","<>:xip/const:NOUN#1733-1743$<i>290",">:xip/d:OBJ$<i>244",">:xip/d:OBJ$<i>262",">:xip/d:OBJ$<i>282",">:xip/d:OBJ$<i>291",">:xip/d:OBJ$<i>302"],["s:giri","i:giri","_290#1744-1748","opennlp/p:APPR","cnx/l:giri","cnx/p:N","cnx/syn:@PREMOD","tt/p:NE","tt/p:ADJA","mate/l:giri","mate/p:NE",">:mate/d:PNC$<i>291","xip/p:ADV","xip/l:giri","<>:xip/const:ADV#1744-1748$<i>291",">:xip/d:VMOD$<i>244",">:xip/d:VMOD$<i>262",">:xip/d:VMOD$<i>282",">:xip/d:VMOD$<i>291",">:xip/d:VMOD$<i>302"],["s:bojeonhase","i:bojeonhase","_291#1749-1759","opennlp/p:ADJA","cnx/l:bojeonhase","cnx/p:N","cnx/syn:@NH","tt/p:NN","tt/p:VVFIN","tt/p:ADJD","tt/p:ADJA","tt/p:NE","mate/l:bojeonhase","mate/p:NE","<:mate/d:PNC$<i>289","<:mate/d:PNC$<i>290",">:mate/d:OA$<i>288","xip/p:ADV","xip/l:bojeonhase","<>:xip/const:ADV#1749-1759$<i>292","<:xip/d:SUBJ$<i>233","<:xip/d:OBJ$<i>235","<:xip/d:VMOD$<i>237","<:xip/d:OBJ$<i>238","<:xip/d:VMOD$<i>239","<:xip/d:VMOD$<i>240","<:xip/d:VMOD$<i>241","<:xip/d:VMOD$<i>242","<:xip/d:VMOD$<i>243","<:xip/d:VMOD$<i>244","<:xip/d:OBJ$<i>246","<:xip/d:VMOD$<i>260","<:xip/d:VMOD$<i>261","<:xip/d:VMOD$<i>262","<:xip/d:VMOD$<i>263","<:xip/d:VMOD$<i>264","<:xip/d:VMOD$<i>265","<:xip/d:VMOD$<i>266","<:xip/d:VMOD$<i>267","<:xip/d:VMOD$<i>268","<:xip/d:VMOD$<i>269","<:xip/d:VMOD$<i>270","<:xip/d:OBJ$<i>272","<:xip/d:OBJ$<i>273","<:xip/d:VMOD$<i>274","<:xip/d:OBJ$<i>275","<:xip/d:VMOD$<i>276","<:xip/d:VMOD$<i>277","<:xip/d:VMOD$<i>278","<:xip/d:VMOD$<i>279","<:xip/d:VMOD$<i>280","<:xip/d:VMOD$<i>281","<:xip/d:VMOD$<i>282","<:xip/d:OBJ$<i>283","<:xip/d:VMOD$<i>284","<:xip/d:VMOD$<i>285","<:xip/d:VMOD$<i>286","<:xip/d:OBJ$<i>287","<:xip/d:VMOD$<i>288","<:xip/d:OBJ$<i>289","<:xip/d:VMOD$<i>290","xip/d:VMAIN",">:xip/d:VMOD$<i>244",">:xip/d:VMOD$<i>262",">:xip/d:VMOD$<i>282",">:xip/d:VMOD$<i>302","<:xip/d:OBJ$<i>294","<:xip/d:OBJ$<i>296","<:xip/d:OBJ$<i>299"],["s:3.","i:3.","_292#1760-1762","opennlp/p:ADJA","cnx/l:3.","cnx/p:NUM","cnx/syn:@PREMOD","tt/l:3.","tt/p:ADJA","xip/p:NUM","xip/l:3.","<>:xip/const:NP#1760-1783$<i>295<b>2","<>:xip/const:NPA#1760-1783$<i>295<b>3","<>:xip/const:NUM#1760-1762$<i>293"],["s:Deutsche","i:deutsche","_293#1763-1771","opennlp/p:ADJA","corenlp/ne_dewac_175m_600:I-MISC","corenlp/ne_hgc_175m_600:I-MISC","cnx/l:deutsch","cnx/p:A","cnx/syn:@PREMOD","tt/l:deutsch","tt/p:ADJA","mate/l:deutsch","mate/p:ADJA","mate/m:case:nom","mate/m:number:sg","mate/m:gender:fem","mate/m:degree:pos",">:mate/d:NK$<i>294","xip/p:ADJ","xip/l:deutsch","<>:xip/const:ADJ#1763-1771$<i>294","<>:xip/const:AP#1763-1771$<i>294<b>4",">:xip/d:NMOD$<i>294"],["s:Übersetzung","i:übersetzung","_294#1772-1783","opennlp/p:NN","cnx/l:übersetzung","cnx/p:N","cnx/syn:@NH","tt/l:Übersetzung","tt/p:NN","mate/l:übersetzung","mate/p:NN","mate/m:case:nom","mate/m:number:sg","mate/m:gender:fem","<:mate/d:NK$<i>293","xip/p:NOUN","xip/l:Übersetzung","<>:xip/const:NOUN#1772-1783$<i>295","<:xip/d:NMOD$<i>293",">:xip/d:OBJ$<i>302",">:xip/d:OBJ$<i>291",">:xip/d:OBJ$<i>282",">:xip/d:OBJ$<i>262",">:xip/d:OBJ$<i>244"],["s:1.","i:1.","_295#1784-1786","<>:p#1784-1794$<i>297","opennlp/p:ADV","cnx/l:1.","cnx/p:NUM","cnx/syn:@PREMOD","tt/l:1.","tt/p:ADJA","xip/p:NUM","xip/l:1.","<>:xip/const:NP#1784-1794$<i>297<b>2","<>:xip/const:NPA#1784-1794$<i>297<b>3","<>:xip/const:NUM#1784-1786$<i>296"],["s:Strophe","i:strophe","_296#1787-1794","opennlp/p:NN","cnx/l:strophe","cnx/p:N","cnx/syn:@NH","<>:cnx/const:np#1787-1794$<i>297","tt/l:Strophe","tt/p:NN","mate/l:strophe","mate/p:NN","mate/m:case:nom","mate/m:number:sg","mate/m:gender:fem","xip/p:NOUN","xip/l:Strophe","<>:xip/const:NOUN#1787-1794$<i>297",">:xip/d:OBJ$<i>244",">:xip/d:OBJ$<i>262",">:xip/d:OBJ$<i>282",">:xip/d:OBJ$<i>291",">:xip/d:OBJ$<i>302","<:xip/d:COORD$<i>297"],["s:Bis","i:bis","_297#1795-1798","<>:p#1795-1892$<i>312","opennlp/p:APPR","cnx/l:bis","cnx/p:PREP","cnx/syn:@PREMARK","tt/l:bis","tt/p:APPR","mate/l:bis","mate/p:KOUS",">:mate/d:CP$<i>302","xip/p:CONJ","xip/l:bis","<>:xip/const:CONJ#1795-1798$<i>298",">:xip/d:COORD$<i>296",">:xip/d:COORD$<i>299"],["s:das","i:das","_298#1799-1802","opennlp/p:ART","cnx/l:das","cnx/p:DET","cnx/syn:@PREMOD","tt/l:die","tt/p:ART","mate/l:der","mate/p:ART","mate/m:case:nom","mate/m:number:sg","mate/m:gender:neut",">:mate/d:NK$<i>299","xip/p:DET","xip/l:das","<>:xip/const:NP#1799-1807$<i>300<b>2","<>:xip/const:DET#1799-1802$<i>299",">:xip/d:DETERM$<i>299"],["s:Meer","i:meer","_299#1803-1807","opennlp/p:NN","cnx/l:meer","cnx/p:N","cnx/syn:@NH","<>:cnx/const:np#1803-1807$<i>300","tt/l:Meer","tt/p:NN","mate/l:meer","mate/p:NN","mate/m:case:nom","mate/m:number:sg","mate/m:gender:neut","<:mate/d:NK$<i>298",">:mate/d:SB$<i>302","<:mate/d:AG$<i>301","xip/p:NOUN","xip/l:Meer","<>:xip/const:NOUN#1803-1807$<i>300","<>:xip/const:NPA#1803-1807$<i>300<b>3","<:xip/d:COORD$<i>297","<:xip/d:DETERM$<i>298",">:xip/d:OBJ$<i>302",">:xip/d:OBJ$<i>291",">:xip/d:OBJ$<i>282",">:xip/d:OBJ$<i>262",">:xip/d:OBJ$<i>244","<:xip/d:NMOD$<i>301"],["s:des","i:des","_300#1808-1811","opennlp/p:ART","cnx/l:der","cnx/p:DET","cnx/syn:@PREMOD","tt/l:die","tt/p:ART","mate/l:der","mate/p:ART","mate/m:case:gen","mate/m:number:sg","mate/m:gender:masc",">:mate/d:NK$<i>301","xip/p:DET","xip/l:der","<>:xip/const:DET#1808-1811$<i>301","<>:xip/const:NP#1808-1818$<i>302<b>2",">:xip/d:DETERM$<i>301"],["s:Ostens","i:ostens","_301#1812-1818","opennlp/p:NN","cnx/l:osten","cnx/p:N","cnx/syn:@NH","<>:cnx/const:np#1812-1818$<i>302","tt/l:Osten","tt/p:NN","mate/l:osten","mate/p:NN","mate/m:case:gen","mate/m:number:sg","mate/m:gender:masc","<:mate/d:NK$<i>300",">:mate/d:AG$<i>299","xip/p:NOUN","xip/l:osten","<>:xip/const:NOUN#1812-1818$<i>302","<>:xip/const:NPA#1812-1818$<i>302<b>3","<:xip/d:DETERM$<i>300",">:xip/d:NMOD$<i>299"],["s:ausdörrt","i:ausdörrt","_302#1819-1827","opennlp/p:VVFIN","cnx/l:ausdörren","cnx/p:V","cnx/m:IND","cnx/m:PRES","cnx/syn:@MAIN","tt/l:ausdörren","tt/p:VVFIN","mate/l:ausdörren","mate/p:VVFIN","mate/m:number:sg","mate/m:person:3","mate/m:tense:pres","mate/m:mood:ind","<:mate/d:CP$<i>297","<:mate/d:SB$<i>299",">:mate/d:MO$<i>308","<:mate/d:CD$<i>303","xip/p:VERB","xip/l:ausdörren","<>:xip/const:VERB#1819-1827$<i>303","<:xip/d:SUBJ$<i>233","<:xip/d:OBJ$<i>235","<:xip/d:VMOD$<i>237","<:xip/d:OBJ$<i>238","<:xip/d:VMOD$<i>239","<:xip/d:VMOD$<i>240","<:xip/d:VMOD$<i>241","<:xip/d:VMOD$<i>242","<:xip/d:VMOD$<i>243","<:xip/d:VMOD$<i>244","<:xip/d:OBJ$<i>246","<:xip/d:VMOD$<i>260","<:xip/d:VMOD$<i>261","<:xip/d:VMOD$<i>262","<:xip/d:VMOD$<i>263","<:xip/d:VMOD$<i>264","<:xip/d:VMOD$<i>265","<:xip/d:VMOD$<i>266","<:xip/d:VMOD$<i>267","<:xip/d:VMOD$<i>268","<:xip/d:VMOD$<i>269","<:xip/d:VMOD$<i>270","<:xip/d:OBJ$<i>272","<:xip/d:OBJ$<i>273","<:xip/d:VMOD$<i>274","<:xip/d:OBJ$<i>275","<:xip/d:VMOD$<i>276","<:xip/d:VMOD$<i>277","<:xip/d:VMOD$<i>278","<:xip/d:VMOD$<i>279","<:xip/d:VMOD$<i>280","<:xip/d:VMOD$<i>281","<:xip/d:VMOD$<i>282","<:xip/d:OBJ$<i>283","<:xip/d:VMOD$<i>284","<:xip/d:VMOD$<i>285","<:xip/d:VMOD$<i>286","<:xip/d:OBJ$<i>287","<:xip/d:VMOD$<i>288","<:xip/d:OBJ$<i>289","<:xip/d:VMOD$<i>290","<:xip/d:VMOD$<i>291","<:xip/d:OBJ$<i>294","<:xip/d:OBJ$<i>296","<:xip/d:OBJ$<i>299","xip/d:VMAIN"],["s:und","i:und","_303#1828-1831","opennlp/p:KON","cnx/l:und","cnx/p:CC","cnx/syn:@CC","tt/l:und","tt/p:KON","mate/l:und","mate/p:KON",">:mate/d:CD$<i>302","<:mate/d:CJ$<i>307","xip/p:CONJ","xip/l:und","<>:xip/const:MC#1828-1865$<i>308<b>1","<>:xip/const:CONJ#1828-1831$<i>304"],["s:der","i:der","_304#1832-1835","opennlp/p:ART","cnx/l:der","cnx/p:DET","cnx/syn:@PREMOD","tt/l:die","tt/p:ART","mate/l:der","mate/p:ART","mate/m:case:nom","mate/m:number:sg","mate/m:gender:masc",">:mate/d:NK$<i>305","xip/p:DET","xip/l:der","<>:xip/const:NP#1832-1850$<i>306<b>2","<>:xip/const:DET#1832-1835$<i>305",">:xip/d:DETERM$<i>305"],["s:Paektusan-Berg","i:paektusan-berg","_305#1836-1850","opennlp/p:NE","corenlp/ne_dewac_175m_600:I-LOC","corenlp/ne_hgc_175m_600:I-LOC","cnx/l:paektusan","cnx/l:berg","cnx/p:N","cnx/syn:@NH","<>:cnx/const:np#1836-1850$<i>306","tt/p:NN","tt/p:NE","mate/l:paektusan-berg","mate/p:NN","mate/m:case:nom","mate/m:number:sg","mate/m:gender:masc","<:mate/d:NK$<i>304",">:mate/d:SB$<i>307","xip/p:NOUN","xip/l:Paektusan-Berg","<>:xip/const:NPA#1836-1850$<i>306<b>3","<>:xip/const:NOUN#1836-1850$<i>306","<:xip/d:DETERM$<i>304",">:xip/d:SUBJ$<i>306"],["s:abgetragen","i:abgetragen","_306#1851-1861","opennlp/p:VVPP","cnx/l:abtragen","cnx/p:V","cnx/m:PCP","cnx/m:PERF","cnx/syn:@MAIN","tt/l:abtragen","tt/p:VVPP","mate/l:abtragen","mate/p:VVPP",">:mate/d:PD$<i>307","xip/p:VERB","xip/l:abtragen","<>:xip/const:VERB#1851-1861$<i>307","<:xip/d:SUBJ$<i>305",">:xip/d:AUXIL$<i>307","xip/d:VMAIN"],["s:ist","i:ist","_307#1862-1865","opennlp/p:VAFIN","cnx/l:sein","cnx/p:V","cnx/m:IND","cnx/m:PRES","cnx/syn:@AUX","tt/l:sein","tt/p:VAFIN","mate/l:sein","mate/p:VAFIN","mate/m:number:sg","mate/m:person:3","mate/m:tense:pres","mate/m:mood:ind","<:mate/d:SB$<i>305","<:mate/d:PD$<i>306",">:mate/d:CJ$<i>303","xip/p:VERB","xip/l:sein","<>:xip/const:VERB#1862-1865$<i>308","<:xip/d:AUXIL$<i>306"],["s:möge","i:möge","_308#1867-1871","opennlp/p:VVFIN","cnx/l:mögen","cnx/p:V","cnx/m:SUB","cnx/m:PRES","cnx/syn:@MAIN","tt/l:mögen","tt/p:VMFIN","mate/l:mögen","mate/p:VMFIN","mate/m:number:sg","mate/m:person:3","mate/m:tense:pres","mate/m:mood:subj","<:mate/d:MO$<i>302","<:mate/d:OC$<i>311","xip/p:VERB","xip/l:mögen","<>:xip/const:MC#1867-1891$<i>312<b>1","<>:xip/const:VERB#1867-1871$<i>309","<:xip/d:MODAL$<i>311"],["s:Gott","i:gott","_309#1872-1876","opennlp/p:NN","cnx/l:gott","cnx/p:N","cnx/syn:@PREMOD","<>:cnx/const:np#1872-1882$<i>311","tt/l:Gott","tt/p:NN","mate/l:gott","mate/p:NN","mate/m:case:nom","mate/m:number:sg","mate/m:gender:masc",">:mate/d:OA$<i>311","<:mate/d:NK$<i>310","xip/p:NOUN","xip/l:Gott","<>:xip/const:NOUN#1872-1876$<i>310","<>:xip/const:NP#1872-1876$<i>310<b>2","<>:xip/const:NPA#1872-1876$<i>310<b>3",">:xip/d:SUBJ$<i>311","<:xip/d:NMOD$<i>310"],["s:Korea","i:korea","_310#1877-1882","opennlp/p:NE","corenlp/ne_dewac_175m_600:I-LOC","corenlp/ne_hgc_175m_600:I-LOC","cnx/l:Korea","cnx/p:N","cnx/m:Prop","cnx/syn:@NH","tt/l:Korea","tt/p:NE","mate/l:korea","mate/p:NE","mate/m:case:nom","mate/m:number:sg","mate/m:gender:masc",">:mate/d:NK$<i>309","xip/p:NOUN","xip/l:Korea","<>:xip/const:NP#1877-1882$<i>311<b>2","<>:xip/const:NPA#1877-1882$<i>311<b>3","<>:xip/const:NOUN#1877-1882$<i>311","xip/d:LOC",">:xip/d:NMOD$<i>309"],["s:schützen","i:schützen","_311#1883-1891","opennlp/p:VVINF","cnx/l:schützen","cnx/p:V","cnx/m:INF","cnx/syn:@MAIN","tt/l:schützen","tt/p:VVINF","mate/l:schützen","mate/p:VVINF","<:mate/d:OA$<i>309",">:mate/d:OC$<i>308","xip/p:VERB","xip/l:schützen","<>:xip/const:VERB#1883-1891$<i>312","<:xip/d:SUBJ$<i>309",">:xip/d:MODAL$<i>308","xip/d:VMAIN"],["s:2.","i:2.","_312#1893-1895","<>:s#1893-2033$<i>334","<>:p#1893-1903$<i>314","opennlp/p:ADJA","cnx/l:2.","cnx/p:NUM","cnx/syn:@PREMOD","tt/l:2.","tt/p:ADJA","xip/p:NUM","xip/l:2.","<>:xip/const:NUM#1893-1895$<i>313","<>:xip/const:TOP#1893-2033$<i>334","<>:xip/const:INS#1893-1951$<i>321<b>1","<>:xip/const:NP#1893-1903$<i>314<b>2","<>:xip/const:NPA#1893-1903$<i>314<b>3"],["s:Strophe","i:strophe","_313#1896-1903","opennlp/p:NN","cnx/l:strophe","cnx/p:N","cnx/syn:@NH","<>:cnx/const:np#1896-1903$<i>314","tt/l:Strophe","tt/p:NN","mate/l:strophe","mate/p:NN","mate/m:case:nom","mate/m:number:sg","mate/m:gender:fem","xip/p:NOUN","xip/l:Strophe","<>:xip/const:NOUN#1896-1903$<i>314"],["s:Wie","i:wie","_314#1904-1907","<>:p#1904-2033$<i>334","opennlp/p:KOKOM","cnx/l:wie","cnx/p:ADV","cnx/syn:@ADVL","tt/l:wie","tt/p:KOKOM","tt/l:wie","tt/p:KOUS","mate/l:wie","mate/p:PWAV",">:mate/d:MO$<i>327","xip/p:CONJ","xip/l:wie","<>:xip/const:CONJ#1904-1907$<i>315","<>:xip/const:PP#1904-1930$<i>318<b>2"],["s:die","i:die","_315#1908-1911","opennlp/p:ART","cnx/l:die","cnx/p:DET","cnx/syn:@PREMOD","tt/l:die","tt/p:ART","mate/l:der","mate/p:ART","mate/m:case:nom","mate/m:number:sg","mate/m:gender:fem",">:mate/d:NK$<i>317","xip/p:DET","xip/l:die","<>:xip/const:DET#1908-1911$<i>316","<>:xip/const:NP#1908-1930$<i>318<b>3",">:xip/d:DETERM$<i>317"],["s:wetterfeste","i:wetterfeste","_316#1912-1923","opennlp/p:ADJA","cnx/l:wetter","cnx/l:fest","cnx/p:A","cnx/syn:@PREMOD","<>:cnx/const:np#1912-1950$<i>321","tt/l:wetterfest","tt/p:ADJA","mate/l:wetterfest","mate/p:ADJA","mate/m:case:nom","mate/m:number:sg","mate/m:gender:fem","mate/m:degree:sup",">:mate/d:NK$<i>317","xip/p:ADJ","xip/l:Wetter","xip/l:fest","xip/l:wetterfest","<>:xip/const:ADJ#1912-1923$<i>317","<>:xip/const:NPA#1912-1930$<i>318<b>4","<>:xip/const:AP#1912-1923$<i>317<b>5",">:xip/d:NMOD$<i>317"],["s:Kiefer","i:kiefer","_317#1924-1930","opennlp/p:NN","cnx/l:kiefer","cnx/p:N","cnx/syn:@NH","tt/l:Kiefer","tt/p:NN","mate/l:kiefer","mate/p:NN","mate/m:case:nom","mate/m:number:sg","mate/m:gender:fem","<:mate/d:NK$<i>315","<:mate/d:NK$<i>316",">:mate/d:RE$<i>327","<:mate/d:MNR$<i>318","<:mate/d:CC$<i>324","xip/p:NOUN","xip/l:Kiefer","<>:xip/const:NOUN#1924-1930$<i>318","<:xip/d:DETERM$<i>315","<:xip/d:NMOD$<i>316"],["s:auf","i:auf","_318#1931-1934","opennlp/p:APPR","cnx/l:auf","cnx/p:PREP","cnx/syn:@POSTMOD","tt/l:auf","tt/p:APPR","mate/l:auf","mate/p:APPR",">:mate/d:MNR$<i>317","<:mate/d:NK$<i>320","xip/p:PREP","xip/l:auf","<>:xip/const:PREP#1931-1934$<i>319","<>:xip/const:PP#1931-1950$<i>321<b>2"],["s:dem","i:dem","_319#1935-1938","opennlp/p:ART","cnx/l:der","cnx/p:DET","cnx/syn:@PREMOD","tt/l:die","tt/p:ART","mate/l:der","mate/p:ART","mate/m:case:dat","mate/m:number:sg","mate/m:gender:masc",">:mate/d:NK$<i>320","xip/p:DET","xip/l:der","<>:xip/const:DET#1935-1938$<i>320","<>:xip/const:NP#1935-1950$<i>321<b>3",">:xip/d:DETERM$<i>320"],["s:Namsan-Berg","i:namsan-berg","_320#1939-1950","opennlp/p:NN","corenlp/ne_dewac_175m_600:I-LOC","cnx/l:namsan","cnx/l:berg","cnx/p:N","cnx/syn:@NH","tt/p:NN","tt/p:NE","mate/l:namsan-berg","mate/p:NE","mate/m:case:dat","mate/m:number:sg","mate/m:gender:masc","<:mate/d:NK$<i>319",">:mate/d:NK$<i>318","xip/p:NOUN","xip/l:Namsan-Berg","<>:xip/const:NOUN#1939-1950$<i>321","<>:xip/const:NPA#1939-1950$<i>321<b>4","<:xip/d:DETERM$<i>319"],["s:wie","i:wie","_321#1952-1955","opennlp/p:PWAV","cnx/l:wie","cnx/p:CS","cnx/syn:@PREMARK","tt/l:wie","tt/p:KOUS","tt/l:wie","tt/p:KOKOM","mate/l:wie","mate/p:PWAV",">:mate/d:CM$<i>324","xip/p:ADV","xip/l:wie","<>:xip/const:ADV#1952-1955$<i>322","<>:xip/const:MC#1952-2012$<i>331<b>1",">:xip/d:VMOD$<i>328"],["s:die","i:die","_322#1956-1959","opennlp/p:ART","cnx/l:die","cnx/p:DET","cnx/syn:@PREMOD","tt/l:die","tt/p:ART","mate/l:der","mate/p:ART","mate/m:case:nom","mate/m:number:sg","mate/m:gender:fem",">:mate/d:NK$<i>324","xip/p:DET","xip/l:die","<>:xip/const:DET#1956-1959$<i>323","<>:xip/const:NP#1956-1982$<i>325<b>2",">:xip/d:DETERM$<i>324"],["s:unveränderliche","i:unveränderliche","_323#1960-1975","opennlp/p:ADJA","cnx/l:unveränderlich","cnx/p:A","cnx/syn:@PREMOD","<>:cnx/const:np#1960-1982$<i>325","tt/l:unveränderlich","tt/p:ADJA","mate/l:unveränderlich","mate/p:ADJA","mate/m:case:nom","mate/m:number:sg","mate/m:gender:fem","mate/m:degree:pos",">:mate/d:NK$<i>324","xip/p:ADJ","xip/l:unveränderlich","<>:xip/const:ADJ#1960-1975$<i>324","<>:xip/const:NPA#1960-1982$<i>325<b>3","<>:xip/const:AP#1960-1975$<i>324<b>4",">:xip/d:NMOD$<i>324"],["s:Stimme","i:stimme","_324#1976-1982","opennlp/p:NN","cnx/l:stimme","cnx/p:N","cnx/syn:@NH","tt/l:Stimme","tt/p:NN","mate/l:stimme","mate/p:NN","mate/m:case:nom","mate/m:number:sg","mate/m:gender:fem","<:mate/d:CM$<i>321","<:mate/d:NK$<i>322","<:mate/d:NK$<i>323",">:mate/d:CC$<i>317","<:mate/d:AG$<i>326","xip/p:NOUN","xip/l:Stimme","<>:xip/const:NOUN#1976-1982$<i>325","<:xip/d:DETERM$<i>322","<:xip/d:NMOD$<i>323",">:xip/d:SUBJ$<i>328","<:xip/d:NMOD$<i>326"],["s:des","i:des","_325#1983-1986","opennlp/p:ART","cnx/l:der","cnx/p:DET","cnx/syn:@PREMOD","tt/l:die","tt/p:ART","mate/l:der","mate/p:ART","mate/m:case:gen","mate/m:number:sg","mate/m:gender:masc",">:mate/d:NK$<i>326","xip/p:DET","xip/l:der","<>:xip/const:NP#1983-1993$<i>327<b>2","<>:xip/const:DET#1983-1986$<i>326",">:xip/d:DETERM$<i>326"],["s:Windes","i:windes","_326#1987-1993","opennlp/p:NN","cnx/l:wind","cnx/p:N","cnx/syn:@NH","<>:cnx/const:np#1987-1993$<i>327","tt/l:Wind","tt/p:NN","mate/l:wind","mate/p:NN","mate/m:case:gen","mate/m:number:sg","mate/m:gender:masc","<:mate/d:NK$<i>325",">:mate/d:AG$<i>324","xip/p:NOUN","xip/l:Wind","<>:xip/const:NOUN#1987-1993$<i>327","<>:xip/const:NPA#1987-1993$<i>327<b>3","<:xip/d:DETERM$<i>325",">:xip/d:NMOD$<i>324"],["s:so","i:so","_327#1994-1996","opennlp/p:ADV","cnx/l:so","cnx/p:ADV","cnx/syn:@ADVL","tt/l:so","tt/p:ADV","mate/l:so","mate/p:ADV","<:mate/d:MO$<i>314","<:mate/d:RE$<i>317",">:mate/d:MO$<i>328","xip/p:ADV","xip/l:so","<>:xip/const:ADV#1994-1996$<i>328",">:xip/d:VMOD$<i>328"],["s:sei","i:sei","_328#1997-2000","opennlp/p:VAFIN","cnx/l:sein","cnx/p:V","cnx/m:SUB","cnx/m:PRES","cnx/syn:@MAIN","tt/l:sein","tt/p:VAFIN","mate/l:sein","mate/p:VAFIN","mate/m:number:sg","mate/m:person:3","mate/m:tense:pres","mate/m:mood:subj","<:mate/d:MO$<i>327","<:mate/d:SB$<i>330","<:mate/d:PD$<i>331","xip/p:VERB","xip/l:sein","<>:xip/const:VERB#1997-2000$<i>329","<:xip/d:VMOD$<i>321","<:xip/d:SUBJ$<i>324","<:xip/d:VMOD$<i>327","xip/d:VMAIN","<:xip/d:PRED$<i>330"],["s:unser","i:unser","_329#2001-2006","opennlp/p:PPOSAT","cnx/l:unser","cnx/p:PRON","cnx/syn:@PREMOD","tt/l:unser","tt/p:PPOSAT","mate/l:unser","mate/p:PPOSAT","mate/m:case:nom","mate/m:number:sg","mate/m:gender:neut",">:mate/d:NK$<i>330","xip/p:DET","xip/l:unser","<>:xip/const:DET#2001-2006$<i>330","<>:xip/const:NP#2001-2012$<i>331<b>2",">:xip/d:DETERM$<i>330"],["s:Wesen","i:wesen","_330#2007-2012","opennlp/p:NN","cnx/l:wesen","cnx/p:N","cnx/syn:@NH","<>:cnx/const:np#2007-2012$<i>331","tt/l:Wesen","tt/p:NN","mate/l:wesen","mate/p:NN","mate/m:case:nom","mate/m:number:sg","mate/m:gender:neut","<:mate/d:NK$<i>329",">:mate/d:SB$<i>328","xip/p:NOUN","xip/l:Wesen","<>:xip/const:NOUN#2007-2012$<i>331","<>:xip/const:NPA#2007-2012$<i>331<b>3","<:xip/d:DETERM$<i>329",">:xip/d:PRED$<i>328"],["s:fest","i:fest","_331#2014-2018","opennlp/p:ADJD","cnx/l:fest","cnx/p:A","cnx/syn:@NH","tt/l:fest","tt/p:ADJD","tt/l:fest","tt/p:PTKVZ","mate/l:fest","mate/p:ADJD","mate/m:degree:pos",">:mate/d:PD$<i>328","<:mate/d:CD$<i>332","xip/p:ADJ","xip/l:fest","<>:xip/const:ADJ#2014-2018$<i>332","<>:xip/const:AP#2014-2018$<i>332","<:xip/d:COORD$<i>332"],["s:und","i:und","_332#2019-2022","opennlp/p:KON","cnx/l:und","cnx/p:CC","cnx/syn:@CC","tt/l:und","tt/p:KON","mate/l:und","mate/p:KON",">:mate/d:CD$<i>331","<:mate/d:CJ$<i>333","xip/p:CONJ","xip/l:und","<>:xip/const:CONJ#2019-2022$<i>333",">:xip/d:COORD$<i>331",">:xip/d:COORD$<i>333"],["s:unbeugsam","i:unbeugsam","_333#2023-2032","opennlp/p:ADJD","cnx/l:unbeugsam","cnx/p:A","cnx/syn:@NH","tt/l:unbeugsam","tt/p:ADJD","mate/l:unbeugsam","mate/p:ADJD","mate/m:degree:pos",">:mate/d:CJ$<i>332","xip/p:ADJ","xip/l:unbeugsam","<>:xip/const:AP#2023-2032$<i>334","<>:xip/const:ADJ#2023-2032$<i>334","<:xip/d:COORD$<i>332"],["s:3.","i:3.","_334#2034-2036","<>:s#2034-2163$<i>355","<>:p#2034-2044$<i>336","opennlp/p:ADJA","cnx/l:3.","cnx/p:NUM","cnx/syn:@PREMOD","tt/l:3.","tt/p:ADJA","xip/p:NUM","xip/l:3.","<>:xip/const:TOP#2034-2163$<i>355","<>:xip/const:MC#2034-2083$<i>342<b>1","<>:xip/const:NP#2034-2044$<i>336<b>2","<>:xip/const:NPA#2034-2044$<i>336<b>3","<>:xip/const:NUM#2034-2036$<i>335"],["s:Strophe","i:strophe","_335#2037-2044","opennlp/p:NN","cnx/l:strophe","cnx/p:N","cnx/syn:@NH","<>:cnx/const:np#2037-2044$<i>336","tt/l:Strophe","tt/p:NN","mate/l:strophe","mate/p:NN","mate/m:case:nom","mate/m:number:sg","mate/m:gender:fem","xip/p:NOUN","xip/l:Strophe","<>:xip/const:NOUN#2037-2044$<i>336",">:xip/d:PRED$<i>337"],["s:Wir","i:wir","_336#2045-2048","<>:p#2045-2163$<i>355","opennlp/p:PPER","cnx/l:wir","cnx/p:PRON","cnx/syn:@NH","tt/l:wir","tt/p:PPER","mate/l:wir","mate/p:PPER","mate/m:case:nom","mate/m:number:pl","mate/m:gender:*","mate/m:person:1",">:mate/d:SB$<i>337","xip/p:PRON","xip/l:wir","<>:xip/const:PRON#2045-2048$<i>337","<>:xip/const:NP#2045-2048$<i>337<b>2",">:xip/d:SUBJ$<i>337"],["s:bleiben","i:bleiben","_337#2049-2056","opennlp/p:VVFIN","cnx/l:bleiben","cnx/p:V","cnx/m:IND","cnx/m:PRES","cnx/syn:@MAIN","tt/l:bleiben","tt/p:VVFIN","tt/l:bleiben","tt/p:VVINF","mate/l:bleiben","mate/p:VVFIN","mate/m:number:pl","mate/m:person:1","mate/m:tense:pres","mate/m:mood:ind","<:mate/d:SB$<i>336","<:mate/d:PD$<i>338","xip/p:VERB","xip/l:bleiben","<>:xip/const:VERB#2049-2056$<i>338","<:xip/d:PRED$<i>335","<:xip/d:SUBJ$<i>336","xip/d:VMAIN","<:xip/d:PRED$<i>338"],["s:treu","i:treu","_338#2057-2061","opennlp/p:ADJD","cnx/l:treu","cnx/p:A","cnx/syn:@NH","tt/l:treu","tt/p:ADJD","mate/l:treu","mate/p:ADJD","mate/m:degree:pos",">:mate/d:PD$<i>337","<:mate/d:CC$<i>341","xip/p:ADJ","xip/l:treu","<>:xip/const:ADJ#2057-2061$<i>339","<>:xip/const:AP#2057-2061$<i>339<b>2",">:xip/d:PRED$<i>337"],["s:wie","i:wie","_339#2062-2065","opennlp/p:KOKOM","cnx/l:wie","cnx/p:PREP","cnx/syn:@PREMARK","tt/l:wie","tt/p:KOKOM","mate/l:wie","mate/p:KOKOM",">:mate/d:CM$<i>341","xip/p:CONJ","xip/l:wie","<>:xip/const:CONJ#2062-2065$<i>340","<>:xip/const:PP#2062-2083$<i>342<b>2"],["s:die","i:die","_340#2066-2069","opennlp/p:ART","cnx/l:die","cnx/p:DET","cnx/syn:@PREMOD","tt/l:die","tt/p:ART","mate/l:der","mate/p:ART","mate/m:case:nom","mate/m:number:sg","mate/m:gender:fem",">:mate/d:NK$<i>341","xip/p:DET","xip/l:die","<>:xip/const:NP#2066-2083$<i>342<b>3","<>:xip/const:DET#2066-2069$<i>341",">:xip/d:DETERM$<i>341"],["s:Unendlichkeit","i:unendlichkeit","_341#2070-2083","opennlp/p:NN","cnx/l:unendlichkeit","cnx/p:N","cnx/syn:@NH","<>:cnx/const:np#2070-2083$<i>342","tt/l:Unendlichkeit","tt/p:NN","mate/l:unendlichkeit","mate/p:NN","mate/m:case:nom","mate/m:number:sg","mate/m:gender:fem","<:mate/d:CM$<i>339","<:mate/d:NK$<i>340",">:mate/d:CC$<i>338","<:mate/d:CC$<i>344","xip/p:NOUN","xip/l:unEndlichkeit","<>:xip/const:NOUN#2070-2083$<i>342","<>:xip/const:NPA#2070-2083$<i>342<b>4","<:xip/d:DETERM$<i>340"],["s:wie","i:wie","_342#2085-2088","opennlp/p:PWAV","cnx/l:wie","cnx/p:ADV","cnx/syn:@ADVL","tt/l:wie","tt/p:KOUS","tt/l:wie","tt/p:KOKOM","mate/l:wie","mate/p:PWAV",">:mate/d:CM$<i>344","xip/p:ADV","xip/l:wie","<>:xip/const:ADV#2085-2088$<i>343"],["s:die","i:die","_343#2089-2092","opennlp/p:ART","cnx/l:die","cnx/p:DET","cnx/syn:@PREMOD","tt/l:die","tt/p:ART","mate/l:der","mate/p:ART","mate/m:case:nom","mate/m:number:sg","mate/m:gender:fem",">:mate/d:NK$<i>344","xip/p:DET","xip/l:die","<>:xip/const:DET#2089-2092$<i>344","<>:xip/const:NP#2089-2101$<i>345<b>1",">:xip/d:DETERM$<i>344"],["s:Reinheit","i:reinheit","_344#2093-2101","opennlp/p:NN","cnx/l:reinheit","cnx/p:N","cnx/syn:@NH","<>:cnx/const:np#2093-2101$<i>345","tt/l:Reinheit","tt/p:NN","mate/l:reinheit","mate/p:NN","mate/m:case:nom","mate/m:number:sg","mate/m:gender:fem","<:mate/d:CM$<i>342","<:mate/d:NK$<i>343",">:mate/d:CC$<i>341","<:mate/d:CD$<i>345","<:mate/d:AG$<i>348","<:mate/d:CC$<i>352","xip/p:NOUN","xip/l:Reinheit","<>:xip/const:NPA#2093-2101$<i>345<b>2","<>:xip/const:NOUN#2093-2101$<i>345","<:xip/d:DETERM$<i>343","xip/d:THEMA","<:xip/d:COORD$<i>345"],["s:und","i:und","_345#2102-2105","opennlp/p:KON","cnx/l:und","cnx/p:CC","cnx/syn:@CC","tt/l:und","tt/p:KON","mate/l:und","mate/p:KON",">:mate/d:CD$<i>344","<:mate/d:CJ$<i>346","xip/p:CONJ","xip/l:und","<>:xip/const:CONJ#2102-2105$<i>346",">:xip/d:COORD$<i>344",">:xip/d:COORD$<i>346"],["s:Weite","i:weite","_346#2106-2111","opennlp/p:NN","cnx/l:weite","cnx/p:N","cnx/syn:@NH","<>:cnx/const:np#2106-2111$<i>347","tt/l:Weite","tt/p:NN","mate/l:weite","mate/p:NN","mate/m:case:nom","mate/m:number:sg","mate/m:gender:fem",">:mate/d:CJ$<i>345","xip/p:NOUN","xip/l:weit","<>:xip/const:NOUN#2106-2111$<i>347","<>:xip/const:NP#2106-2111$<i>347<b>1","<>:xip/const:NPA#2106-2111$<i>347<b>2","<:xip/d:COORD$<i>345","xip/d:THEMA","<:xip/d:NMOD$<i>348"],["s:des","i:des","_347#2112-2115","opennlp/p:ART","cnx/l:der","cnx/p:DET","cnx/syn:@PREMOD","tt/l:die","tt/p:ART","mate/l:der","mate/p:ART","mate/m:case:gen","mate/m:number:sg","mate/m:gender:neut",">:mate/d:NK$<i>348","xip/p:DET","xip/l:der","<>:xip/const:NP#2112-2129$<i>349<b>1","<>:xip/const:DET#2112-2115$<i>348",">:xip/d:DETERM$<i>348"],["s:Herbsthimmels","i:herbsthimmels","_348#2116-2129","opennlp/p:NN","cnx/l:herbst","cnx/l:himmel","cnx/p:N","cnx/syn:@NH","<>:cnx/const:np#2116-2129$<i>349","tt/l:Herbsthimmel","tt/p:NN","mate/l:herbsthimmel","mate/p:NN","mate/m:case:gen","mate/m:number:sg","mate/m:gender:neut","<:mate/d:NK$<i>347",">:mate/d:AG$<i>344","xip/p:NOUN","xip/l:herbsten","xip/l:Himmel","xip/l:Herbstenhimmel","<>:xip/const:NPA#2116-2129$<i>349<b>2","<>:xip/const:NOUN#2116-2129$<i>349","<:xip/d:DETERM$<i>347",">:xip/d:NMOD$<i>346"],["s:wie","i:wie","_349#2131-2134","opennlp/p:PWAV","cnx/l:wie","cnx/p:ADV","cnx/syn:@ADVL","tt/l:wie","tt/p:KOUS","tt/l:wie","tt/p:KOKOM","mate/l:wie","mate/p:PWAV",">:mate/d:CM$<i>352","xip/p:ADV","xip/l:wie","<>:xip/const:ADV#2131-2134$<i>350"],["s:der","i:der","_350#2135-2138","opennlp/p:ART","cnx/l:der","cnx/p:DET","cnx/syn:@PREMOD","tt/l:die","tt/p:ART","mate/l:der","mate/p:ART","mate/m:case:nom","mate/m:number:sg","mate/m:gender:masc",">:mate/d:NK$<i>352","xip/p:DET","xip/l:der","<>:xip/const:NP#2135-2151$<i>353","<>:xip/const:DET#2135-2138$<i>351",">:xip/d:DETERM$<i>352"],["s:klare","i:klare","_351#2139-2144","opennlp/p:ADJA","cnx/l:klar","cnx/p:A","cnx/syn:@PREMOD","<>:cnx/const:np#2139-2151$<i>353","tt/l:klar","tt/p:ADJA","mate/l:klar","mate/p:ADJA","mate/m:case:nom","mate/m:number:sg","mate/m:gender:masc","mate/m:degree:pos",">:mate/d:NK$<i>352","xip/p:ADJ","xip/l:klar","<>:xip/const:NPA#2139-2151$<i>353<b>1","<>:xip/const:AP#2139-2144$<i>352<b>2","<>:xip/const:ADJ#2139-2144$<i>352",">:xip/d:NMOD$<i>352"],["s:Schein","i:schein","_352#2145-2151","opennlp/p:NN","cnx/l:schein","cnx/p:N","cnx/syn:@NH","tt/l:Schein","tt/p:NN","mate/l:schein","mate/p:NN","mate/m:case:nom","mate/m:number:sg","mate/m:gender:masc","<:mate/d:CM$<i>349","<:mate/d:NK$<i>350","<:mate/d:NK$<i>351",">:mate/d:CC$<i>344","<:mate/d:AG$<i>354","xip/p:NOUN","xip/l:Schein","<>:xip/const:NOUN#2145-2151$<i>353","<:xip/d:DETERM$<i>350","<:xip/d:NMOD$<i>351","<:xip/d:NMOD$<i>354"],["s:des","i:des","_353#2152-2155","opennlp/p:ART","cnx/l:der","cnx/p:DET","cnx/syn:@PREMOD","tt/l:die","tt/p:ART","mate/l:der","mate/p:ART","mate/m:case:gen","mate/m:number:sg","mate/m:gender:masc",">:mate/d:NK$<i>354","xip/p:DET","xip/l:der","<>:xip/const:NP#2152-2162$<i>355","<>:xip/const:DET#2152-2155$<i>354",">:xip/d:DETERM$<i>354"],["s:Mondes","i:mondes","_354#2156-2162","opennlp/p:NN","cnx/l:mond","cnx/p:N","cnx/syn:@NH","<>:cnx/const:np#2156-2162$<i>355","tt/l:Mond","tt/p:NN","mate/l:mond","mate/p:NN","mate/m:case:gen","mate/m:number:sg","mate/m:gender:masc","<:mate/d:NK$<i>353",">:mate/d:AG$<i>352","xip/p:NOUN","xip/l:Mond","<>:xip/const:NPA#2156-2162$<i>355<b>1","<>:xip/const:NOUN#2156-2162$<i>355","<:xip/d:DETERM$<i>353",">:xip/d:NMOD$<i>352"],["s:4.","i:4.","_355#2164-2166","<>:s#2164-2291$<i>377","<>:p#2164-2174$<i>357","opennlp/p:ADV","cnx/l:4.","cnx/p:NUM","cnx/syn:@PREMOD","tt/l:4.","tt/p:ADJA","xip/p:NUM","xip/l:4.","<>:xip/const:NUM#2164-2166$<i>356","<>:xip/const:TOP#2164-2291$<i>377","<>:xip/const:MC#2164-2290$<i>377<b>1","<>:xip/const:NP#2164-2174$<i>357<b>2","<>:xip/const:NPA#2164-2174$<i>357<b>3"],["s:Strophe","i:strophe","_356#2167-2174","opennlp/p:NN","cnx/l:strophe","cnx/p:N","cnx/syn:@NH","<>:cnx/const:np#2167-2192$<i>360","tt/l:Strophe","tt/p:NN","mate/l:strophe","mate/p:NN","mate/m:case:nom","mate/m:number:sg","mate/m:gender:fem","xip/p:NOUN","xip/l:Strophe","<>:xip/const:NOUN#2167-2174$<i>357",">:xip/d:OBJ$<i>367","<:xip/d:NMOD2$<i>362"],["s:Mit","i:mit","_357#2175-2178","<>:p#2175-2291$<i>377","opennlp/p:APPR","cnx/l:mit","cnx/p:PREP","cnx/syn:@POSTMOD","tt/l:mit","tt/p:APPR","mate/l:mit","mate/p:APPR",">:mate/d:MO$<i>363","<:mate/d:NK$<i>359","xip/p:PREP","xip/l:mit","<>:xip/const:PP#2175-2192$<i>360<b>2","<>:xip/const:PREP#2175-2178$<i>358"],["s:unserem","i:unserem","_358#2179-2186","opennlp/p:PPOSAT","cnx/l:unser","cnx/p:PRON","cnx/syn:@PREMOD","tt/l:unser","tt/p:PPOSAT","mate/l:unser","mate/p:PPOSAT","mate/m:case:dat","mate/m:number:sg","mate/m:gender:masc",">:mate/d:NK$<i>359","xip/p:DET","xip/l:unser","<>:xip/const:DET#2179-2186$<i>359","<>:xip/const:NP#2179-2192$<i>360<b>3",">:xip/d:DETERM$<i>359"],["s:Wesen","i:wesen","_359#2187-2192","opennlp/p:NN","cnx/l:wesen","cnx/p:N","cnx/syn:@NH","tt/l:Wesen","tt/p:NN","mate/l:wesen","mate/p:NN","mate/m:case:dat","mate/m:number:sg","mate/m:gender:masc","<:mate/d:NK$<i>358",">:mate/d:NK$<i>357","<:mate/d:CD$<i>360","xip/p:NOUN","xip/l:Wesen","<>:xip/const:NPA#2187-2192$<i>360<b>4","<>:xip/const:NOUN#2187-2192$<i>360","<:xip/d:DETERM$<i>358","<:xip/d:COORD$<i>360"],["s:und","i:und","_360#2193-2196","opennlp/p:KON","cnx/l:und","cnx/p:CC","cnx/syn:@CC","tt/l:und","tt/p:KON","mate/l:und","mate/p:KON",">:mate/d:CD$<i>359","<:mate/d:CJ$<i>362","xip/p:CONJ","xip/l:und","<>:xip/const:CONJ#2193-2196$<i>361",">:xip/d:COORD$<i>359",">:xip/d:COORD$<i>362"],["s:ergebenem","i:ergebenem","_361#2197-2206","opennlp/p:ADJA","cnx/l:ergeben","cnx/p:A","cnx/syn:@PREMOD","<>:cnx/const:np#2197-2213$<i>363","tt/l:ergeben","tt/p:ADJA","mate/l:ergeben","mate/p:ADJA","mate/m:case:dat","mate/m:number:sg","mate/m:gender:masc","mate/m:degree:pos",">:mate/d:NK$<i>362","xip/p:ADJ","xip/l:ergeben","<>:xip/const:NP#2197-2213$<i>363<b>2","<>:xip/const:NPA#2197-2213$<i>363<b>3","<>:xip/const:AP#2197-2206$<i>362<b>4","<>:xip/const:ADJ#2197-2206$<i>362",">:xip/d:NMOD$<i>362"],["s:Herzen","i:herzen","_362#2207-2213","opennlp/p:NN","cnx/l:herz","cnx/p:N","cnx/m:PL","cnx/syn:@NH","tt/l:Herz","tt/p:NN","mate/l:herz","mate/p:NN","mate/m:case:dat","mate/m:number:sg","mate/m:gender:masc","<:mate/d:NK$<i>361",">:mate/d:CJ$<i>360","xip/p:NOUN","xip/l:herzen","<>:xip/const:NOUN#2207-2213$<i>363","<:xip/d:COORD$<i>360","<:xip/d:NMOD$<i>361",">:xip/d:NMOD2$<i>356"],["s:wollen","i:wollen","_363#2214-2220","opennlp/p:VMFIN","cnx/l:wollen","cnx/p:V","cnx/m:IND","cnx/m:PRES","cnx/syn:@AUX","tt/l:wollen","tt/p:VMFIN","mate/l:wollen","mate/p:VMFIN","mate/m:number:pl","mate/m:person:1","mate/m:tense:pres","mate/m:mood:ind","<:mate/d:MO$<i>357","<:mate/d:SB$<i>364","<:mate/d:OC$<i>367","xip/p:VERB","xip/l:wollen","<>:xip/const:VERB#2214-2220$<i>364","<:xip/d:MODAL$<i>367"],["s:wir","i:wir","_364#2221-2224","opennlp/p:PPER","cnx/l:wir","cnx/p:PRON","cnx/syn:@NH","tt/l:wir","tt/p:PPER","mate/l:wir","mate/p:PPER","mate/m:case:nom","mate/m:number:pl","mate/m:gender:*","mate/m:person:1",">:mate/d:SB$<i>363","xip/p:PRON","xip/l:wir","<>:xip/const:PRON#2221-2224$<i>365","<>:xip/const:NP#2221-2224$<i>365<b>2",">:xip/d:SUBJ$<i>367"],["s:unser","i:unser","_365#2225-2230","opennlp/p:PPOSAT","cnx/l:unser","cnx/p:PRON","cnx/syn:@PREMOD","tt/l:unser","tt/p:PPOSAT","mate/l:unser","mate/p:PPOSAT","mate/m:case:acc","mate/m:number:sg","mate/m:gender:neut",">:mate/d:NK$<i>366","xip/p:DET","xip/l:unser","<>:xip/const:NP#2225-2240$<i>367<b>2","<>:xip/const:DET#2225-2230$<i>366",">:xip/d:DETERM$<i>366"],["s:Vaterland","i:vaterland","_366#2231-2240","opennlp/p:NN","cnx/l:vater","cnx/l:land","cnx/p:N","cnx/syn:@NH","<>:cnx/const:np#2231-2240$<i>367","tt/l:Vaterland","tt/p:NN","mate/l:vaterland","mate/p:NN","mate/m:case:acc","mate/m:number:sg","mate/m:gender:neut","<:mate/d:NK$<i>365",">:mate/d:SB$<i>367","xip/p:NOUN","xip/l:Vaterland","<>:xip/const:NPA#2231-2240$<i>367<b>3","<>:xip/const:NOUN#2231-2240$<i>367","<:xip/d:DETERM$<i>365",">:xip/d:OBJ$<i>367"],["s:lieben","i:lieben","_367#2241-2247","opennlp/p:VVFIN","cnx/l:lieb","cnx/p:A","cnx/syn:@NH","tt/l:lieben","tt/p:VVFIN","tt/l:lieb","tt/p:ADJA","tt/l:lieben","tt/p:VVINF","mate/l:lieben","mate/p:VVFIN","<:mate/d:SB$<i>366",">:mate/d:OC$<i>363","<:mate/d:MO$<i>368","<:mate/d:MO$<i>371","xip/p:VERB","xip/l:lieben","<>:xip/const:VERB#2241-2247$<i>368","<:xip/d:OBJ$<i>356","<:xip/d:SUBJ$<i>364","<:xip/d:OBJ$<i>366",">:xip/d:MODAL$<i>363","xip/d:VMAIN","<:xip/d:VMOD$<i>371"],["s:in","i:in","_368#2248-2250","opennlp/p:APPR","cnx/l:in","cnx/p:PREP","cnx/syn:@PREMARK","tt/l:in","tt/p:APPR","mate/l:in","mate/p:APPR",">:mate/d:MO$<i>367","<:mate/d:NK$<i>370","xip/p:PREP","xip/l:in","<>:xip/const:PREP#2248-2250$<i>369","<>:xip/const:PP#2248-2258$<i>371<b>2"],["s:der","i:der","_369#2251-2254","opennlp/p:ART","cnx/l:die","cnx/p:DET","cnx/syn:@PREMOD","tt/l:die","tt/p:ART","mate/l:der","mate/p:ART","mate/m:case:dat","mate/m:number:sg","mate/m:gender:fem",">:mate/d:NK$<i>370","xip/p:DET","xip/l:der","<>:xip/const:DET#2251-2254$<i>370","<>:xip/const:NP#2251-2258$<i>371<b>3",">:xip/d:DETERM$<i>370"],["s:Not","i:not","_370#2255-2258","opennlp/p:NN","cnx/l:not","cnx/p:N","cnx/syn:@NH","<>:cnx/const:np#2255-2258$<i>371","tt/l:Not","tt/p:NN","mate/l:not","mate/p:NN","mate/m:case:dat","mate/m:number:sg","mate/m:gender:fem","<:mate/d:NK$<i>369",">:mate/d:NK$<i>368","xip/p:NOUN","xip/l:Not","<>:xip/const:NPA#2255-2258$<i>371<b>4","<>:xip/const:NOUN#2255-2258$<i>371","<:xip/d:DETERM$<i>369"],["s:ebenso","i:ebenso","_371#2259-2265","opennlp/p:ADV","cnx/l:ebenso","cnx/p:ADV","cnx/syn:@PREMOD","tt/l:ebenso","tt/p:ADV","mate/l:ebenso","mate/p:ADV",">:mate/d:MO$<i>367","<:mate/d:CC$<i>373","xip/p:ADV","xip/l:ebenso","<>:xip/const:ADV#2259-2265$<i>372",">:xip/d:VMOD$<i>367"],["s:wie","i:wie","_372#2266-2269","opennlp/p:KOKOM","cnx/l:wie","cnx/p:PREP","cnx/syn:@POSTMOD","tt/l:wie","tt/p:KOKOM","mate/l:wie","mate/p:KOKOM",">:mate/d:CM$<i>373","xip/p:CONJ","xip/l:wie","<>:xip/const:CONJ#2266-2269$<i>373"],["s:in","i:in","_373#2270-2272","opennlp/p:APPR","cnx/l:in","cnx/p:PREP","cnx/syn:@PREMARK","tt/l:in","tt/p:APPR","mate/l:in","mate/p:APPR","<:mate/d:CM$<i>372",">:mate/d:CC$<i>371","<:mate/d:NK$<i>374","xip/p:PREP","xip/l:in","<>:xip/const:PP#2270-2279$<i>375<b>2","<>:xip/const:PREP#2270-2272$<i>374"],["s:Zeiten","i:zeiten","_374#2273-2279","opennlp/p:NN","cnx/l:zeit","cnx/p:N","cnx/m:PL","cnx/syn:@NH","<>:cnx/const:np#2273-2279$<i>375","tt/l:Zeit","tt/p:NN","mate/l:zeit","mate/p:NN","mate/m:case:dat","mate/m:number:pl","mate/m:gender:fem",">:mate/d:NK$<i>373","<:mate/d:AG$<i>376","xip/p:NOUN","xip/l:Zeit","<>:xip/const:NP#2273-2279$<i>375<b>3","<>:xip/const:NPA#2273-2279$<i>375<b>4","<>:xip/const:NOUN#2273-2279$<i>375","<:xip/d:NMOD$<i>376"],["s:des","i:des","_375#2280-2283","opennlp/p:ART","cnx/l:das","cnx/p:DET","cnx/syn:@PREMOD","tt/l:die","tt/p:ART","mate/l:der","mate/p:ART","mate/m:case:gen","mate/m:number:sg","mate/m:gender:masc",">:mate/d:NK$<i>376","xip/p:DET","xip/l:der","<>:xip/const:DET#2280-2283$<i>376","<>:xip/const:NP#2280-2290$<i>377<b>2",">:xip/d:DETERM$<i>376"],["s:Glücks","i:glücks","_376#2284-2290","opennlp/p:NN","cnx/l:glück","cnx/p:N","cnx/syn:@NH","<>:cnx/const:np#2284-2290$<i>377","tt/l:Glück","tt/p:NN","mate/l:glück","mate/p:NN","mate/m:case:gen","mate/m:number:sg","mate/m:gender:masc","<:mate/d:NK$<i>375",">:mate/d:AG$<i>374","xip/p:NOUN","xip/l:Glück","<>:xip/const:NOUN#2284-2290$<i>377","<>:xip/const:NPA#2284-2290$<i>377<b>3","<:xip/d:DETERM$<i>375",">:xip/d:NMOD$<i>374"],["s:Refrain","i:refrain","_377#2292-2299","<>:s#2292-2411$<i>396","<>:p#2292-2299$<i>378","opennlp/p:NN","cnx/l:refrain","cnx/p:N","cnx/syn:@NH","<>:cnx/const:np#2292-2299$<i>378","tt/l:Refrain","tt/p:NN","mate/l:refrain","mate/p:NN","mate/m:case:nom","mate/m:number:sg","mate/m:gender:masc","xip/p:NOUN","xip/l:Refrain","<>:xip/const:NOUN#2292-2299$<i>378","<>:xip/const:TOP#2292-2411$<i>396","<>:xip/const:MC#2292-2411$<i>396<b>1","<>:xip/const:NP#2292-2299$<i>378<b>2","<>:xip/const:NPA#2292-2299$<i>378<b>3",">:xip/d:OBJ$<i>382"],["s:Wir","i:wir","_378#2300-2303","<>:p#2300-2411$<i>396","opennlp/p:PPER","cnx/l:wir","cnx/p:PRON","cnx/syn:@NH","tt/l:wir","tt/p:PPER","mate/l:wir","mate/p:PPER","mate/m:case:nom","mate/m:number:pl","mate/m:gender:*","mate/m:person:1",">:mate/d:NK$<i>379","xip/p:PRON","xip/l:wir","<>:xip/const:PRON#2300-2303$<i>379","<>:xip/const:NP#2300-2303$<i>379<b>2",">:xip/d:SUBJ$<i>382","<:xip/d:NMOD$<i>379"],["s:Koreaner","i:koreaner","_379#2304-2312","opennlp/p:NN","cnx/l:Koreaner","cnx/p:N","cnx/syn:@NH","<>:cnx/const:np#2304-2312$<i>380","tt/l:Koreaner","tt/p:NN","mate/l:koreaner","mate/p:NN","mate/m:case:nom","mate/m:number:pl","mate/m:gender:masc","<:mate/d:NK$<i>378",">:mate/d:SB$<i>380","xip/p:NOUN","xip/l:Koreaner","<>:xip/const:NP#2304-2312$<i>380<b>2","<>:xip/const:NPA#2304-2312$<i>380<b>3","<>:xip/const:NOUN#2304-2312$<i>380",">:xip/d:NMOD$<i>378","xip/d:PERSON"],["s:werden","i:werden","_380#2313-2319","opennlp/p:VAINF","cnx/l:werden","cnx/p:V","cnx/m:IND","cnx/m:PRES","cnx/syn:@AUX","tt/l:werden","tt/p:VAFIN","tt/l:werden","tt/p:VAINF","mate/l:werden","mate/p:VAFIN","mate/m:number:pl","mate/m:person:3","mate/m:tense:pres","mate/m:mood:ind","<:mate/d:SB$<i>379","<:mate/d:OC$<i>382","xip/p:VERB","xip/l:werden","<>:xip/const:VERB#2313-2319$<i>381","<:xip/d:AUXIL$<i>382"],["s:immer","i:immer","_381#2320-2325","opennlp/p:ADV","cnx/l:immer","cnx/p:ADV","cnx/syn:@ADVL","tt/l:immer","tt/p:ADV","mate/l:immer","mate/p:ADV",">:mate/d:MO$<i>382","xip/p:ADV","xip/l:immer","<>:xip/const:ADV#2320-2325$<i>382",">:xip/d:VMOD$<i>382"],["s:wachen","i:wachen","_382#2326-2332","opennlp/p:ADJA","cnx/l:wachen","cnx/p:V","cnx/m:INF","cnx/syn:@MAIN","tt/l:wachen","tt/p:VVFIN","tt/l:wachen","tt/p:VVINF","tt/l:wach","tt/p:ADJA","mate/l:wachen","mate/p:VVINF","mate/m:number:pl","mate/m:person:3","mate/m:tense:pres","mate/m:mood:ind","<:mate/d:MO$<i>381",">:mate/d:OC$<i>380","<:mate/d:MO$<i>383","xip/p:VERB","xip/l:wachen","<>:xip/const:VERB#2326-2332$<i>383","<:xip/d:OBJ$<i>377","<:xip/d:SUBJ$<i>378","<:xip/d:VMOD$<i>381",">:xip/d:AUXIL$<i>380","xip/d:VMAIN","<:xip/d:VMOD$<i>390"],["s:über","i:über","_383#2333-2337","opennlp/p:NN","cnx/l:über","cnx/p:PREP","cnx/syn:@PREMARK","tt/l:über","tt/p:APPR","mate/l:über","mate/p:APPR",">:mate/d:MO$<i>382","<:mate/d:NK$<i>385","xip/p:PREP","xip/l:über","<>:xip/const:PP#2333-2348$<i>386<b>2","<>:xip/const:PREP#2333-2337$<i>384"],["s:unser","i:unser","_384#2338-2343","opennlp/p:PPOSAT","cnx/l:unser","cnx/p:PRON","cnx/syn:@PREMOD","tt/l:unser","tt/p:PPOSAT","mate/l:unser","mate/p:PPOSAT","mate/m:case:acc","mate/m:number:sg","mate/m:gender:neut",">:mate/d:NK$<i>385","xip/p:DET","xip/l:unser","<>:xip/const:DET#2338-2343$<i>385","<>:xip/const:NP#2338-2348$<i>386<b>3",">:xip/d:DETERM$<i>385"],["s:Land","i:land","_385#2344-2348","opennlp/p:NN","cnx/l:land","cnx/p:N","cnx/syn:@NH","<>:cnx/const:np#2344-2367$<i>389","tt/l:Land","tt/p:NN","mate/l:land","mate/p:NN","mate/m:case:acc","mate/m:number:sg","mate/m:gender:neut","<:mate/d:NK$<i>384",">:mate/d:NK$<i>383","<:mate/d:MNR$<i>386","<:mate/d:RC$<i>395","xip/p:NOUN","xip/l:Land","<>:xip/const:NPA#2344-2348$<i>386<b>4","<>:xip/const:NOUN#2344-2348$<i>386","<:xip/d:DETERM$<i>384"],["s:mit","i:mit","_386#2349-2352","opennlp/p:APPR","cnx/l:mit","cnx/p:PREP","cnx/syn:@POSTMOD","tt/l:mit","tt/p:APPR","mate/l:mit","mate/p:APPR",">:mate/d:MNR$<i>385","<:mate/d:NK$<i>388","xip/p:PREP","xip/l:mit","<>:xip/const:PREP#2349-2352$<i>387","<>:xip/const:PP#2349-2367$<i>389<b>2"],["s:seinen","i:seinen","_387#2353-2359","opennlp/p:PPOSAT","cnx/l:sein","cnx/p:PRON","cnx/syn:@PREMOD","tt/l:sein","tt/p:PPOSAT","mate/l:sein","mate/p:PPOSAT","mate/m:case:dat","mate/m:number:pl","mate/m:gender:masc",">:mate/d:NK$<i>388","xip/p:DET","xip/l:sein","<>:xip/const:NP#2353-2367$<i>389<b>3","<>:xip/const:DET#2353-2359$<i>388",">:xip/d:DETERM$<i>388"],["s:Flüssen","i:flüssen","_388#2360-2367","opennlp/p:NN","cnx/l:fluss","cnx/p:N","cnx/m:PL","cnx/syn:@NH","tt/l:Fluß","tt/p:NN","mate/l:fluß","mate/p:NN","mate/m:case:dat","mate/m:number:pl","mate/m:gender:masc","<:mate/d:NK$<i>387",">:mate/d:NK$<i>386","<:mate/d:CD$<i>389","xip/p:NOUN","xip/l:Fluss","<>:xip/const:NPA#2360-2367$<i>389<b>4","<>:xip/const:NOUN#2360-2367$<i>389","<:xip/d:DETERM$<i>387","<:xip/d:COORD$<i>389"],["s:und","i:und","_389#2368-2371","opennlp/p:KON","cnx/l:und","cnx/p:CC","cnx/syn:@CC","tt/l:und","tt/p:KON","mate/l:und","mate/p:KON",">:mate/d:CD$<i>388","<:mate/d:CJ$<i>390","xip/p:CONJ","xip/l:und","<>:xip/const:CONJ#2368-2371$<i>390",">:xip/d:COORD$<i>388",">:xip/d:COORD$<i>390"],["s:Bergen","i:bergen","_390#2372-2378","opennlp/p:NN","cnx/l:berg","cnx/p:N","cnx/m:PL","cnx/syn:@NH","<>:cnx/const:np#2372-2378$<i>391","tt/l:Bergen","tt/p:NE","tt/l:Berg","tt/p:NN","mate/l:berg","mate/p:NN","mate/m:case:dat","mate/m:number:pl","mate/m:gender:masc",">:mate/d:CJ$<i>389","xip/p:NOUN","xip/l:bergen","<>:xip/const:NP#2372-2378$<i>391<b>2","<>:xip/const:NPA#2372-2378$<i>391<b>3","<>:xip/const:NOUN#2372-2378$<i>391","<:xip/d:COORD$<i>389",">:xip/d:VMOD$<i>382"],["s:auf","i:auf","_391#2380-2383","opennlp/p:APPR","cnx/l:auf","cnx/p:PREP","cnx/syn:@PREMARK","tt/l:auf","tt/p:APPR","mate/l:auf","mate/p:APPR",">:mate/d:MO$<i>395","<:mate/d:NK$<i>392","xip/p:PREP","xip/l:auf","<>:xip/const:PREP#2380-2383$<i>392","<>:xip/const:SC#2380-2410$<i>396","<>:xip/const:PP#2380-2389$<i>393<b>1"],["s:denen","i:denen","_392#2384-2389","opennlp/p:PRELS","cnx/l:die","cnx/p:PRON","cnx/syn:@NH","tt/l:die","tt/p:PRELS","tt/l:die","tt/p:PDS","mate/l:der","mate/p:PRELS","mate/m:case:dat","mate/m:number:pl","mate/m:gender:masc",">:mate/d:NK$<i>391","xip/p:PRON","xip/l:die","<>:xip/const:PRON#2384-2389$<i>393","<>:xip/const:NP#2384-2389$<i>393<b>2"],["s:die","i:die","_393#2390-2393","opennlp/p:ART","cnx/l:die","cnx/p:PRON","cnx/syn:@NH","tt/l:die","tt/p:ART","mate/l:der","mate/p:ART","mate/m:case:nom","mate/m:number:pl","mate/m:gender:masc",">:mate/d:NK$<i>394","xip/p:DET","xip/l:die","<>:xip/const:NP#2390-2404$<i>395<b>1","<>:xip/const:DET#2390-2393$<i>394",">:xip/d:DETERM$<i>394"],["s:Sharonrose","i:sharonrose","_394#2394-2404","opennlp/p:NE","cnx/l:sharonrose","cnx/p:N","cnx/syn:@NH","<>:cnx/const:np#2394-2404$<i>395","tt/p:NN","mate/l:sharonrose","mate/p:NN","mate/m:case:nom","mate/m:number:pl","mate/m:gender:masc","<:mate/d:NK$<i>393",">:mate/d:OA$<i>395","xip/p:NOUN","xip/l:Sharonrose","<>:xip/const:NPA#2394-2404$<i>395<b>2","<>:xip/const:NOUN#2394-2404$<i>395","<:xip/d:DETERM$<i>393",">:xip/d:SUBJ$<i>395"],["s:blüht","i:blüht","_395#2405-2410","opennlp/p:VVFIN","cnx/l:blühen","cnx/p:V","cnx/m:IND","cnx/m:PRES","cnx/syn:@MAIN","tt/l:blühen","tt/p:VVFIN","mate/l:blühen","mate/p:VVFIN","mate/m:number:sg","mate/m:person:3","mate/m:tense:pres","mate/m:mood:ind","<:mate/d:MO$<i>391","<:mate/d:OA$<i>394",">:mate/d:RC$<i>385","xip/p:VERB","xip/l:blühen","<>:xip/const:VERB#2405-2410$<i>396","<:xip/d:SUBJ$<i>394","xip/d:VMAIN"],["s:4.","i:4.","_396#2412-2414","<>:s#2412-2472$<i>404","opennlp/p:ADJA","cnx/l:4.","cnx/p:NUM","cnx/syn:@PREMOD","tt/l:4.","tt/p:ADJA","xip/p:NUM","xip/l:4.","<>:xip/const:NUM#2412-2414$<i>397","<>:xip/const:TOP#2412-2471$<i>405","<>:xip/const:NP#2412-2423$<i>398<b>1","<>:xip/const:NPA#2412-2423$<i>398<b>2"],["s:Weblinks","i:weblinks","_397#2415-2423","opennlp/p:NN","cnx/l:web","cnx/l:link","cnx/p:N","cnx/syn:@PREMOD","<>:cnx/const:np#2415-2441$<i>401","tt/l:weblinks","tt/p:ADJD","mate/l:weblinks","mate/p:FM","xip/p:NOUN","xip/l:Weblinks","<>:xip/const:NOUN#2415-2423$<i>398","xip/d:THEMA"],["s:MIDI","i:midi","_398#2424-2428","<>:p#2424-2433$<i>400","opennlp/p:NE","corenlp/ne_dewac_175m_600:I-ORG","cnx/l:MIDI","cnx/p:N","cnx/syn:@PREMOD","tt/l:midi","tt/p:ADJA","mate/l:midi","mate/p:NE","mate/m:case:*","mate/m:number:*","mate/m:gender:*",">:mate/d:AG$<i>399","xip/p:ADJ","xip/l:midi","<>:xip/const:ADJ#2424-2428$<i>399","<>:xip/const:NP#2424-2433$<i>400<b>1","<>:xip/const:NPA#2424-2433$<i>400<b>2","<>:xip/const:AP#2424-2428$<i>399<b>3",">:xip/d:NMOD$<i>399"],["s:File","i:file","_399#2429-2433","opennlp/p:NE","cnx/l:File","cnx/p:N","cnx/m:Prop","cnx/syn:@PREMOD","tt/l:File","tt/p:NN","mate/l:file","mate/p:NN","mate/m:case:nom","mate/m:number:sg","mate/m:gender:*","<:mate/d:AG$<i>398","xip/p:NOUN","xip/l:File","<>:xip/const:NOUN#2429-2433$<i>400","<:xip/d:NMOD$<i>398","xip/d:THEMA"],["s:Artikel","i:artikel","_400#2434-2441","<>:p#2434-2472$<i>404","opennlp/p:NN","cnx/l:artikel","cnx/p:N","cnx/syn:@NH","tt/l:Artikel","tt/p:NN","mate/l:artikel","mate/p:NN","mate/m:case:nom","mate/m:number:sg","mate/m:gender:masc","<:mate/d:AG$<i>402","xip/p:NOUN","xip/l:Artikel","<>:xip/const:NOUN#2434-2441$<i>401","<>:xip/const:NP#2434-2441$<i>401<b>1","<>:xip/const:NPA#2434-2441$<i>401<b>2","xip/d:THEMA","<:xip/d:NMOD$<i>402"],["s:der","i:der","_401#2442-2445","opennlp/p:ART","cnx/l:die","cnx/p:DET","cnx/syn:@PREMOD","tt/l:die","tt/p:ART","mate/l:der","mate/p:ART","mate/m:case:gen","mate/m:number:sg","mate/m:gender:fem",">:mate/d:NK$<i>402","xip/p:DET","xip/l:der","<>:xip/const:DET#2442-2445$<i>402","<>:xip/const:NP#2442-2455$<i>403<b>1",">:xip/d:DETERM$<i>402"],["s:Regierung","i:regierung","_402#2446-2455","opennlp/p:NN","cnx/l:regierung","cnx/p:N","cnx/syn:@PREMOD","<>:cnx/const:np#2446-2464$<i>404","tt/l:Regierung","tt/p:NN","mate/l:regierung","mate/p:NN","mate/m:case:gen","mate/m:number:sg","mate/m:gender:fem","<:mate/d:NK$<i>401",">:mate/d:AG$<i>400","<:mate/d:NK$<i>403","xip/p:NOUN","xip/l:Regierung","<>:xip/const:NOUN#2446-2455$<i>403","<>:xip/const:NPA#2446-2455$<i>403<b>2","<:xip/d:DETERM$<i>401",">:xip/d:NMOD$<i>400","<:xip/d:NMOD$<i>403"],["s:Südkorea","i:südkorea","_403#2456-2464","opennlp/p:NE","cnx/l:Südkorea","cnx/p:N","cnx/m:Prop","cnx/syn:@NH","tt/l:Südkorea","tt/p:NE","mate/l:südkorea","mate/p:NE","mate/m:case:nom","mate/m:number:sg","mate/m:gender:neut",">:mate/d:NK$<i>402","xip/p:NOUN","xip/l:Südkorea","<>:xip/const:NOUN#2456-2464$<i>404","<>:xip/const:NP#2456-2464$<i>404<b>1","<>:xip/const:NPA#2456-2464$<i>404<b>2","xip/d:LOC",">:xip/d:NMOD$<i>402"],["s:engl.","i:engl.","_404#2466-2471","opennlp/p:ADJD","cnx/l:engl.","cnx/p:N","cnx/syn:@NH","<>:cnx/const:np#2466-2471$<i>405","tt/l:englisch","tt/p:ADJA"]],"name":"tokens"}],"corpusID":"WPD","pubDate":"20050328","subTitle":"Die freie Enzyklopädie"}
\ No newline at end of file
diff --git a/trunk/src/test/resources/wiki/02439.json.gz b/trunk/src/test/resources/wiki/02439.json.gz
new file mode 100644
index 0000000..adb6e60
--- /dev/null
+++ b/trunk/src/test/resources/wiki/02439.json.gz
Binary files differ